Update of /cvsroot/pure-data/externals/grill/flext/buildsys/lnx/pd In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4893/buildsys/lnx/pd
Modified Files: config-gcc.def Added Files: config-icc.def gnumake-icc-ext.inc gnumake-icc-flext.inc gnumake-icc.inc Log Message: various fixes to build system fixes for build system better templates, some minor changes build system: added profiler mode, more fixes added ICC/linux support small optimizations
--- NEW FILE: config-icc.def --- # where is the PD source package? # (this should point to the main folder, which has a "src" subfolder) PDPATH=/usr/local/src/pd
###############################################################
# where do/should the flext headers reside/be built? FLEXTINC=/usr/local/include/flext
# where do/should the flext static libraries reside/be built? FLEXTLIB=/usr/local/lib
# where do/should the flext shared libraries reside/be built? FLEXTSHLIB=$(FLEXTLIB)
###############################################################
# where should the external be built? OUTPATH=pd-linux
# where should the external be installed? INSTPATH=/usr/local/lib/pd/extra
###############################################################
# user defined compiler flags # (check if they match your system!) UFLAGS=
# user defined optimization flags # (check if they match your system!) OFLAGS=-O3 -Ob2 -ip # optimizations for Pentium 4 OFLAGS+=-mcpu=pentium4 -march=pentium4 -xMKW
--- NEW FILE: gnumake-icc-flext.inc --- ifdef SHARED EXT=so else EXT=a endif
--- NEW FILE: gnumake-icc.inc --- DEFS += -DFLEXT_SYS=2
INCPATH += -I$(PDPATH)/src LIBPATH += -L$(PDPATH)/bin
--- NEW FILE: gnumake-icc-ext.inc --- EXT=pd_linux
Index: config-gcc.def =================================================================== RCS file: /cvsroot/pure-data/externals/grill/flext/buildsys/lnx/pd/config-gcc.def,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** config-gcc.def 7 Jan 2005 04:58:46 -0000 1.4 --- config-gcc.def 13 Jan 2005 04:59:09 -0000 1.5 *************** *** 1,3 **** --- 1,4 ---- # where is the PD source package? + # (this should point to the main folder, which has a "src" subfolder) PDPATH=/usr/local/src/pd
*************** *** 25,29 **** # user defined compiler flags # (check if they match your system!) ! UFLAGS=-msse
# user defined optimization flags --- 26,30 ---- # user defined compiler flags # (check if they match your system!) ! UFLAGS=-msse -mfpmath=sse -ffast-math
# user defined optimization flags