Skip to content
Snippets Groups Projects
Commit 2f12195b authored by Zachary Turner's avatar Zachary Turner
Browse files

Allow the user to override the LLDB_TEST_COMPILER at CMake level.

llvm-svn: 213421
parent f74faf42
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,9 @@ function(add_python_test_target name test_script args comment)
)
endfunction()
string(REGEX REPLACE ".*ccache\ +" "" LLDB_TEST_COMPILER ${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1})
if ("${LLDB_TEST_COMPILER}" STREQUAL "")
string(REGEX REPLACE ".*ccache\ +" "" LLDB_TEST_COMPILER ${CMAKE_C_COMPILER} ${CMAKE_C_COMPILER_ARG1})
endif()
# Users can override LLDB_TEST_ARGS to modify the way LLDB tests are run. See help below.
set(LLDB_TEST_ARGS
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment