Last change
on this file since 1054 was
1027,
checked in by cfuguet, 9 years ago
|
Improving documentation of the reconfiguration/tsar_generic_iob
platform.
|
File size:
763 bytes
|
Line | |
---|
1 | from os import environ |
---|
2 | from 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. |
---|
14 | tsarpath = environ['TSARPATH'] |
---|
15 | config.addDescPath(join(tsarpath, "trunk/lib")) |
---|
16 | config.addDescPath(join(tsarpath, "trunk/modules")) |
---|
17 | config.addDescPath(join(tsarpath, "branches/reconfiguration/communication")) |
---|
18 | config.addDescPath(join(tsarpath, "branches/reconfiguration/modules")) |
---|
Note: See
TracBrowser
for help on using the repository browser.