11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## 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
|
>
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.31 2002/05/02 20:12:45 geraint
## 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.
##
## 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
|
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
# compiler options
DEBUG="-g"
OPTIM="-O3"
FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# exported variables
export MTT_CXX="g++"
export MTT_CXXFLAGS="${DEBUG} ${OPTIM} ${FLAGS}"
export MTT_CXXLIBS="${LOCTAVE} ${LSYSTEM}"
export MTT_CXXINCS="-I. ${IOCTAVE}"
export MTT_LDFLAGS=" "
fi
|
>
>
>
>
>
>
>
>
>
|
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
# compiler options
DEBUG="-g"
OPTIM="-O3"
FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# matlab flags
MATLAB_ARCH="glnx86"
MATLAB_ROOT="/usr/local/matlab6p1"
MATLAB_FLAGS="-shared -fPIC -ansi -D_GNU_SOURCE -pthread"
MATLAB_INCS="-I${MATLAB_ROOT}/extern/include"
MATLAB_LIBS="-Wl,--rpath-link,${MATLAB_ROOT}/extern/lib/${MATLAB_ARCH},--rpath-link,${MATLAB_ROOT}/bin/${MATLAB_ARCH} -L${MATLAB_ROOT}/bin/${MATLAB_ARCH} -lmx -lmex -lm"
# exported variables
export MTT_CXX="g++"
export MTT_CXXFLAGS="${DEBUG} ${OPTIM} ${FLAGS}"
export MTT_CXXLIBS="${LOCTAVE} ${LSYSTEM}"
export MTT_CXXINCS="-I. ${IOCTAVE}"
export MTT_LDFLAGS=" "
export MTT_MATLAB_FLAGS="${MATLAB_FLAGS} ${MATLAB_INCS} ${MATLAB_LIBS}"
fi
|