mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
e18e76e424
llvm-lit can be invoked; $ Release/bin/llvm-lit instead of; $ bin/llvm-lit --param buid_mode=Release git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198206 91177308-0d34-0410-b5e6-96231b3b80d8
22 lines
527 B
CMake
22 lines
527 B
CMake
if (WIN32 AND NOT CYGWIN)
|
|
# llvm-lit needs suffix.py for multiprocess to find a main module.
|
|
set(suffix .py)
|
|
endif ()
|
|
set(llvm_lit_path ${LLVM_RUNTIME_OUTPUT_INTDIR}/llvm-lit${suffix})
|
|
|
|
if(NOT "${CMAKE_CFG_INTDIR}" STREQUAL ".")
|
|
foreach(BUILD_MODE ${CMAKE_CONFIGURATION_TYPES})
|
|
string(REPLACE ${CMAKE_CFG_INTDIR} ${BUILD_MODE} bi ${llvm_lit_path})
|
|
configure_file(
|
|
llvm-lit.in
|
|
${bi}
|
|
)
|
|
endforeach()
|
|
else()
|
|
set(BUILD_MODE .)
|
|
configure_file(
|
|
llvm-lit.in
|
|
${llvm_lit_path}
|
|
)
|
|
endif()
|