diff options
author | cjep <cjep@pkgsrc.org> | 2002-03-30 13:01:54 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-03-30 13:01:54 +0000 |
commit | abbdd50efa5a9d49acc59144e1ceb417b6b2e194 (patch) | |
tree | b1ec0f3e8ddf9aad5e2a5831f963628df30a2058 /emulators/stella | |
parent | 575e5284217e0f6077655017f1146bc158faa7b6 (diff) | |
download | pkgsrc-abbdd50efa5a9d49acc59144e1ceb417b6b2e194.tar.gz |
On arm32, explicitly set the C++ compiler flags (as a result optimization
is left off and stella builds).
Diffstat (limited to 'emulators/stella')
-rw-r--r-- | emulators/stella/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/stella/Makefile b/emulators/stella/Makefile index 11fe1326c43..e510a06a8c2 100644 --- a/emulators/stella/Makefile +++ b/emulators/stella/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2001/02/17 18:38:24 wiz Exp $ +# $NetBSD: Makefile,v 1.4 2002/03/30 13:01:54 cjep Exp $ DISTNAME= stella-1.1-src PKGNAME= stella-1.1 @@ -16,6 +16,10 @@ MAKEFILE= makefile ALL_TARGET= unix-x MAKE_ENV= CXXFLAGS="${CXXFLAGS} -fno-rtti" +.if (${MACHINE_ARCH} == arm32) + MAKE_ENV= CXXFLAGS="-fno-rtti" +.endif + post-build: @cd ${WRKSRC}/../ui/sound && ${MAKE} oss |