[hipl-commit] [trunk] Rev 3528: Optimized binary package building: make -j 4 is now the default.

  • From: Miika Komu <miika@xxxxxx>
  • To: hipl-commit@xxxxxxxxxxxxx
  • Date: Wed, 03 Feb 2010 19:27:10 +0200

Committer: Miika Komu <miika@xxxxxx>
Date: Wed Feb 03 19:27:20 2010 +0200
Revision: 3528
Revision-id: miika@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
Branch nick: trunk

Log:
  Optimized binary package building: make -j 4 is now the default.

Modified:
  M  autogen.sh
  M  test/packaging/hipl-deb.spec
  M  test/packaging/hipl-rpm.spec

=== modified file 'autogen.sh'
--- autogen.sh  2010-02-03 17:12:15 +0000
+++ autogen.sh  2010-02-03 17:27:20 +0000
@@ -86,3 +86,4 @@
 display_kernel_info
 echo ""
 echo "If there were no errors above, run now: ./configure && make"
+echo "(To speed up compilation, you can also run e.g. make -j 4)"

=== modified file 'test/packaging/hipl-deb.spec'
--- test/packaging/hipl-deb.spec        2010-01-20 12:51:41 +0000
+++ test/packaging/hipl-deb.spec        2010-02-03 17:27:20 +0000
@@ -29,7 +29,8 @@
 %build
 ./autogen.sh --prefix=/usr
 %configure --prefix=/usr --enable-libinet6
-make -C doc all
+make -C doc
+make -j 4 all
 
 # Note:
 # This debbuild script is fragile and does not tolerate comments well.

=== modified file 'test/packaging/hipl-rpm.spec'
--- test/packaging/hipl-rpm.spec        2010-01-20 12:51:41 +0000
+++ test/packaging/hipl-rpm.spec        2010-02-03 17:27:20 +0000
@@ -37,7 +37,8 @@
 %build
 ./autogen.sh --prefix=/usr
 %configure --prefix=/usr --enable-libinet6
-make -C doc all
+make -C doc
+make -j 4 all
 
 # Currently we are not going to install all includes and test software.
 # As a consequence, we need to tell rpmbuild that we don't want to package

Other related posts:

  • » [hipl-commit] [trunk] Rev 3528: Optimized binary package building: make -j 4 is now the default. - Miika Komu