Overview
Comment: | Added -Wl,--rpath to MTT_CXXLIBS. Sets the runtime linker path so that the sys-admin does not have to ldconfig the octave directory for -cc to work. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | origin/master | trunk |
Files: | files | file ages | folders |
SHA3-256: |
c2197fc4257399e9ad63894c6fc21a48 |
User & Date: | geraint@users.sourceforge.net on 2002-05-02 20:12:45 |
Other Links: | branch diff | manifest | tags |
Context
2002-05-07
| ||
10:13:48 | Files marked by update as out of sync check-in: af29f9cfa1 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
2002-05-02
| ||
20:12:45 |
Added -Wl,--rpath to MTT_CXXLIBS. Sets the runtime linker path so that the sys-admin does not have to ldconfig the octave directory for -cc to work. check-in: c2197fc425 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
16:10:39 | Preliminary working version - ok with rc_PPP check-in: 2572169b86 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/bin/mttrc from [e6f067108e] to [2c21fd523c].
︙ | ︙ | |||
11 12 13 14 15 16 17 18 19 20 21 22 23 24 | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.29 2002/05/02 11:03:46 geraint ## Reinstated -liboctinterp and -lncurses; needed by xleftdiv. ## ## Revision 1.28 2002/05/01 12:21:29 geraint ## No longer uses save_ascii_data_for_plotting function to write data ## - eliminates dependence on liboctinterp (and libncurses) for .cc. ## | > > > | 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | ############################################################### ## Version control history ############################################################### ## $Id$ ## $Log$ ## Revision 1.30 2002/05/02 11:10:11 geraint ## s/loctave/loctinterp/ ## ## Revision 1.29 2002/05/02 11:03:46 geraint ## Reinstated -liboctinterp and -lncurses; needed by xleftdiv. ## ## Revision 1.28 2002/05/01 12:21:29 geraint ## No longer uses save_ascii_data_for_plotting function to write data ## - eliminates dependence on liboctinterp (and libncurses) for .cc. ## |
︙ | ︙ | |||
204 205 206 207 208 209 210 | # include paths IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave" # library paths OCTAVEVERS=`octave --version | gawk '{ print $4 }'` | | | 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 | # include paths IOCTAVE="-I${PREFIX}/include/octave/ -I${PREFIX}/include/octave/octave" # library paths OCTAVEVERS=`octave --version | gawk '{ print $4 }'` LOCTAVE="-L${PREFIX}/lib/octave-${OCTAVEVERS} -loctave -lcruft -loctinterp -Wl,--rpath,${PREFIX}/lib/octave-${OCTAVEVERS}" LSYSTEM="-ldl -lm -lncurses -lkpathsea -lreadline -lblas -llapack -lfftw -lg2c" # compiler options DEBUG="-g" OPTIM="-O3" FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates" |
︙ | ︙ |