From 24b239b9a8e0e385020a9be1299f1f07850c6d83 Mon Sep 17 00:00:00 2001 From: kris Date: Fri, 12 Sep 2003 20:48:28 +0000 Subject: Add a couple of amd64 failure messages. --- Tools/portbuild/scripts/processlogs | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Tools/portbuild') 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 -- cgit