Skip to content

[compiler-rt][ORC] Remove unused cmake variables (NFC) #87742

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 0 additions & 36 deletions compiler-rt/lib/orc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)
Expand Down