graphics/libGL sometimes fail to build when using 20 make jobs. occasionally matypes.h is not finished generating before things that need matypes.h to compile are sent to the compiler. x86/common_x86_asm.S:42:21: error: matypes.h: No such file or directory gmake[2]: *** [x86/common_x86_asm.o] Error 1 gmake[2]: *** Waiting for unfinished jobs.... x86/x86_xform2.S:33:21: error: matypes.h: No such file or directory x86/x86_cliptest.S:33:21: error: matypes.h: No such file or directory gmake[2]: *** [x86/x86_cliptest.o] Error 1 gmake[2]: *** [x86/x86_xform2.o] Error 1 x86/sse_normal.S:35:21: error: matypes.h: No such file or directory gmake[2]: *** [x86/sse_normal.o] Error 1 ./gen_matypes > matypes.h gmake[3]: Leaving directory `/work/a/ports/graphics/libGL/work/Mesa-7.6.1/src/mesa/x86' Fix: attached patch marks port as make jobs unsafe. Patch attached with submission follows:
Responsible Changed From-To: freebsd-ports-bugs->freebsd-x11 Over to maintainer (via the GNATS Auto Assign Tool)
State Changed From-To: open->closed fixed in the xorg repo
Hm, that doesn't help people with the current ports tree, does it? The submitter tells me it's still an issue. Chris
State Changed From-To: closed->patched correct state
Author: eadler Date: Mon Sep 3 19:04:31 2012 New Revision: 303610 URL: http://svn.freebsd.org/changeset/ports/303610 Log: After a report of an error, mark graphics/libGL as not MAKE_JOBS_SAFE PR: ports/162412 Submitted by: 4720@hushmail.com Reviewed by: zeising Modified: head/graphics/libGL/bsd.mesalib.mk Modified: head/graphics/libGL/bsd.mesalib.mk ============================================================================== --- head/graphics/libGL/bsd.mesalib.mk Mon Sep 3 19:01:55 2012 (r303609) +++ head/graphics/libGL/bsd.mesalib.mk Mon Sep 3 19:04:31 2012 (r303610) @@ -44,7 +44,7 @@ USE_BZIP2= yes USE_GMAKE= yes USE_LDCONFIG= yes GNU_CONFIGURE= yes -MAKE_JOBS_SAFE= yes +MAKE_JOBS_UNSAFE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: patched->closed Committed. Thanks!