mirror of
https://github.com/RPCS3/llvm.git
synced 2025-01-18 16:03:17 +00:00
Invert the tests on LLVMGCC_MAJVERS to check for value 4 instead of value
3. This ensures that if llvm-gcc isn't available and consequently the value of LLVMGCC_MAJVERS is blank, that the old (include runtime) behavior will persist. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@27499 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
664ade71b9
commit
30ea2fa933
2
Makefile
2
Makefile
@ -16,7 +16,7 @@ ifeq ($(MAKECMDGOALS),tools-only)
|
|||||||
else
|
else
|
||||||
ifneq ($(MAKECMDGOALS),libs-only)
|
ifneq ($(MAKECMDGOALS),libs-only)
|
||||||
DIRS += tools
|
DIRS += tools
|
||||||
ifeq ($(LLVMGCC_MAJVERS),3)
|
ifneq ($(LLVMGCC_MAJVERS),4)
|
||||||
DIRS += runtime
|
DIRS += runtime
|
||||||
else
|
else
|
||||||
$(warning Skipping runtime libraries, llvm-gcc 4 detected.)
|
$(warning Skipping runtime libraries, llvm-gcc 4 detected.)
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
LEVEL = ..
|
LEVEL = ..
|
||||||
include $(LEVEL)/Makefile.config
|
include $(LEVEL)/Makefile.config
|
||||||
|
|
||||||
ifneq ($(LLVMGCC_MAJVERS),3)
|
ifeq ($(LLVMGCC_MAJVERS),4)
|
||||||
PARALLEL_DIRS :=
|
PARALLEL_DIRS :=
|
||||||
install all::
|
install all::
|
||||||
$(Echo) "Warning: These runtime libraries only need to be built with"
|
$(Echo) "Warning: These runtime libraries only need to be built with"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user