diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | runtime/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -16,7 +16,7 @@ ifeq ($(MAKECMDGOALS),tools-only) else ifneq ($(MAKECMDGOALS),libs-only) DIRS += tools - ifeq ($(LLVMGCC_MAJVERS),3) + ifneq ($(LLVMGCC_MAJVERS),4) DIRS += runtime else $(warning Skipping runtime libraries, llvm-gcc 4 detected.) diff --git a/runtime/Makefile b/runtime/Makefile index f8b6ba63f8..8d6f0ff596 100644 --- a/runtime/Makefile +++ b/runtime/Makefile @@ -10,7 +10,7 @@ LEVEL = .. include $(LEVEL)/Makefile.config -ifneq ($(LLVMGCC_MAJVERS),3) +ifeq ($(LLVMGCC_MAJVERS),4) PARALLEL_DIRS := install all:: $(Echo) "Warning: These runtime libraries only need to be built with" |