aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--runtime/Makefile2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d3c6e6c0fd..5a25a799b2 100644
--- a/Makefile
+++ b/Makefile
@@ -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"