diff options
author | Noah Shutty <shutty@google.com> | 2021-12-13 17:39:01 +0000 |
---|---|---|
committer | Noah Shutty <shutty@google.com> | 2021-12-13 17:39:53 +0000 |
commit | ea4c69196ebd79e8bb388121bcd64c93f690f360 (patch) | |
tree | 1c4335bcb6bb34ae79085ca8badd2cec35fe8868 | |
parent | bc17d32a5f71b161186423c200554bddb6fb7e43 (diff) | |
download | llvm-ea4c69196ebd79e8bb388121bcd64c93f690f360.zip llvm-ea4c69196ebd79e8bb388121bcd64c93f690f360.tar.gz llvm-ea4c69196ebd79e8bb388121bcd64c93f690f360.tar.bz2 |
[llvm] [Debuginfod] Disable CURL by default.
Sets LLVM_ENABLE_CURL to OFF by default to avoid accidental inclusion of libcurl in builds which do not override the default.
Reviewed By: thakis
Differential Revision: https://reviews.llvm.org/D115500
-rw-r--r-- | llvm/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/CMakeLists.txt b/llvm/CMakeLists.txt index d12befc..df34265 100644 --- a/llvm/CMakeLists.txt +++ b/llvm/CMakeLists.txt @@ -394,7 +394,7 @@ endif() set(LLVM_ENABLE_ZLIB "ON" CACHE STRING "Use zlib for compression/decompression if available. Can be ON, OFF, or FORCE_ON") -set(LLVM_ENABLE_CURL "ON" CACHE STRING "Use libcurl for the HTTP client if available. Can be ON, OFF, or FORCE_ON") +set(LLVM_ENABLE_CURL "OFF" CACHE STRING "Use libcurl for the HTTP client if available. Can be ON, OFF, or FORCE_ON") set(LLVM_Z3_INSTALL_DIR "" CACHE STRING "Install directory of the Z3 solver.") |