summaryrefslogtreecommitdiffstats
path: root/package/Makefile.in
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer2007-09-17 23:50:54 +0200
committerBernhard Reutner-Fischer2007-09-17 23:50:54 +0200
commitbe10c4a8c935671cca3064f556091dc247f5960a (patch)
tree3f36268be1e4c95f7624195588eb8f0a993e8c30 /package/Makefile.in
parent- wants --with-gmp-build nowadays (diff)
downloadbuildroot-be10c4a8c935671cca3064f556091dc247f5960a.tar.gz
buildroot-be10c4a8c935671cca3064f556091dc247f5960a.tar.xz
buildroot-be10c4a8c935671cca3064f556091dc247f5960a.zip
- add v9a and v9b settings.
Will need to change the GCC_TARGET_TUNE accordingly.
Diffstat (limited to 'package/Makefile.in')
-rw-r--r--package/Makefile.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/package/Makefile.in b/package/Makefile.in
index df57304d1..17f3e9899 100644
--- a/package/Makefile.in
+++ b/package/Makefile.in
@@ -46,10 +46,8 @@ ifeq ($(BR2_SOFT_FLOAT),y)
TARGET_CFLAGS+=-msoft-float
endif
-ifeq ($(BR2_sparc_v9b),y)
-TARGET_CFLAGS+=-mvis
-endif
-ifeq ($(BR2_sparc64_v9b),y)
+# enable VIS for v9a and v9b
+ifeq ($(findstring y,$(BR2_sparc_v9a)$(BR2_sparc64_v9a)$(BR2_sparc_v9b)$(BR2_sparc64_v9b)),y)
TARGET_CFLAGS+=-mvis
endif