summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--VERSIONS12
2 files changed, 6 insertions, 10 deletions
diff --git a/ChangeLog b/ChangeLog
index bec9c7a..42370ad 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2010-03-23 Joel Sherrill <joel.sherrilL@OARcorp.com>
+
+ * VERSIONS: Probe for parallelism.
+
2009-10-30 Thomas Doerfler <Thomas.Doerfler@embedded-brains.de>
* dejagnu/boards/rtems-powerpc-qemuppc.exp, Makefile.rtems,
diff --git a/VERSIONS b/VERSIONS
index 95a1865..8e7223b 100644
--- a/VERSIONS
+++ b/VERSIONS
@@ -45,13 +45,5 @@ case `hostname` in
;;
esac
-# Specify the desired parallelism based upon the host name.
-# TODO: It would be good to probe to figure this out.
-case `hostname` in
- rtbf32|rtbf64)
- MAKEJOBS="-j3"
- ;;
- *)
- MAKEJOBS="-j3"
- ;;
-esac
+# Specify the desired parallelism
+MAKEJOBS=`/usr/bin/getconf _NPROCESSORS_ONLN`