Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 40 and Version 41 of Developer/Projects/Open/TraceTool


Ignore:
Timestamp:
08/10/09 20:01:21 (15 years ago)
Author:
Cocanlucian
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Developer/Projects/Open/TraceTool

    v40 v41  
    4545
    4646
    47    Usage: ./rtems_trace.py -m link
    48                            -i name of the compiler
     47   Usage: ./rtems_trace.py '''-m''' ''link''
     48                           '''-i''' ''name of the compiler''
    4949                           -b RTEMS build path
    50                            -o path to the compiled wrapping code
    51                            -  list of comma separated
     50                           -o path to the compiled code (.o files)
     51                           -  list of comma separated object files that should be included in the final executable
    5252                           -l path to where the RTEMS libraries were installed
    5353          ./rtems_trace.py --mode=link
    54                            --compiler name of the compiler   
     54                           --compiler=name of the compiler   
    5555                           --build=RTEMS build path
    56                            --trace-obj=
     56                           --objpath=path to the compiled code(.o files)
     57                           --trace-o=list of comma separated object files that should be included in the final executable
     58                           --lib path to where the RTEMS libraries were installed
    5759
    58                            --lib path to where the RTEMS libraries were installed
     60In this mode, the RTEMS trace tool will link all the object files from the specified directory (or from the default one if no directory is specified using the -o or --objpath option) if the --trace-o option it's not used. The user can specify only a subset of object files to be included in the final executable using the --trace-o option. The final executable file is placed into the same directory where the object files are found, under the ''wrapper.exe'' name.
    5961= Decode mode =
    6062