diff options
author | sb <sb@openoffice.org> | 2011-01-05 09:35:43 +0100 |
---|---|---|
committer | sb <sb@openoffice.org> | 2011-01-05 09:35:43 +0100 |
commit | 0a1c928e7e5d2d0ff8e954998b76b345966cbe79 (patch) | |
tree | 4137a513a67092c979b8b5c08ed493f127650c39 | |
parent | ce4e4c5ab427daa0557d9154d52e7b2397fcf9b1 (diff) |
sb135: #i116308# missing solenv/gbuild/platform/solaris.mk settings
-rwxr-xr-x | solenv/gbuild/platform/solaris.mk | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/solenv/gbuild/platform/solaris.mk b/solenv/gbuild/platform/solaris.mk index 457f86e795ea..b2e4ab3b8b44 100755 --- a/solenv/gbuild/platform/solaris.mk +++ b/solenv/gbuild/platform/solaris.mk @@ -53,16 +53,16 @@ gb_COMPILERDEFS := \ # -D$(CVER) \ # -DCVER=$(CVER) \ -ifeq ($(CPUNAME),INTEL) -gb_CPUDEFS := -else # ifeq ($(CPUNAME),SPARC) -gb_CPUDEFS := -D__sparcv8plus +gb_CPUDEFS := -D$(CPUNAME) +ifeq ($(CPUNAME),SPARC) +gb_CPUDEFS += -D__sparcv8plus endif gb_CFLAGS := \ -temp=/tmp \ -KPIC \ -mt \ + -xldscope=hidden \ -xCC \ -xc99=none \ @@ -70,6 +70,7 @@ gb_CXXFLAGS := \ -temp=/tmp \ -KPIC \ -mt \ + -xldscope=hidden \ -features=no%altspell \ -library=no%Cstd \ +w2 \ |