Changes between Version 1 and Version 2 of DsxPosix


Ignore:
Timestamp:
Jul 6, 2011, 9:58:34 AM (13 years ago)
Author:
porquet
Comment:

explain options for Posix generation

Legend:

Unmodified
Added
Removed
Modified
  • DsxPosix

    v1 v2  
    2424}}}
    2525
     26
     27== Options when instanciating Posix ==
     28
     29You can activate verbosity to see compilation lines:
     30{{{
     31tcg.generate(Posix(VERBOSE=1))
     32}}}
     33
     34You can also specify compilation flags that will be used in the make execution (compilation and linking). For example, to add the profiling option:
     35{{{
     36tcg.generate(Posix(COMPILE_FLAGS="-pg"))
     37}}}