sbsv2/raptor/notes/tcomsupport.txt
author jjkang
Fri, 25 Jun 2010 19:56:45 +0800
changeset 604 b33dd54aaa52
parent 602 3145852acc89
permissions -rw-r--r--
add cpptoolsplat
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
602
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     1
New Trace Compiler
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     2
-------------------
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     3
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     4
Raptor supports an updated version of the Trace Compiler which has
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     5
an improved command-line interface that allows Raptor to specify the
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     6
directory in which trace data should be written.  This allows MMPs to
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     7
implement a new convention for where trace files are stored.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     8
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
     9
The new convention prevents clashes where building the same
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    10
source file for different MMPs would previously have resulted in two
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    11
build tasks trying to create the same trace file (header/dictionary).
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    12
This caused build slowdowns and also made the trace data inaccurate.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    13
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    14
The standard for this directory is that the last two elements of the
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    15
path should be
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    16
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    17
   traces/traces_<targetname>_<ext>
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    18
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    19
e.g.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    20
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    21
   traces/traces_euser_dll
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    22
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    23
The new trace compiler also creates "autogen" headers in a new location
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    24
under epoc32/include/platform rather than epoc32/include/internal.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    25
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    26
Trace Headers Directory can now also be in SYSTEMINCLUDEs
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    27
----------------------------------------------------------
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    28
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    29
Some teams were having trouble getting qmake to generate MMPs with
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    30
USERINCLUDEs set.  So they were specifying the trace header directory in
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    31
their SYTEMINCLUDEs.  This change causes Raptor to look for the traces
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    32
directory in bot SYSTEMINCLUDES and USERINCLUDES.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    33
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    34
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    35
Create Trace Directories During Makefile Parse
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    36
-----------------------------------------------
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    37
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    38
Some build engines consider it a "clash" when two jobs attempt to make the
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    39
same directory.  This change causes some important trace output directories
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    40
to be created during makefile parsing which removes the (small) possibility
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    41
that they would clash during the build part.
3145852acc89 add releasing to new structure
jjkang
parents:
diff changeset
    42