summaryrefslogtreecommitdiffstats
path: root/clang/Makefile
diff options
context:
space:
mode:
authorGabor Greif <ggreif@gmail.com>2008-03-18 06:14:16 +0000
committerGabor Greif <ggreif@gmail.com>2008-03-18 06:14:16 +0000
commit2d2b401c0ed773808026549eb309160659d98791 (patch)
tree216fa17b640590759b06537e1f1d3a39abcd43e2 /clang/Makefile
parent0725a3e055f64995531f4c37788dbad900ba0245 (diff)
downloadbcm5719-llvm-2d2b401c0ed773808026549eb309160659d98791.tar.gz
bcm5719-llvm-2d2b401c0ed773808026549eb309160659d98791.zip
Switch over to the parallelized makefile, but keep old serial
makefile around (just change Makefile.parallel to Makefile to get back old functionality). To run parallel tests, specify make -jN test # where N = num of CPUs * 2 to get detailed output, run make -jN test VERBOSE=1 to only get error descriptions *after the tests have run*, type make report this gives you the extra information which was omitted in non-VERBOSE mode. llvm-svn: 48486
Diffstat (limited to 'clang/Makefile')
-rw-r--r--clang/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/clang/Makefile b/clang/Makefile
index 7d990da0ad8..b1279a6787c 100644
--- a/clang/Makefile
+++ b/clang/Makefile
@@ -4,7 +4,10 @@ DIRS := lib Driver
include $(LEVEL)/Makefile.common
test::
- cd test; $(MAKE)
+ cd test && $(MAKE) -f Makefile.parallel
+
+report::
+ cd test && $(MAKE) -f Makefile.parallel report
clean::
@rm -rf build
OpenPOWER on IntegriCloud