summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNico Weber <nicolasweber@gmx.de>2019-01-19 00:10:54 +0000
committerNico Weber <nicolasweber@gmx.de>2019-01-19 00:10:54 +0000
commit63fd07ce07bd700f009edd232db122d2aade895b (patch)
tree0da4f171b8f123d129bc9410ebcb5c00ad305720
parentb166d7e72512d699fadd2a049dac2ba6a7af888e (diff)
downloadbcm5719-llvm-63fd07ce07bd700f009edd232db122d2aade895b.tar.gz
bcm5719-llvm-63fd07ce07bd700f009edd232db122d2aade895b.zip
Use llvm_canonicalize_cmake_booleans for LLVM_LIBXML2_ENABLED [llvm]
r291284 added a nice mechanism to consistently pass CMake on/off toggles to lit. This change uses it for LLVM_LIBXML2_ENABLED too (which was added around the same time and doesn't use the new system yet). Also alphabetically sort the list passed to llvm_canonicalize_cmake_booleans() in llvm/test/CMakeLists.txt. No intended behavior change. Differential Revision: https://reviews.llvm.org/D56912 llvm-svn: 351615
-rw-r--r--llvm/test/CMakeLists.txt13
-rw-r--r--llvm/test/lit.cfg.py2
-rw-r--r--llvm/test/lit.site.cfg.py.in2
-rw-r--r--llvm/utils/gn/TODO.txt2
-rw-r--r--llvm/utils/gn/secondary/lld/test/BUILD.gn2
-rw-r--r--llvm/utils/gn/secondary/llvm/test/BUILD.gn2
6 files changed, 11 insertions, 12 deletions
diff --git a/llvm/test/CMakeLists.txt b/llvm/test/CMakeLists.txt
index d2b2b8d1164..e69ceebabe0 100644
--- a/llvm/test/CMakeLists.txt
+++ b/llvm/test/CMakeLists.txt
@@ -1,16 +1,17 @@
llvm_canonicalize_cmake_booleans(
- LLVM_TOOL_LTO_BUILD
+ BUILD_SHARED_LIBS
+ HAVE_LIBXAR
+ HAVE_LIBZ
HAVE_OCAMLOPT
HAVE_OCAML_OUNIT
- LLVM_INCLUDE_GO_TESTS
- LLVM_USE_INTEL_JITEVENTS
- HAVE_LIBZ
- HAVE_LIBXAR
LLVM_ENABLE_DIA_SDK
LLVM_ENABLE_FFI
LLVM_ENABLE_THREADS
- BUILD_SHARED_LIBS
+ LLVM_INCLUDE_GO_TESTS
+ LLVM_LIBXML2_ENABLED
LLVM_LINK_LLVM_DYLIB
+ LLVM_TOOL_LTO_BUILD
+ LLVM_USE_INTEL_JITEVENTS
)
configure_lit_site_cfg(
diff --git a/llvm/test/lit.cfg.py b/llvm/test/lit.cfg.py
index 4200dd57dc4..0cd67655eb3 100644
--- a/llvm/test/lit.cfg.py
+++ b/llvm/test/lit.cfg.py
@@ -324,7 +324,7 @@ if config.have_libxar:
if config.enable_threads:
config.available_features.add('thread_support')
-if config.llvm_libxml2_enabled == '1':
+if config.llvm_libxml2_enabled:
config.available_features.add('libxml2')
if config.have_opt_viewer_modules:
diff --git a/llvm/test/lit.site.cfg.py.in b/llvm/test/lit.site.cfg.py.in
index b8bfc1bd364..62c90b7c66b 100644
--- a/llvm/test/lit.site.cfg.py.in
+++ b/llvm/test/lit.site.cfg.py.in
@@ -39,7 +39,7 @@ config.enable_ffi = @LLVM_ENABLE_FFI@
config.enable_threads = @LLVM_ENABLE_THREADS@
config.build_shared_libs = @BUILD_SHARED_LIBS@
config.link_llvm_dylib = @LLVM_LINK_LLVM_DYLIB@
-config.llvm_libxml2_enabled = "@LLVM_LIBXML2_ENABLED@"
+config.llvm_libxml2_enabled = @LLVM_LIBXML2_ENABLED@
config.llvm_host_triple = '@LLVM_HOST_TRIPLE@'
config.host_arch = "@HOST_ARCH@"
config.have_opt_viewer_modules = @LLVM_HAVE_OPT_VIEWER_MODULES@
diff --git a/llvm/utils/gn/TODO.txt b/llvm/utils/gn/TODO.txt
index 15884709f1c..032fe95e6ef 100644
--- a/llvm/utils/gn/TODO.txt
+++ b/llvm/utils/gn/TODO.txt
@@ -20,8 +20,6 @@ Ideas for things to do:
- add dead code stripping
- move run_tablegen.py from build to tablegen folder
- figure out why -Iclang/Support gets added so often
-- make LLVM_LIBXML2_ENABLED use llvm_canonicalize_cmake_boolean (cf D28294),
- clean up both GN and CMake builds
- plugin() template with working rpath, exports thingers
- then port clang_build_examples and enable by default so that clang
plugin tests run by default
diff --git a/llvm/utils/gn/secondary/lld/test/BUILD.gn b/llvm/utils/gn/secondary/lld/test/BUILD.gn
index 6eb80c93563..b62fbc1555e 100644
--- a/llvm/utils/gn/secondary/lld/test/BUILD.gn
+++ b/llvm/utils/gn/secondary/lld/test/BUILD.gn
@@ -45,7 +45,7 @@ write_lit_cfg("lit_site_cfg") {
if (llvm_enable_libxml2) {
extra_values += [ "LLVM_LIBXML2_ENABLED=1" ]
} else {
- extra_values += [ "LLVM_LIBXML2_ENABLED=" ] # Must be empty.
+ extra_values += [ "LLVM_LIBXML2_ENABLED=0" ] # Must be 0.
}
if (llvm_enable_zlib) {
diff --git a/llvm/utils/gn/secondary/llvm/test/BUILD.gn b/llvm/utils/gn/secondary/llvm/test/BUILD.gn
index 2671982a7bb..3c018acbed7 100644
--- a/llvm/utils/gn/secondary/llvm/test/BUILD.gn
+++ b/llvm/utils/gn/secondary/llvm/test/BUILD.gn
@@ -140,7 +140,7 @@ write_lit_config("lit_site_cfg") {
if (llvm_enable_libxml2) {
extra_values += [ "LLVM_LIBXML2_ENABLED=1" ]
} else {
- extra_values += [ "LLVM_LIBXML2_ENABLED=" ] # Must be empty.
+ extra_values += [ "LLVM_LIBXML2_ENABLED=0" ] # Must be 0.
}
if (llvm_enable_threads) {
OpenPOWER on IntegriCloud