|
From: <sv...@va...> - 2011-07-07 14:10:29
|
Author: sewardj Date: 2011-07-07 15:05:39 +0100 (Thu, 07 Jul 2011) New Revision: 11861 Log: Pipe CFLAGS through to the compile run for genoffsets.c, which is a bit special. CFLAGS is already piped through to everywhere else. This is needed for working with semi-broken cross-compile setups that need CFLAGS set to special values in order to work. Modified: trunk/Makefile.vex.am Modified: trunk/Makefile.vex.am =================================================================== --- trunk/Makefile.vex.am 2011-07-06 14:11:56 UTC (rev 11860) +++ trunk/Makefile.vex.am 2011-07-07 14:05:39 UTC (rev 11861) @@ -66,7 +66,8 @@ pub/libvex_guest_arm.h \ pub/libvex_guest_s390x.h rm -f auxprogs/genoffsets.s - $(CC) $(LIBVEX_CFLAGS) \ + $(CC) $(CFLAGS) \ + $(LIBVEX_CFLAGS) \ $(AM_CFLAGS_@VGCONF_PLATFORM_PRI_CAPS@) \ -O -S -o auxprogs/genoffsets.s \ auxprogs/genoffsets.c |