mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-25 21:00:00 +00:00
test/Makefile: Force lit -j1 on Cygwin.
lit -jN causes crash on Cygwin's python. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117093 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
523579e075
commit
9cf3b58ebb
@ -33,6 +33,11 @@ else
|
||||
LIT_ARGS := -s -v
|
||||
endif
|
||||
|
||||
# -jN causes crash on Cygwin's python.
|
||||
ifneq (,$(filter $(HOST_OS),Cygwin))
|
||||
LIT_ARGS += -j1
|
||||
endif
|
||||
|
||||
ifdef TESTSUITE
|
||||
LIT_TESTSUITE := $(TESTSUITE)
|
||||
CLEANED_TESTSUITE := $(patsubst %/,%,$(TESTSUITE))
|
||||
|
Loading…
Reference in New Issue
Block a user