Author: Aiden Grossman Date: 2023-06-03T22:30:19Z New Revision: 2ff0aa207fd55604604bb9eec33dada1a80842db
URL: https://github.com/llvm/llvm-project/commit/2ff0aa207fd55604604bb9eec33dada1a80842db DIFF: https://github.com/llvm/llvm-project/commit/2ff0aa207fd55604604bb9eec33dada1a80842db.diff LOG: [CMake][Fuchsia] Add LLVM_ENABLE_HTTPLIB to Stage 2 build This patch sets the LLVM_ENABLE_HTTPLIB flag to ON in the stage 2 build similar to how many of the other dependency flags are already specified. This is necessary to configure the stage 2 build by itself, otherwise the CMake configuration crashes. This is currently causing the MLGO demo to fail since we're only using stage 2 to avoid having to build stage 1 to save some compile time. Reviewed By: phosek Differential Revision: https://reviews.llvm.org/D152057 Added: Modified: clang/cmake/caches/Fuchsia-stage2.cmake Removed: ################################################################################ diff --git a/clang/cmake/caches/Fuchsia-stage2.cmake b/clang/cmake/caches/Fuchsia-stage2.cmake index 78c123f191305..b4bc8cb4eb64e 100644 --- a/clang/cmake/caches/Fuchsia-stage2.cmake +++ b/clang/cmake/caches/Fuchsia-stage2.cmake @@ -11,6 +11,7 @@ set(LLVM_ENABLE_RUNTIMES "compiler-rt;libcxx;libcxxabi;libunwind" CACHE STRING " set(LLVM_ENABLE_BACKTRACES OFF CACHE BOOL "") set(LLVM_ENABLE_DIA_SDK OFF CACHE BOOL "") +set(LLVM_ENABLE_HTTPLIB ON CACHE BOOL "") set(LLVM_ENABLE_LIBCXX ON CACHE BOOL "") set(LLVM_ENABLE_LIBEDIT OFF CACHE BOOL "") set(LLVM_ENABLE_LLD ON CACHE BOOL "") _______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits