File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
compiler-rt/cmake/Modules Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ function(get_ext_project_build_command out_var target)
18
18
set (${out_var} "$(MAKE)" "${target} " PARENT_SCOPE )
19
19
else ()
20
20
set (${out_var} ${CMAKE_COMMAND} --build . --target ${target}
21
- --config $< CONFIGURATION > PARENT_SCOPE )
21
+ --config $< CONFIG > PARENT_SCOPE )
22
22
endif ()
23
23
endfunction ()
24
24
Original file line number Diff line number Diff line change @@ -615,7 +615,7 @@ macro(add_custom_libcxx name prefix)
615
615
set (run_clean "$(MAKE)" "-C" "${BINARY_DIR} " "clean" )
616
616
else ()
617
617
set (run_clean ${CMAKE_COMMAND} --build ${BINARY_DIR} --target clean
618
- --config "$<CONFIGURATION >" )
618
+ --config "$<CONFIG >" )
619
619
endif ()
620
620
621
621
ExternalProject_Add_Step (${name} clean
Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ if(CMAKE_CROSSCOMPILING AND NOT LLVM_CONFIG_PATH)
78
78
set (LLVM_CONFIG_PATH "${LLVM_NATIVE_BUILD} /bin/llvm-config" CACHE STRING "" )
79
79
80
80
add_custom_command (OUTPUT "${LLVM_CONFIG_PATH} "
81
- COMMAND ${CMAKE_COMMAND} --build . --target llvm-config --config $< CONFIGURATION >
81
+ COMMAND ${CMAKE_COMMAND} --build . --target llvm-config --config $< CONFIG >
82
82
DEPENDS ${LLVM_NATIVE_BUILD} /CMakeCache.txt
83
83
WORKING_DIRECTORY ${LLVM_NATIVE_BUILD}
84
84
COMMENT "Building native llvm-config..."
You can’t perform that action at this time.
0 commit comments