diff options
author | jeh <jeh@FreeBSD.org> | 2003-11-20 07:31:30 +0800 |
---|---|---|
committer | jeh <jeh@FreeBSD.org> | 2003-11-20 07:31:30 +0800 |
commit | fcbf1e943934a8b8c0d89182b0f7c6bec2c37244 (patch) | |
tree | 9814b4a6a65007352372704b7a9b344680053dfc /devel/i386-rtems-g77 | |
parent | 5335c463e6746f1c4d03fec797e05ac198fc892d (diff) | |
download | freebsd-ports-gnome-fcbf1e943934a8b8c0d89182b0f7c6bec2c37244.tar.gz freebsd-ports-gnome-fcbf1e943934a8b8c0d89182b0f7c6bec2c37244.tar.zst freebsd-ports-gnome-fcbf1e943934a8b8c0d89182b0f7c6bec2c37244.zip |
Since once mk/bsd.cpu.mk adds the -mcpu and/or -march flags they can't
be removed. And setting NO_CPU_CFLAGS in a ports Makefile does not help.
It might be nice if Mk/bsd.port.mk would remove it if NO_CPU_CFLAGS was
set, patch coming soon.
Diffstat (limited to 'devel/i386-rtems-g77')
-rw-r--r-- | devel/i386-rtems-g77/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/devel/i386-rtems-g77/Makefile b/devel/i386-rtems-g77/Makefile index be6f443749ff..5b29ef4d31c1 100644 --- a/devel/i386-rtems-g77/Makefile +++ b/devel/i386-rtems-g77/Makefile @@ -44,7 +44,6 @@ PKGNAMEPREFIX= ${LCLTARGET}- USE_GMAKE= yes GNU_CONFIGURE= yes ALL_TARGET= all info -NO_CPUCFLAGS= yes CONFIGURE_TARGET?= --target=${LCLTARGET} CONFIGURE_ARGS?= --with-gnu-as --with-gnu-ld --with-newlib --verbose \ @@ -57,7 +56,13 @@ CONFIGURE_SCRIPT?= ../${G77NAME}/configure PATCH_WRKSRC= ${WRKDIR} PATCH_STRIP= -p -MAKE_FLAGS= LANGUAGES="f77" +NO_CPU_FLAGS= true +MAKE_FLAGS= LANGUAGES="c c++ java" +MAKE_ENV= MACHINE_ARCH=${RTEMS_ARCH} NO_CPU_CFLAGS=true +# Since once mk/bsd.cpu.mk adds the _CPUCFLAGS they can't be removed +# by NO_CPU_FLAGS, and since they are added long before here we are +# stuck with this hack. +CFLAGS:= ${CFLAGS:C/-mcpu=[^ ]*//:C/-march=[^ ]*//} pre-configure: @(cd ${WRKDIR} ; \ |