diff options
| author | Kamil Rytarowski <n54@gmx.com> | 2020-02-22 10:02:01 +0100 |
|---|---|---|
| committer | Kamil Rytarowski <n54@gmx.com> | 2020-02-22 10:02:01 +0100 |
| commit | 775a8882a6f34f173b87809860eb74a943b4e5c5 (patch) | |
| tree | 330338674a8a2bdcbd1970b6edfcf8682bf74d52 /pkg/build/netbsd.go | |
| parent | 2ffa6679c4790a83f26a1b674ed34800e028fe2e (diff) | |
pkg/build: Raise the timeout limit to 30min for building LLVM (tools)
Diffstat (limited to 'pkg/build/netbsd.go')
| -rw-r--r-- | pkg/build/netbsd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/build/netbsd.go b/pkg/build/netbsd.go index 7bcc4ae39..68836f3a1 100644 --- a/pkg/build/netbsd.go +++ b/pkg/build/netbsd.go @@ -31,7 +31,7 @@ func (ctx netbsd) build(params *Params) error { if strings.HasSuffix(params.Compiler, "clang++") { // Build tools before building kernel - if _, err := osutil.RunCmd(10*time.Minute, params.KernelDir, "./build.sh", "-m", params.TargetArch, + if _, err := osutil.RunCmd(30*time.Minute, params.KernelDir, "./build.sh", "-m", params.TargetArch, "-U", "-u", "-j"+strconv.Itoa(runtime.NumCPU()), "-V", "MKCTF=no", "-V", "MKLLVM=yes", "-V", "MKGCC=no", "-V", "HAVE_LLVM=yes", "tools"); err != nil { return err |
