[PATCH] D25076: [cmake] Make LIT_COMMAND configurable and improve fallback support
Michał Górny via llvm-commits
llvm-commits at lists.llvm.org
Tue Oct 4 13:19:20 PDT 2016
mgorny updated this revision to Diff 73542.
mgorny added a comment.
Herald added a subscriber: modocache.
Thanks for the suggestion, @beanz. I've updated the patch appropriately, and confirmed locally that it corrects the previous value successfully.
https://reviews.llvm.org/D25076
Files:
cmake/modules/AddLLVM.cmake
Index: cmake/modules/AddLLVM.cmake
===================================================================
--- cmake/modules/AddLLVM.cmake
+++ cmake/modules/AddLLVM.cmake
@@ -1095,10 +1095,16 @@
if (NOT CMAKE_CFG_INTDIR STREQUAL ".")
list(APPEND LIT_ARGS --param build_mode=${CMAKE_CFG_INTDIR})
endif ()
- if (LLVM_MAIN_SRC_DIR)
- set (LIT_COMMAND ${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py)
+ if (EXISTS ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py)
+ # reset cache after erraneous r283029
+ # TODO: remove this once all buildbots run
+ if (LIT_COMMAND STREQUAL "${PYTHON_EXECUTABLE} ${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py")
+ unset(LIT_COMMAND CACHE)
+ endif()
+ set (LIT_COMMAND "${PYTHON_EXECUTABLE};${LLVM_MAIN_SRC_DIR}/utils/lit/lit.py"
+ CACHE STRING "Command used to spawn llvm-lit")
else()
- find_program(LIT_COMMAND llvm-lit)
+ find_program(LIT_COMMAND NAMES llvm-lit lit.py lit)
endif ()
list(APPEND LIT_COMMAND ${LIT_ARGS})
foreach(param ${ARG_PARAMS})
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D25076.73542.patch
Type: text/x-patch
Size: 1031 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20161004/7276e969/attachment.bin>
More information about the llvm-commits
mailing list