diff options
author | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-07 04:58:47 +0000 |
---|---|---|
committer | Thomas Grill <xovo@users.sourceforge.net> | 2005-01-07 04:58:47 +0000 |
commit | dad0b0542c08240f4431a34d46e6676461e0d83b (patch) | |
tree | 1d4ce3ce8cfe60caec560d0514f6eb4c08defcc3 /externals/grill/flext/buildsys/lnx | |
parent | ed4ce25dc69fd6361f7655a3ab5d05186754316c (diff) |
updated for OSX
better templates, some minor changes
fix for showing attributes on select (and recreate the object on edit)
cleanups
svn path=/trunk/; revision=2469
Diffstat (limited to 'externals/grill/flext/buildsys/lnx')
-rw-r--r-- | externals/grill/flext/buildsys/lnx/gnumake-gcc.inc | 5 | ||||
-rw-r--r-- | externals/grill/flext/buildsys/lnx/pd/config-gcc.def | 8 |
2 files changed, 10 insertions, 3 deletions
diff --git a/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc b/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc index 55022c36..70a4601e 100644 --- a/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc +++ b/externals/grill/flext/buildsys/lnx/gnumake-gcc.inc @@ -6,10 +6,13 @@ TARGET=$(TARGETPATH)/$(OUTNAME).$(EXT) ############################################## -LDFLAGS += -shared +CFLAGS += -pthread +LDFLAGS += -pthread -shared ############################################## +CFLAGS += $(UFLAGS) + ifdef DEBUG CFLAGS += -g -D_DEBUG else diff --git a/externals/grill/flext/buildsys/lnx/pd/config-gcc.def b/externals/grill/flext/buildsys/lnx/pd/config-gcc.def index c58ab238..bf0ff666 100644 --- a/externals/grill/flext/buildsys/lnx/pd/config-gcc.def +++ b/externals/grill/flext/buildsys/lnx/pd/config-gcc.def @@ -24,6 +24,10 @@ INSTPATH=/usr/local/lib/pd/extra # user defined compiler flags # (check if they match your system!) -OFLAGS=-O2 +UFLAGS=-msse + +# user defined optimization flags +# (check if they match your system!) +OFLAGS=-O3 # optimizations for Pentium 4 -#OFLAGS+=-march=pentium4 -msse +OFLAGS+=-march=pentium4 |