aboutsummaryrefslogtreecommitdiffstats
path: root/Tools
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2003-09-13 04:48:28 +0800
committerKris Kennaway <kris@FreeBSD.org>2003-09-13 04:48:28 +0800
commit6ee0cd092e945f1440848221bf3189f736d533d1 (patch)
tree31e18c94caa6332e2dfc0464d46690196dac51de /Tools
parent7052589b038eca1e85c37f51c81ffa9966d79fc2 (diff)
downloadfreebsd-ports-6ee0cd092e945f1440848221bf3189f736d533d1.tar.gz
freebsd-ports-6ee0cd092e945f1440848221bf3189f736d533d1.tar.zst
freebsd-ports-6ee0cd092e945f1440848221bf3189f736d533d1.zip
Add a couple of amd64 failure messages.
Notes
Notes: svn path=/head/; revision=88966
Diffstat (limited to 'Tools')
-rwxr-xr-xTools/portbuild/scripts/processlogs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/processlogs b/Tools/portbuild/scripts/processlogs
index ec54c31f1d39..37ac424f19fe 100755
--- a/Tools/portbuild/scripts/processlogs
+++ b/Tools/portbuild/scripts/processlogs
@@ -191,8 +191,14 @@ if [ $# != 1 -o "x$1" != "x*.log" ]; then
reason="arch"; tag="arch"
elif grep -qE "is only for.*, and you are running" $1; then
reason="arch"; tag="arch"
+ elif grep -q "not a valid 64 bit base/index expression" $1; then
+ reason="arch"; tag="arch"
+ elif grep -qE "relocation R_X86_64_32.*can not be used when making a shared object" $1; then
+ reason="arch"; tag="arch"
elif grep -q "relocation truncated to fit: " $1; then
reason="arch"; tag="arch"
+ elif grep -qE "The target cpu, .*, is not currently supported." $1; then
+ reason="arch"; tag="arch"
elif grep -q "This architecture seems to be neither big endian nor little endian" $1; then
reason="arch"; tag="arch"
elif grep -q "unknown register name" $1; then