11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.42 2005/11/16 00:43:15 geraint
## rtxi
##
## Revision 1.41 2004/02/17 17:53:34 geraint
## Fixed [ 898739 ] libhdf5 dependency breaks -cc reps.
## Now uses mkoctfile to determine include and library flags.
##
|
>
>
>
|
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
###############################################################
## Version control history
###############################################################
## $Id$
## $Log$
## Revision 1.43 2006/02/09 23:49:40 geraint
## added rtxi build flags
##
## Revision 1.42 2005/11/16 00:43:15 geraint
## rtxi
##
## Revision 1.41 2004/02/17 17:53:34 geraint
## Fixed [ 898739 ] libhdf5 dependency breaks -cc reps.
## Now uses mkoctfile to determine include and library flags.
##
|
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
|
DEBUG="-g"
OPTIM="-O3"
FLAGS="-fno-rtti -fno-exceptions -fno-implicit-templates"
# exported variables
export MTT_CXX="g++-3.3"
export MTT_CXXFLAGS="${DEBUG} ${OPTIM} ${FLAGS}"
export MTT_CXXLIBS="${OCTAVE_LIB_FLAGS}"
export MTT_CXXINCS="-I. -I${MTT_LIB}/cc ${OCTAVE_INC_FLAGS}"
export MTT_LDFLAGS=" "
## End of Octave environment configuration
##
|
|
|
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
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="${OCTAVE_LIB_FLAGS}"
export MTT_CXXINCS="-I. -I${MTT_LIB}/cc ${OCTAVE_INC_FLAGS}"
export MTT_LDFLAGS=" "
## End of Octave environment configuration
##
|