svn commit: r224176 - projects/portbuild/scripts
Mark Linimon
linimon at FreeBSD.org
Mon Jul 18 08:27:40 UTC 2011
Author: linimon (doc,ports committer)
Date: Mon Jul 18 08:27:40 2011
New Revision: 224176
URL: http://svn.freebsd.org/changeset/base/224176
Log:
Remove false positives for assumes_gcc.
Modified:
projects/portbuild/scripts/processonelog
Modified: projects/portbuild/scripts/processonelog
==============================================================================
--- projects/portbuild/scripts/processonelog Mon Jul 18 08:10:49 2011 (r224175)
+++ projects/portbuild/scripts/processonelog Mon Jul 18 08:27:40 2011 (r224176)
@@ -99,7 +99,7 @@ elif bzgrep -qE "(error: a parameter lis
# XXX MCL "file not recognized: File format not recognized" can be clang
elif bzgrep -qE "(.s: Assembler messages:|Cannot (determine .* target|find the byte order) for this architecture|^cc1: bad value.*for -mcpu.*switch|could not read symbols: File in wrong format|[Ee]rror: [Uu]nknown opcode|error.*Unsupported architecture|ENDIAN must be defined 0 or 1|failed to merge target-specific data|(file not recognized|failed to set dynamic section sizes): File format not recognized|impossible register constraint|inconsistent operand constraints in an .asm|Invalid configuration.*unknown.*machine.*unknown not recognized|invalid lvalue in asm statement|is only for.*, and you are running|not a valid 64 bit base/index expression|relocation R_X86_64_32.*can not be used when making a shared object|relocation truncated to fit: |shminit failed: Function not implemented|The target cpu, .*, is not currently supported.|This architecture seems to be neither big endian nor little endian|unknown register name|Unable to correct byte order|Unsupported platform, sorry|won
't run on this architecture)" $1; then
reason="arch"; tag="arch"
-elif bzgrep -qE "(Cannot exec cc|cannot find program cc|cc: No such file or directory|cc.*must be installed to build|cc.*not found|compiler not found|error: no acceptable C compiler|g++: No such file or directory|g++.*not found)" $1; then
+elif bzgrep -qE "(Cannot exec cc|cannot find program cc|cc: No such file or directory|cc.*must be installed to build|cc.*not found|compiler not found|error: no acceptable C compiler|g\+\+: No such file or directory|g\+\+.*not found)" $1; then
reason="assumes_gcc"; tag="assumes_gcc"
elif bzgrep -qE "autoconf([0-9\-\.]*): (not found|No such file or directory)" $1; then
reason="autoconf"; tag="autoconf"
More information about the svn-src-projects
mailing list