diff options
author | Petr Hosek <phosek@google.com> | 2020-04-30 13:07:13 -0700 |
---|---|---|
committer | Petr Hosek <phosek@google.com> | 2020-07-23 23:05:36 -0700 |
commit | 10b1b4a231a485f1711d576e6131f6755e008abe (patch) | |
tree | 4e35a293e15f201c473c73d1a08e8af899d24406 /compiler-rt/test/lit.common.configured.in | |
parent | 228f8d896573003cba8f51b8cdaf180f22f46124 (diff) | |
download | llvm-10b1b4a231a485f1711d576e6131f6755e008abe.tar.gz |
[CMake] Simplify CMake handling for zlib
Rather than handling zlib handling manually, use find_package from CMake
to find zlib properly. Use this to normalize the LLVM_ENABLE_ZLIB,
HAVE_ZLIB, HAVE_ZLIB_H. Furthermore, require zlib if LLVM_ENABLE_ZLIB is
set to YES, which requires the distributor to explicitly select whether
zlib is enabled or not. This simplifies the CMake handling and usage in
the rest of the tooling.
This is a reland of abb0075 with all followup changes and fixes that
should address issues that were reported in PR44780.
Differential Revision: https://reviews.llvm.org/D79219
Diffstat (limited to 'compiler-rt/test/lit.common.configured.in')
-rw-r--r-- | compiler-rt/test/lit.common.configured.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/test/lit.common.configured.in b/compiler-rt/test/lit.common.configured.in index 1f746c067b84..000bf9b98470 100644 --- a/compiler-rt/test/lit.common.configured.in +++ b/compiler-rt/test/lit.common.configured.in @@ -57,7 +57,7 @@ elif config.android: else: set_default("target_suffix", "-%s" % config.target_arch) -set_default("have_zlib", "@HAVE_LIBZ@") +set_default("have_zlib", "@LLVM_ENABLE_ZLIB@") set_default("libcxx_used", "@LLVM_LIBCXX_USED@") # LLVM tools dir can be passed in lit parameters, so try to |