diff options
author | gdt <gdt@pkgsrc.org> | 2020-06-13 14:26:00 +0000 |
---|---|---|
committer | gdt <gdt@pkgsrc.org> | 2020-06-13 14:26:00 +0000 |
commit | 9aaefa942272ef0f0f7f78df1c74e9108ecf01cb (patch) | |
tree | 3dfadfdc85009a4412117f27720aef327b07db65 /lang | |
parent | 91fb430f62f72195e41b116f7d24078d1c77821d (diff) | |
download | pkgsrc-9aaefa942272ef0f0f7f78df1c74e9108ecf01cb.tar.gz |
lang/rust: Note pkgbuild 2020Q1 MAK_JOBS mystery
On 2020Q1 on pkgbuild (NetBSD 9/amd64), despite MAKE_JOBS_SAFE being
set, rust failed to build repeatedly. Note this.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/rust/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lang/rust/Makefile b/lang/rust/Makefile index e39c3c5bef4..0a034cdd164 100644 --- a/lang/rust/Makefile +++ b/lang/rust/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.176 2020/06/13 14:18:41 gdt Exp $ +# $NetBSD: Makefile,v 1.177 2020/06/13 14:26:00 gdt Exp $ DISTNAME= rustc-1.43.1-src PKGNAME= ${DISTNAME:S/rustc/rust/:S/-src//} @@ -151,7 +151,11 @@ CONFIGURE_ARGS+= --set llvm.targets="ARM;X86" # This has not been pulled up to netbsd-8 # \todo Explain if it's not applicable, shouldn't be pulled up, should be # but hasn't, is too hard, etc. - +# +# On pkgbuild for 2020Q1 9.0_RELEASE amd64, rust did not build despite +# MAKE_JOBS_SAFE=no, but setting MAKE_JOBS=1 resulted in success. (No +# PR is open for this.) \todo Understand and fix. +# # If we aren't on 9-current, and are on 8.x or 9.x, avoid parallel. # \todo Consider avoiding setting this on netbsd-9 past the fix. .if empty(MACHINE_PLATFORM:MNetBSD-9.99.*) && !empty(MACHINE_PLATFORM:MNetBSD-[1-9].*) |