[Bug 270890] lang/f2c getarg_.c:17:14: error: unknown type name 'ftnint'
Date: Sun, 30 Apr 2023 19:57:05 UTC
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=270890 --- Comment #11 from alt2600@icloud.com --- (In reply to Thierry Thomas from comment #10) I can confirm adding MAKE_JOBS_UNSAFE=YES to Makefile and this port stages fine. Its weird I was playing last night and if after seeing the failure if I went in the libf2c directory and manually did make -j10 all libf2c would build fine, would build with gmake as well. maybe the header isn't completely copied and ready when the compile starts as the first Makefile target would create the f2c.h by cp f2c.h0 f2c.h ??? and in poudriere ALLOW_MAKE_JOBS allows you to set the jobs number in your poudriere make.conf, be it the default or the jail specific one. It doesn't matter if its the named port or its dependencies. Without that set MAKE_JOBS_NUMER is ignored in your poudriere make.conf. I also have that one set in my pourdriere as gcc12 and llvm15 are constantly bumped and I mainly am using poudriere to keep my i386 wine libraries going. single job compilers are not fun to wait on... diff --git a/lang/f2c/Makefile b/lang/f2c/Makefile index b335825f4530..fa96d6704644 100644 --- a/lang/f2c/Makefile +++ b/lang/f2c/Makefile @@ -16,6 +16,7 @@ LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept BROKEN_mips= fails to compile: /usr/include/sigfpe.h: No such file or directory BROKEN_mips64= fails to compile: /usr/include/sigfpe.h: No such file or directory +MAKE_JOBS_UNSAFE=yes USES= gmake USE_LDCONFIG= yes -- You are receiving this mail because: You are the assignee for the bug.