summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEdward O'Callaghan <eocallaghan@auroraux.org>2009-10-26 02:37:56 +0000
committerEdward O'Callaghan <eocallaghan@auroraux.org>2009-10-26 02:37:56 +0000
commit8a8e520937d61ed058c9b7781498876bed13e440 (patch)
tree59cfdc1faadacf3d3f63819d440969cc2f879d6b
parenta3f084ce16873799d9b6ddd4bab7b0a09b3d1eb3 (diff)
downloadbcm5719-llvm-8a8e520937d61ed058c9b7781498876bed13e440.tar.gz
bcm5719-llvm-8a8e520937d61ed058c9b7781498876bed13e440.zip
Fix gmake check for AuroraUX triple.
llvm-svn: 85088
-rw-r--r--llvm/test/Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/llvm/test/Makefile b/llvm/test/Makefile
index 4955c2eb895..ede1b443174 100644
--- a/llvm/test/Makefile
+++ b/llvm/test/Makefile
@@ -78,9 +78,13 @@ endif
# Both AuroraUX & Solaris do not have the -m flag for ulimit
ifeq ($(HOST_OS),SunOS)
ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
-else
+else # !SunOS
+ifeq ($(HOST_OS),AuroraUX)
+ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -v 512000 ;
+else # !AuroraUX
ULIMIT=ulimit -t 600 ; ulimit -d 512000 ; ulimit -m 512000 ; ulimit -v 512000 ;
-endif
+endif # AuroraUX
+endif # SunOS
ifneq ($(RUNTEST),)
check-local:: site.exp
OpenPOWER on IntegriCloud