diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-17 21:50:54 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-09-17 21:50:54 +0000 |
commit | be10c4a8c935671cca3064f556091dc247f5960a (patch) | |
tree | 3f36268be1e4c95f7624195588eb8f0a993e8c30 /package | |
parent | 1dc51b258273325be9dd05434a726cfcfa719a41 (diff) | |
download | buildroot-novena-be10c4a8c935671cca3064f556091dc247f5960a.tar.gz buildroot-novena-be10c4a8c935671cca3064f556091dc247f5960a.zip |
- add v9a and v9b settings.
Will need to change the GCC_TARGET_TUNE accordingly.
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile.in | 6 |
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 |