[hipl-dev] [Branch ~hipl-core/hipl/trunk] Rev 5199: Limit the number of processes spawned during package building to 32.

  • From: noreply@xxxxxxxxxxxxx
  • To: HIPL core team <hipl-dev@xxxxxxxxxxxxx>
  • Date: Mon, 29 Nov 2010 10:19:32 -0000

------------------------------------------------------------
revno: 5199
committer: Diego Biurrun <diego@xxxxxxxxxx>
branch nick: trunk
timestamp: Mon 2010-11-29 11:14:28 +0100
message:
  Limit the number of processes spawned during package building to 32.
  
  Running an unlimited 'make -j' triggers the OOM killer on a virtual machine
  with 512MB of RAM.  Limiting the number of spawned processes to 32 avoids
  this while still running in a highly parallel fashion.
modified:
  packaging/hipl-deb.spec
  packaging/hipl-rpm.spec


--
lp:hipl
https://code.launchpad.net/~hipl-core/hipl/trunk

Your team HIPL core team is subscribed to branch lp:hipl.
To unsubscribe from this branch go to 
https://code.launchpad.net/~hipl-core/hipl/trunk/+edit-subscription
=== modified file 'packaging/hipl-deb.spec'
--- packaging/hipl-deb.spec     2010-11-29 09:21:08 +0000
+++ packaging/hipl-deb.spec     2010-11-29 10:14:28 +0000
@@ -30,7 +30,7 @@
 %build
 autoreconf --install
 %configure --prefix=/usr --sysconfdir=/etc
-make -j
+make -j 32
 
 # Note:
 # This debbuild script is fragile and does not tolerate comments well.

=== modified file 'packaging/hipl-rpm.spec'
--- packaging/hipl-rpm.spec     2010-11-29 09:21:08 +0000
+++ packaging/hipl-rpm.spec     2010-11-29 10:14:28 +0000
@@ -28,7 +28,7 @@
 %build
 autoreconf --install
 %configure --prefix=/usr --sysconfdir=/etc
-make -j
+make -j 32
 
 # 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-dev] [Branch ~hipl-core/hipl/trunk] Rev 5199: Limit the number of processes spawned during package building to 32. - noreply