diff options
author | unknown <sasha@mysql.sashanet.com> | 2000-12-07 08:38:46 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2000-12-07 08:38:46 -0700 |
commit | 3e9523d2fa4bcc023a8c05b8ffac17fb17aefd7a (patch) | |
tree | 3b304dc197e750fd5fd5cd4bf8f3b5dd23df4de4 /Build-tools | |
parent | 8f4a153320361b02c391622e451bd7ea7e733cef (diff) | |
download | mariadb-git-3e9523d2fa4bcc023a8c05b8ffac17fb17aefd7a.tar.gz |
make -j 2
BUILD/compile-pentium-gcov:
use second CPU
BUILD/compile-pentium:
I got my second CPU
Build-tools/Do-all-build-steps:
use second CPU
Build-tools/Do-compile:
use second CPU
Diffstat (limited to 'Build-tools')
-rwxr-xr-x | Build-tools/Do-all-build-steps | 2 | ||||
-rwxr-xr-x | Build-tools/Do-compile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Build-tools/Do-all-build-steps b/Build-tools/Do-all-build-steps index a5b1457e359..8c2be1844a0 100755 --- a/Build-tools/Do-all-build-steps +++ b/Build-tools/Do-all-build-steps @@ -60,7 +60,7 @@ aclocal; autoheader; aclocal; automake; autoconf --with-mit-threads=yes $EXTRA_CONFIG \ --enable-thread-safe-client -gmake # --jobs=4 does not work. +gmake -j 2 # --jobs=4 does not work. time gmake distcheck \ EXTRA_CONF_ARGS="--with-unix-socket-path=/var/tmp/mysql.sock --with-low-memory $EXTRA_CONFIG" diff --git a/Build-tools/Do-compile b/Build-tools/Do-compile index 8d5fed87da5..527cd5becde 100755 --- a/Build-tools/Do-compile +++ b/Build-tools/Do-compile @@ -43,7 +43,7 @@ else } $ENV{'PATH'}= "$pwd/$host/bin:" . $ENV{'PATH'}; $rsh=which("rcmd","rsh"); -$make=which("gmake","make"); +$make=which("gmake -j 2","make"); $tar=which("gtar","tar"); $sendmail=find("/usr/lib/sendmail","/usr/sbin/sendmail"); $sur= $opt_sur ? "/my/local/bin/sur" : ""; |