source: branches/reconfiguration/platforms/tsar_generic_iob/soclib.conf

Last change on this file was 1027, checked in by cfuguet, 8 years ago

Improving documentation of the reconfiguration/tsar_generic_iob
platform.

File size: 763 bytes
Line 
1from os import environ
2from os.path import join
3
4# append compilation flags
5#cflags = config.default.toolchain.cflags
6#cflags.extend(['-Wno-unknown-warning-option'])
7#cflags.extend(['-ggdb'])
8#config.default.toolchain.set("cflags", cflags)
9
10# append modules' description file paths
11# set the TSARPATH env variable to the path of TSAR's soclib working directory
12# (e.g. export TSARPATH=<path_to_tsar>). Otherwise, modify hereafter the
13# tsarpath variable, and set the path explicitly.
14tsarpath = environ['TSARPATH']
15config.addDescPath(join(tsarpath, "trunk/lib"))
16config.addDescPath(join(tsarpath, "trunk/modules"))
17config.addDescPath(join(tsarpath, "branches/reconfiguration/communication"))
18config.addDescPath(join(tsarpath, "branches/reconfiguration/modules"))
Note: See TracBrowser for help on using the repository browser.