tazwok diff examples/tazwok.conf @ rev 549
Compat: execute compile_rules() from directory when possible to match cookutils behavior
author | Antoine Bodin <gokhlayeh@slitaz.org> |
---|---|
date | Sat Dec 10 01:21:18 2011 +0100 (2011-12-10) |
parents | b1584d8f70a7 |
children | fcc1dc4dd1af 857659a86f24 |
line diff
1.1 --- a/examples/tazwok.conf Tue May 24 21:08:47 2011 +0000 1.2 +++ b/examples/tazwok.conf Sat Dec 10 01:21:18 2011 +0100 1.3 @@ -10,7 +10,12 @@ 1.4 HG_WOK="http://hg.slitaz.org/wok" 1.5 1.6 # Default makeflags. 1.7 -MAKEFLAGS="-j$((`grep processor /proc/cpuinfo | wc -l`+1))" 1.8 +# This one make compilation use all cpu when possible, and have 1.9 +# priority hover other processes. 1.10 +# MAKEFLAGS="-j$((`grep processor /proc/cpuinfo | wc -l`+1))" 1.11 +# This one makes use of all cpu but without priority, so if you 1.12 +# run something else it can run smoothly even while compiling. 1.13 +MAKEFLAGS="-j`grep processor /proc/cpuinfo | wc -l`" 1.14 1.15 # Default architecture. 1.16 ARCH="i486" 1.17 @@ -18,12 +23,8 @@ 1.18 # Build and host. These options are for cross-compiling. If you specify 1.19 # both options and BUILD_SYSTEM is different from HOST_SYSTEM, configure 1.20 # will prepare to cross-compile from BUILD_SYSTEM to be used on HOST_SYSTEM. 1.21 -BUILD_SYSTEM="$(uname -m)-slitaz-linux" 1.22 -#BUILD_SYSTEM="$ARCH-slitaz-linux" 1.23 -HOST_SYSTEM="$ARCH-slitaz-linux" 1.24 - 1.25 -# Default build host. 1.26 -BUILD_HOST="$HOST_SYSTEM" 1.27 +BUILD_SYSTEM="$ARCH-pc-linux-gnu" 1.28 +HOST_SYSTEM="$ARCH-pc-linux-gnu" 1.29 1.30 # Default compilation flags. 1.31 # More details at :