Changeset 808
- Timestamp:
- Sep 18, 2014, 2:58:42 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/reconfiguration/platforms/tsar_generic_iob/soclib.conf
r748 r808 1 cflags = config.default.toolchain.cflags \ 2 + ['-DUSE_OPENMP=0'] \ 3 # + ['-ggdb'] 1 # append compilation flags 2 cflags = config.default.toolchain.cflags 3 cflags.extend(['-DUSE_OPENMP=0']) 4 #cflags.extend(['-ggdb']) 5 config.default.toolchain.set("cflags", cflags) 4 6 5 config.default.toolchain.set( 6 "cflags", cflags 7 ) 8 9 import os 10 tsar_path = os.environ['TSARPATH'] 11 config.addDescPath(tsar_path + "/trunk/lib") 12 config.addDescPath(tsar_path + "/trunk/communication") 13 config.addDescPath(tsar_path + "/trunk/modules") 7 # append modules' description file paths 8 from os import environ 9 from os.path import join 10 tsarpath = environ['TSARPATH'] 11 config.addDescPath(join(tsarpath, "trunk/lib")) 12 config.addDescPath(join(tsarpath, "trunk/communication")) 13 config.addDescPath(join(tsarpath, "trunk/modules"))
Note: See TracChangeset
for help on using the changeset viewer.