From 4e66d50d2d50c0240578103274b62ace59084c89 Mon Sep 17 00:00:00 2001 From: Peter Kubov Date: Fri, 14 Jan 2022 15:02:01 +0100 Subject: [PATCH] llvm/CMakeLists: Manually-specified variables were not used by the project. The following variables were set in CMakeLists, however, they were not used by the LLVM project build: LLVM_USE_CRT_DEBUG LLVM_USE_CRT_RELEASE --- deps/llvm/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/deps/llvm/CMakeLists.txt b/deps/llvm/CMakeLists.txt index 797f4dc1a..473343351 100644 --- a/deps/llvm/CMakeLists.txt +++ b/deps/llvm/CMakeLists.txt @@ -49,8 +49,6 @@ ExternalProject_Add(llvm-project -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS_RELEASE=${CMAKE_CXX_FLAGS_RELEASE} -DCMAKE_CXX_FLAGS_DEBUG=${CMAKE_CXX_FLAGS_DEBUG} - -DLLVM_USE_CRT_RELEASE=${RT_TYPE_RELEASE} - -DLLVM_USE_CRT_DEBUG=${RT_TYPE_DEBUG} # Force Python3. -DPYTHON_EXECUTABLE=${PYTHON_EXECUTABLE}