mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-04 00:20:14 +00:00

Apple deprecated bitcode in the deployment process in Xcode 14.0. Last month Apple started requiring Xcode 14.1+ to submit apps to the App Store. Since there isn't a use for bundling bitcode outside of submitting to the App Store we should be safe to delete this handling entirely from LLD. Differential Revision: https://reviews.llvm.org/D150697
35 lines
1.4 KiB
Python
35 lines
1.4 KiB
Python
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
import lit.util
|
|
|
|
config.have_dia_sdk = lit.util.pythonize_bool("@LLVM_ENABLE_DIA_SDK@")
|
|
config.llvm_src_root = "@LLVM_SOURCE_DIR@"
|
|
config.llvm_obj_root = "@LLVM_BINARY_DIR@"
|
|
config.llvm_tools_dir = lit_config.substitute("@LLVM_TOOLS_DIR@")
|
|
config.llvm_libs_dir = lit_config.substitute("@LLVM_LIBS_DIR@")
|
|
config.llvm_shlib_dir = "@SHLIBDIR@"
|
|
config.llvm_shlib_ext = "@SHLIBEXT@"
|
|
config.lit_tools_dir = "@LLVM_LIT_TOOLS_DIR@"
|
|
config.enable_backtrace = @ENABLE_BACKTRACES@
|
|
config.errc_messages = "@LLVM_LIT_ERRC_MESSAGES@"
|
|
config.lld_obj_root = "@LLD_BINARY_DIR@"
|
|
config.lld_libs_dir = lit_config.substitute("@CURRENT_LIBS_DIR@")
|
|
config.lld_tools_dir = lit_config.substitute("@CURRENT_TOOLS_DIR@")
|
|
config.host_triple = "@LLVM_HOST_TRIPLE@"
|
|
config.target_triple = "@LLVM_TARGET_TRIPLE@"
|
|
config.python_executable = "@Python3_EXECUTABLE@"
|
|
config.have_zlib = @LLVM_ENABLE_ZLIB@
|
|
config.have_zstd = @LLVM_ENABLE_ZSTD@
|
|
config.have_libxml2 = @LLVM_ENABLE_LIBXML2@
|
|
config.sizeof_void_p = @CMAKE_SIZEOF_VOID_P@
|
|
config.ld_lld_default_mingw = @LLD_DEFAULT_LD_LLD_IS_MINGW@
|
|
config.build_examples = @LLVM_BUILD_EXAMPLES@
|
|
config.has_plugins = @LLVM_ENABLE_PLUGINS@
|
|
config.linked_bye_extension = @LLVM_BYE_LINK_INTO_TOOLS@
|
|
|
|
import lit.llvm
|
|
lit.llvm.initialize(lit_config, config)
|
|
|
|
# Let the main config do the real work.
|
|
lit_config.load_config(config, "@LLD_SOURCE_DIR@/test/lit.cfg.py")
|