|
From: <sv...@va...> - 2006-02-10 12:42:16
|
Author: sewardj Date: 2006-02-10 12:42:11 +0000 (Fri, 10 Feb 2006) New Revision: 5628 Log: Don't use -gstabs on ppc64-linux, as it doesn't work with some gccs (Dave= Nomura). Modified: trunk/helgrind/tests/Makefile.am Modified: trunk/helgrind/tests/Makefile.am =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D --- trunk/helgrind/tests/Makefile.am 2006-02-10 11:57:17 UTC (rev 5627) +++ trunk/helgrind/tests/Makefile.am 2006-02-10 12:42:11 UTC (rev 5628) @@ -17,5 +17,12 @@ allok deadlock inherit race race2 readshared =20 # force -gstabs, because we don't print symaddr for DWARF yet +# Sigh, gcc-3.4.3 on ppc64 generates bogus .stabs. So disable it +# for now on ppc64-linux. +if VG_PPC64_LINUX +AM_CFLAGS =3D $(WERROR) -Winline -Wall -Wshadow -g $(AM_FLAG_M3264_= PRI) +else AM_CFLAGS =3D $(WERROR) -Winline -Wall -Wshadow -gstabs $(AM_FLAG_M3264_= PRI) +endif + LDADD =3D -lpthread |