File tree Expand file tree Collapse file tree 3 files changed +5
-20
lines changed Expand file tree Collapse file tree 3 files changed +5
-20
lines changed Original file line number Diff line number Diff line change @@ -712,8 +712,6 @@ if(LLVM_INDIVIDUAL_TEST_COVERAGE)
712
712
endif ()
713
713
set (LLVM_LIT_ARGS "${LIT_ARGS_DEFAULT} " CACHE STRING "Default options for lit" )
714
714
715
- option (LLVM_PARALLEL_LIT "Enable multiple lit suites to run in parallel" OFF )
716
-
717
715
# On Win32 hosts, provide an option to specify the path to the GnuWin32 tools.
718
716
if ( WIN32 AND NOT CYGWIN )
719
717
set (LLVM_LIT_TOOLS_DIR "" CACHE PATH "Path to GnuWin32 tools" )
Original file line number Diff line number Diff line change @@ -1947,18 +1947,11 @@ function(add_lit_target target comment)
1947
1947
list (APPEND LIT_COMMAND --param ${param} )
1948
1948
endforeach ()
1949
1949
if (ARG_UNPARSED_ARGUMENTS )
1950
- if (LLVM_PARALLEL_LIT )
1951
- add_custom_target (${target}
1952
- COMMAND ${LIT_COMMAND} ${ARG_UNPARSED_ARGUMENTS}
1953
- COMMENT "${comment} "
1954
- )
1955
- else ()
1956
- add_custom_target (${target}
1957
- COMMAND ${LIT_COMMAND} ${ARG_UNPARSED_ARGUMENTS}
1958
- COMMENT "${comment} "
1959
- USES_TERMINAL
1960
- )
1961
- endif ()
1950
+ add_custom_target (${target}
1951
+ COMMAND ${LIT_COMMAND} ${ARG_UNPARSED_ARGUMENTS}
1952
+ COMMENT "${comment} "
1953
+ USES_TERMINAL
1954
+ )
1962
1955
else ()
1963
1956
add_custom_target (${target}
1964
1957
COMMAND ${CMAKE_COMMAND} -E echo "${target} does nothing, no tools built." )
Original file line number Diff line number Diff line change @@ -762,12 +762,6 @@ enabled sub-projects. Nearly all of these variable names begin with
762
762
**LLVM_PARALLEL_LINK_JOBS **:STRING
763
763
Define the maximum number of concurrent link jobs.
764
764
765
- **LLVM_PARALLEL_LIT **:BOOL
766
- Defaults to ``OFF ``. If set to ``OFF ``, lit testsuites will be configured
767
- with CMake's ``USES_TERMINAL `` flag to give direct access to the terminal. If
768
- set to ``ON ``, that flag will be removed allowing Ninja to schedule multiple
769
- lit testsuites in parallel.
770
-
771
765
**LLVM_RAM_PER_COMPILE_JOB **:STRING
772
766
Calculates the amount of Ninja compile jobs according to available resources.
773
767
Value has to be in MB, overwrites LLVM_PARALLEL_COMPILE_JOBS. Compile jobs
You can’t perform that action at this time.
0 commit comments