sbsv2/raptor/notes/tcomsupport.txt
author timothy.murphy@nokia.com
Thu, 06 May 2010 14:06:40 +0100
branchfix
changeset 522 9971c248e894
parent 516 cd8318d5fb3a
permissions -rw-r--r--
fix: dont' automatically set OST_TRACE_IN_USE after all as some components have odd build errors with it. We must get them fixed first then redo it.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
514
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     1
New Trace Compiler
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     2
-------------------
512
f270c42a56c4 notes about tcomsupport update
timothy.murphy@nokia.com
parents:
diff changeset
     3
514
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     4
Raptor supports an updated version of the Trace Compiler which has
516
cd8318d5fb3a Somewhat more sane choice of directory.
timothy.murphy@nokia.com
parents: 514
diff changeset
     5
an improved command-line interface that allows Raptor to specify the
514
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     6
directory in which trace data should be written.  This allows MMPs to
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     7
implement a new convention for where trace files are stored.
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     8
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
     9
The new convention prevents clashes where building the same
512
f270c42a56c4 notes about tcomsupport update
timothy.murphy@nokia.com
parents:
diff changeset
    10
source file for different MMPs would previously have resulted in two
f270c42a56c4 notes about tcomsupport update
timothy.murphy@nokia.com
parents:
diff changeset
    11
build tasks trying to create the same trace file (header/dictionary).
f270c42a56c4 notes about tcomsupport update
timothy.murphy@nokia.com
parents:
diff changeset
    12
This caused build slowdowns and also made the trace data inaccurate.
f270c42a56c4 notes about tcomsupport update
timothy.murphy@nokia.com
parents:
diff changeset
    13
516
cd8318d5fb3a Somewhat more sane choice of directory.
timothy.murphy@nokia.com
parents: 514
diff changeset
    14
The standard for this directory is that the last two elements of the
514
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    15
path should be
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    16
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    17
   traces/traces_<targetname>_<ext>
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    18
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    19
e.g.
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    20
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    21
   traces/traces_euser_dll
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    22
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    23
The new trace compiler also creates "autogen" headers in a new location
516
cd8318d5fb3a Somewhat more sane choice of directory.
timothy.murphy@nokia.com
parents: 514
diff changeset
    24
under epoc32/include/platform rather than epoc32/include/internal.
514
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    25
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    26
Trace Headers Directory can now also be in SYSTEMINCLUDEs
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    27
----------------------------------------------------------
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    28
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    29
Some teams were having trouble getting qmake to generate MMPs with
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    30
USERINCLUDEs set.  So they were specifying the trace header directory in
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    31
their SYTEMINCLUDEs.  This change causes Raptor to look for the traces
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    32
directory in bot SYSTEMINCLUDES and USERINCLUDES.
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    33
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    34
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    35
Create Trace Directories During Makefile Parse
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    36
-----------------------------------------------
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    37
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    38
Some build engines consider it a "clash" when two jobs attempt to make the
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    39
same directory.  This change causes some important trace output directories
516
cd8318d5fb3a Somewhat more sane choice of directory.
timothy.murphy@nokia.com
parents: 514
diff changeset
    40
to be created during makefile parsing which removes the (small) possibility
514
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    41
that they would clash during the build part.
92300322d8f8 Better release notes.
timothy.murphy@nokia.com
parents: 512
diff changeset
    42