2016-04-16 08:47:41 +02:00
|
|
|
@LIT_SITE_CFG_IN_HEADER@
|
|
|
|
|
2013-08-08 01:09:10 +02:00
|
|
|
import sys
|
|
|
|
|
2013-05-04 09:36:23 +02:00
|
|
|
config.host_triple = "@LLVM_HOST_TRIPLE@"
|
2012-06-28 02:16:51 +02:00
|
|
|
config.target_triple = "@TARGET_TRIPLE@"
|
2020-04-13 22:53:06 +02:00
|
|
|
config.llvm_src_root = path(r"@LLVM_SOURCE_DIR@")
|
|
|
|
config.llvm_obj_root = path(r"@LLVM_BINARY_DIR@")
|
|
|
|
config.llvm_tools_dir = path(r"@LLVM_TOOLS_DIR@")
|
|
|
|
config.llvm_lib_dir = path(r"@LLVM_LIBRARY_DIR@")
|
|
|
|
config.llvm_shlib_dir = path(r"@SHLIBDIR@")
|
2012-06-28 02:16:51 +02:00
|
|
|
config.llvm_shlib_ext = "@SHLIBEXT@"
|
2014-01-22 22:52:35 +01:00
|
|
|
config.llvm_exe_ext = "@EXEEXT@"
|
2020-04-13 22:53:06 +02:00
|
|
|
config.lit_tools_dir = path(r"@LLVM_LIT_TOOLS_DIR@")
|
2020-04-29 03:37:28 +02:00
|
|
|
config.python_executable = "@Python3_EXECUTABLE@"
|
2015-02-14 10:43:57 +01:00
|
|
|
config.gold_executable = "@GOLD_EXECUTABLE@"
|
2015-03-20 00:55:38 +01:00
|
|
|
config.ld64_executable = "@LD64_EXECUTABLE@"
|
2014-10-30 09:29:45 +01:00
|
|
|
config.ocamlfind_executable = "@OCAMLFIND@"
|
2017-01-06 22:33:48 +01:00
|
|
|
config.have_ocamlopt = @HAVE_OCAMLOPT@
|
|
|
|
config.have_ocaml_ounit = @HAVE_OCAML_OUNIT@
|
2014-10-28 23:39:36 +01:00
|
|
|
config.ocaml_flags = "@OCAMLFLAGS@"
|
2017-01-06 22:33:48 +01:00
|
|
|
config.include_go_tests = @LLVM_INCLUDE_GO_TESTS@
|
2014-10-17 00:48:02 +02:00
|
|
|
config.go_executable = "@GO_EXECUTABLE@"
|
2010-11-29 01:20:09 +01:00
|
|
|
config.enable_shared = @ENABLE_SHARED@
|
2011-06-23 19:52:36 +02:00
|
|
|
config.enable_assertions = @ENABLE_ASSERTIONS@
|
2012-02-16 07:28:33 +01:00
|
|
|
config.targets_to_build = "@TARGETS_TO_BUILD@"
|
2015-08-04 08:32:31 +02:00
|
|
|
config.native_target = "@LLVM_NATIVE_ARCH@"
|
2014-10-17 00:48:02 +02:00
|
|
|
config.llvm_bindings = "@LLVM_BINDINGS@".split(' ')
|
2015-01-24 02:42:44 +01:00
|
|
|
config.host_os = "@HOST_OS@"
|
2014-10-17 00:48:02 +02:00
|
|
|
config.host_cc = "@HOST_CC@"
|
|
|
|
config.host_cxx = "@HOST_CXX@"
|
2019-09-18 16:12:59 +02:00
|
|
|
# Note: ldflags can contain double-quoted paths, so must use single quotes here.
|
|
|
|
config.host_ldflags = '@HOST_LDFLAGS@'
|
2017-01-06 22:33:48 +01:00
|
|
|
config.llvm_use_intel_jitevents = @LLVM_USE_INTEL_JITEVENTS@
|
2013-03-26 09:27:39 +01:00
|
|
|
config.llvm_use_sanitizer = "@LLVM_USE_SANITIZER@"
|
2020-04-30 22:07:13 +02:00
|
|
|
config.have_zlib = @LLVM_ENABLE_ZLIB@
|
2017-01-06 22:33:48 +01:00
|
|
|
config.have_libxar = @HAVE_LIBXAR@
|
2020-07-25 00:47:38 +02:00
|
|
|
config.have_libxml2 = @LLVM_ENABLE_LIBXML2@
|
2017-01-02 19:19:35 +01:00
|
|
|
config.have_dia_sdk = @LLVM_ENABLE_DIA_SDK@
|
2017-01-06 22:33:48 +01:00
|
|
|
config.enable_ffi = @LLVM_ENABLE_FFI@
|
2019-02-21 23:24:53 +01:00
|
|
|
config.build_examples = @LLVM_BUILD_EXAMPLES@
|
2018-09-26 18:26:59 +02:00
|
|
|
config.enable_threads = @LLVM_ENABLE_THREADS@
|
2017-01-06 22:33:54 +01:00
|
|
|
config.build_shared_libs = @BUILD_SHARED_LIBS@
|
2017-10-18 21:37:30 +02:00
|
|
|
config.link_llvm_dylib = @LLVM_LINK_LLVM_DYLIB@
|
2017-11-03 00:14:55 +01:00
|
|
|
config.llvm_host_triple = '@LLVM_HOST_TRIPLE@'
|
2017-11-03 00:45:51 +01:00
|
|
|
config.host_arch = "@HOST_ARCH@"
|
2017-11-29 18:07:41 +01:00
|
|
|
config.have_opt_viewer_modules = @LLVM_HAVE_OPT_VIEWER_MODULES@
|
[lit][tests]Add feature libcxx-used and use it in llvm-*-fuzzer tests
When a LLVM binary such as llvm-*-fuzzer is built with libc++, it has dependency on libc++. The path to find shared libraries specified in llvm-*-fuzzer is relative. As a result, these binaries cannot be copied to an arbitrary directory and launched from there. Changes in this patch add a LIT feature to indicate that libc++ is used to build and, based on the feature exclude test cases that test by copying llvm-*-fuzzer binaries to a directory.
Reviewers: hubert.reinterpretcast, dberris, amyk, jasonliu, EricWF
Reviewed By: hubert.reinterpretcast, amyk
Subscribers: javed.absar, jsji, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D61265
llvm-svn: 360672
2019-05-14 15:54:33 +02:00
|
|
|
config.libcxx_used = @LLVM_LIBCXX_USED@
|
2019-05-17 08:41:04 +02:00
|
|
|
config.has_plugins = @LLVM_ENABLE_PLUGINS@
|
2020-01-03 15:39:28 +01:00
|
|
|
config.linked_bye_extension = @LLVM_BYE_LINK_INTO_TOOLS@
|
2020-06-29 17:44:38 +02:00
|
|
|
config.have_tf_aot = @LLVM_HAVE_TF_AOT@
|
2020-07-16 01:02:15 +02:00
|
|
|
config.have_tf_api = @LLVM_HAVE_TF_API@
|
2020-09-16 23:51:41 +02:00
|
|
|
config.expensive_checks = @LLVM_ENABLE_EXPENSIVE_CHECKS@
|
2009-09-22 09:38:33 +02:00
|
|
|
|
2010-11-27 14:10:11 +01:00
|
|
|
# Support substitution of the tools_dir with user parameters. This is
|
|
|
|
# used when we can't determine the tool dir at configuration time.
|
|
|
|
try:
|
2013-08-09 18:22:05 +02:00
|
|
|
config.llvm_tools_dir = config.llvm_tools_dir % lit_config.params
|
2014-01-02 20:47:45 +01:00
|
|
|
config.llvm_shlib_dir = config.llvm_shlib_dir % lit_config.params
|
2013-08-08 01:09:10 +02:00
|
|
|
except KeyError:
|
|
|
|
e = sys.exc_info()[1]
|
2010-11-27 14:10:11 +01:00
|
|
|
key, = e.args
|
2013-08-09 18:22:05 +02:00
|
|
|
lit_config.fatal("unable to find %r parameter, use '--param=%s=VALUE'" % (key,key))
|
2010-11-27 14:10:11 +01:00
|
|
|
|
2018-08-31 02:22:20 +02:00
|
|
|
import lit.llvm
|
2018-08-31 00:13:34 +02:00
|
|
|
lit.llvm.initialize(lit_config, config)
|
2017-09-16 20:46:21 +02:00
|
|
|
|
2009-09-22 09:38:33 +02:00
|
|
|
# Let the main config do the real work.
|
2020-04-02 21:51:58 +02:00
|
|
|
lit_config.load_config(
|
|
|
|
config, os.path.join(config.llvm_src_root, "test/lit.cfg.py"))
|