Ignore:
Timestamp:
Sep 18, 2014, 2:58:42 PM (10 years ago)
Author:
cfuguet
Message:

reconf/tsar_generic_iob: minor improvements in the soclib.conf file

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
     2cflags = config.default.toolchain.cflags
     3cflags.extend(['-DUSE_OPENMP=0'])
     4#cflags.extend(['-ggdb'])
     5config.default.toolchain.set("cflags", cflags)
    46
    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
     8from os import environ
     9from os.path import join
     10tsarpath = environ['TSARPATH']
     11config.addDescPath(join(tsarpath, "trunk/lib"))
     12config.addDescPath(join(tsarpath, "trunk/communication"))
     13config.addDescPath(join(tsarpath, "trunk/modules"))
Note: See TracChangeset for help on using the changeset viewer.