[compiler-rt] [compiler-rt][ORC] Remove unused cmake variables (NFC) (PR #87742)
Keith Smiley via llvm-commits
llvm-commits at lists.llvm.org
Thu Apr 4 21:25:48 PDT 2024
https://github.com/keith created https://github.com/llvm/llvm-project/pull/87742
None
>From 5a9e7dbd74ab3ad224cbc558d9a2264909cc5a2e Mon Sep 17 00:00:00 2001
From: Keith Smiley <keithbsmiley at gmail.com>
Date: Thu, 4 Apr 2024 21:25:01 -0700
Subject: [PATCH] [compiler-rt][ORC] Remove unused cmake variables (NFC)
---
compiler-rt/lib/orc/CMakeLists.txt | 36 ------------------------------
1 file changed, 36 deletions(-)
diff --git a/compiler-rt/lib/orc/CMakeLists.txt b/compiler-rt/lib/orc/CMakeLists.txt
index 6bcbf05f0d8ba7..36f4349a240e34 100644
--- a/compiler-rt/lib/orc/CMakeLists.txt
+++ b/compiler-rt/lib/orc/CMakeLists.txt
@@ -9,24 +9,6 @@ set(ORC_COMMON_SOURCES
dlfcn_wrapper.cpp
)
-# ORC runtime library implementation files for all ORC architectures.s
-set(ALL_ORC_SOURCES
- ${ORC_COMMON_SOURCES}
- coff_platform.cpp
- coff_platform.per_jd.cpp
- elfnix_platform.cpp
- macho_platform.cpp
- )
-
-# Implementation files for all ORC architectures.
-set(ALL_ORC_ASM_SOURCES
- macho_tlv.x86-64.S
- macho_tlv.arm64.S
- elfnix_tls.x86-64.S
- elfnix_tls.aarch64.S
- elfnix_tls.ppc64.S
- )
-
# Common implementation headers will go here.
set(ORC_COMMON_IMPL_HEADERS
adt.h
@@ -41,24 +23,6 @@ set(ORC_COMMON_IMPL_HEADERS
wrapper_function_utils.h
)
-# Implementation headers for all ORC architectures.
-set(ALL_ORC_IMPL_HEADERS
- ${ORC_COMMON_IMPL_HEADERS}
- macho_platform.h
- coff_platform.h
- elfnix_platform.h
- )
-
-# Create list of all source files for
-# consumption by tests.
-set(ORC_ALL_SOURCE_FILES
- ${ALL_ORC_SOURCES}
- ${ALL_ORC_ASM_SOURCES}
- ${ALL_ORC_IMPL_HEADERS}
- )
-
-list(REMOVE_DUPLICATES ORC_ALL_SOURCE_FILES)
-
# Now put it all together...
include_directories(..)
include_directories(../../include)
More information about the llvm-commits
mailing list