We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 773575f commit 8e259f4Copy full SHA for 8e259f4
llvm/CMakeLists.txt
@@ -290,7 +290,7 @@ if(LLVM_CCACHE_BUILD)
290
if (LLVM_CCACHE_DIR)
291
set(launcher_params CCACHE_DIR=${LLVM_CCACHE_DIR} ${launcher_params})
292
endif()
293
- set(launcher ${launcher_params} ${CCACHE_PROGRAM})
+ set(launcher ${launcher_params} "${CCACHE_PROGRAM}")
294
else()
295
set(LLVM_CCACHE_PARAMS run_second_cpp=true hash_dir=true)
296
@@ -301,7 +301,7 @@ if(LLVM_CCACHE_BUILD)
301
302
set(launcher_params cache_dir=${LLVM_CCACHE_DIR} ${launcher_params})
303
304
- set(launcher ${CCACHE_PROGRAM} ${launcher_params})
+ set(launcher "${CCACHE_PROGRAM}" ${launcher_params})
305
306
307
set(CMAKE_C_COMPILER_LAUNCHER ${launcher})
0 commit comments