Overview
| Comment: | -O3 optimisation by default. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | origin/master | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
f03da976489f40edd6fd3ecf4330b176 |
| User & Date: | geraint@users.sourceforge.net on 2004-08-09 17:40:41.000 |
| Other Links: | branch diff | manifest | tags |
Context
|
2004-08-09
| ||
| 17:42:23 | Updated to reflect new CR format: component type is passed as the first argument. check-in: 3865ce4c3e user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 17:40:41 | -O3 optimisation by default. check-in: f03da97648 user: geraint@users.sourceforge.net tags: origin/master, trunk | |
| 14:47:28 | Changed arg to args to avoid strange octave bug check-in: d0b97fa131 user: gawthrop@users.sourceforge.net tags: origin/master, trunk | |
Changes
Modified mttroot/mtt/lib/rep/cxxsim_rep.make
from [17e542a86b]
to [40e5a5430e].
| ︙ | ︙ | |||
12 13 14 15 16 17 18 |
# a more intelligent version would just do ese_r2cc to create <sys>_ese.cc
# this could then be embedded into MTT's normal code like <sys>_ode.cc
# maybe another day ...
CC=g++
INCLUDE=-I. -I${MTT_LIB}/cr/hh
| | | 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
# a more intelligent version would just do ese_r2cc to create <sys>_ese.cc
# this could then be embedded into MTT's normal code like <sys>_ode.cc
# maybe another day ...
CC=g++
INCLUDE=-I. -I${MTT_LIB}/cr/hh
OPTIMISE=-O3
WARNINGS=-Wall -ansi -pedantic
ifeq ("","$(MTT_ARG)")
TARGET=$(MTT_SYS)_cxxsim.$(MTT_LANG)
else
TARGET=$(MTT_SYS)_cxxsim-$(MTT_ARG).$(MTT_LANG)
endif
|
| ︙ | ︙ |