Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 31 Jan 2021 16:11:54 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 8eeeee38f4c5 - main - tools: boot: use four jobs for building stand
Message-ID:  <202101311611.10VGBsIi091850@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed

commit 8eeeee38f4c5b2b48d03f3c5a3fa678962e8c9ed
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2021-01-31 16:07:31 +0000
Commit:     Kyle Evans <kevans@FreeBSD.org>
CommitDate: 2021-01-31 16:11:41 +0000

    tools: boot: use four jobs for building stand
    
    Parallel builds of stand should be assumed both possible and safe as of
    7012461c9bf6, so let's start using some jobs to speed up lualoader test
    harness builds.
---
 tools/boot/lua-img.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/boot/lua-img.sh b/tools/boot/lua-img.sh
index 9693c726501d..85e4cfc304d9 100755
--- a/tools/boot/lua-img.sh
+++ b/tools/boot/lua-img.sh
@@ -21,6 +21,6 @@ mkdir -p ${dir}
 mtree -deUW -f etc/mtree/BSD.root.dist -p ${dir}
 mtree -deUW -f etc/mtree/BSD.usr.dist -p ${dir}/usr
 cd stand
-make all install DESTDIR=${dir} NO_ROOT=t MK_LOADER_LUA=yes MK_FORTH=no MK_INSTALL_AS_USER=yes
+make -j4 all install DESTDIR=${dir} NO_ROOT=t MK_LOADER_LUA=yes MK_FORTH=no MK_INSTALL_AS_USER=yes
 mkdir -p ${dir}/boot/kernel
 cp /boot/kernel/kernel ${dir}/boot/kernel



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101311611.10VGBsIi091850>