|
From: <sv...@va...> - 2006-10-05 08:10:07
|
Author: tom Date: 2006-10-05 09:10:01 +0100 (Thu, 05 Oct 2006) New Revision: 6183 Log: Tell the compiler to target the POWERPC architecture (ie POWER3 and later) on AIX as there are various bits of inline assembler that are not accepted when targeting the POWER/POWERPC common subset which is the default in my version of gcc. Modified: branches/AIX5/Makefile.flags.am Modified: branches/AIX5/Makefile.flags.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 --- branches/AIX5/Makefile.flags.am 2006-10-05 08:08:22 UTC (rev 6182) +++ branches/AIX5/Makefile.flags.am 2006-10-05 08:10:01 UTC (rev 6183) @@ -30,15 +30,15 @@ =20 AM_FLAG_M3264_PPC32_AIX5 =3D @FLAG_MAIX32@ AM_CPPFLAGS_PPC32_AIX5 =3D $(add_includes_ppc32_aix5) -AM_CFLAGS_PPC32_AIX5 =3D $(WERROR) @FLAG_MAIX32@ $(AM_CFLAGS_BASE) +AM_CFLAGS_PPC32_AIX5 =3D $(WERROR) @FLAG_MAIX32@ -mpowerpc $(AM_CFL= AGS_BASE) AM_CCASFLAGS_PPC32_AIX5 =3D $(add_includes_ppc32_aix5) \ - @FLAG_MAIX32@ -g + @FLAG_MAIX32@ -mpowerpc -g =20 AM_FLAG_M3264_PPC64_AIX5 =3D @FLAG_MAIX64@ AM_CPPFLAGS_PPC64_AIX5 =3D $(add_includes_ppc64_aix5) -AM_CFLAGS_PPC64_AIX5 =3D $(WERROR) @FLAG_MAIX64@ $(AM_CFLAGS_BASE) +AM_CFLAGS_PPC64_AIX5 =3D $(WERROR) @FLAG_MAIX64@ -mpowerpc64 $(AM_C= FLAGS_BASE) AM_CCASFLAGS_PPC64_AIX5 =3D $(add_includes_ppc64_aix5) \ - @FLAG_MAIX64@ -g + @FLAG_MAIX64@ -mpowerpc64 -g =20 # Flags for the primary target. These must be used to build the # regtests and performance tests. In fact, these must be used to |