author | Daniel Jacobs <daniel.jacobs@nokia.com> |
Thu, 18 Feb 2010 16:42:28 +0000 | |
branch | wip |
changeset 337 | 62e1f66421b1 |
parent 173 | 6080bce951bf |
child 236 | a2dc04c8e649 |
child 243 | 007900c31eef |
permissions | -rw-r--r-- |
3 | 1 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
2 |
# All rights reserved. |
|
3 |
# This component and the accompanying materials are made available |
|
4 |
# under the terms of the License "Eclipse Public License v1.0" |
|
5 |
# which accompanies this distribution, and is available |
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
7 |
# |
|
8 |
# Initial Contributors: |
|
9 |
# Nokia Corporation - initial contribution. |
|
10 |
# |
|
11 |
# Contributors: |
|
12 |
# |
|
13 |
# Description: |
|
14 |
# Run Trace Compiler on source files to generate trace headers and decode files |
|
15 |
||
16 |
TRACE_PRJNAME:=$(basename $(notdir $(PROJECT_META))) |
|
17 |
# Find out TRACE_PATH |
|
18 |
TRACE_PATH:=$(strip $(foreach DIR,$(USERINCLUDE),$(filter %/traces_$(TRACE_PRJNAME),$(DIR)))) |
|
19 |
ifeq ($(TRACE_PATH),) |
|
20 |
TRACE_PATH:=$(strip $(foreach DIR,$(USERINCLUDE),$(filter %/traces,$(DIR)))) |
|
21 |
endif |
|
22 |
ifeq ($(TRACE_PATH),) |
|
23 |
TRACE_PATH:=$(strip $(foreach DIR,$(USERINCLUDE),$(filter %/traces_$(TARGET)_$(TARGETTYPE),$(DIR)))) |
|
24 |
# Use target name instead of mmp file name |
|
25 |
TRACE_PRJNAME:=$(TARGET)_$(TARGETTYPE) |
|
26 |
endif |
|
27 |
||
165
0921bf34b487
Fixing case non-issue just to be tidy (and to save headaches if the tracecompiler ever runs on Linux, possibly)
Iain Williamson <iain.williamson@nokia.com>
parents:
163
diff
changeset
|
28 |
TRACE_DICTIONARY:=$(EPOCROOT)/epoc32/ost_dictionaries/$(TRACE_PRJNAME)_0x$(UID_TC)_Dictionary.xml |
167
e400eed89539
Removing references to local file system in tc_whatlog test
Iain Williamson <iain.williamson@nokia.com>
parents:
165
diff
changeset
|
29 |
AUTOGEN_HEADER:=$(EPOCROOT)/epoc32/include/internal/SymbianTraces/autogen/$(TRACE_PRJNAME)_0x$(UID_TC)_TraceDefinitions.h |
161
62c28226cde4
Bug 1494 - Trace compiler files not in whatlog - FIX and TESTS though UNTESTED
Iain Williamson <iain.williamson@nokia.com>
parents:
3
diff
changeset
|
30 |
|
3 | 31 |
$(if $(FLMDEBUG),$(info <debug>TRACE_PATH = $(TRACE_PATH)</debug>)) |
32 |
||
33 |
# Run trace compiler only if TRACE_PATH exists |
|
34 |
ifneq ($(TRACE_PATH),) |
|
35 |
TRACE_MARKER:=$(TRACE_MARKER_PATH)/tracecompile_$(TRACE_PRJNAME)_$(UID_TC).done |
|
36 |
TRACE_HEADERS:= |
|
37 |
||
38 |
TRACE_SOURCE_LIST:=$(TRACE_MARKER_PATH)/tracecompile_$(TRACE_PRJNAME)_$(UID_TC).sourcelist |
|
39 |
||
40 |
# 1. Append to or create the list of source files for trace compiler to process |
|
41 |
# 2. Check if the hash in trace marker remain unchanged. If not, remove marker so trace compiler will run again. |
|
42 |
X:=$(shell set -x ; $(GNUMKDIR) -p $(TRACE_MARKER_PATH) ; $(GNUTOUCH) $(TRACE_SOURCE_LIST) ; echo -e "$(subst $(CHAR_SPACE),\\n,$(SOURCE))" | $(GNUSORT) -u $(TRACE_SOURCE_LIST) - > $(TRACE_SOURCE_LIST).tmp && $(GNUMV) $(TRACE_SOURCE_LIST).tmp $(TRACE_SOURCE_LIST) ; $(GNUMD5SUM) -c $(TRACE_MARKER) || $(GNURM) $(TRACE_MARKER)) |
|
43 |
||
44 |
$(if $(FLMDEBUG),$(info <debug>Trace Compiler sourcelist generation output: $(X)</debug>)) |
|
45 |
||
46 |
$(TRACE_MARKER) : $(SOURCE) |
|
47 |
||
48 |
TRACE_HEADERS:=$(foreach SRC,$(SOURCE),$(TRACE_PATH)/$(basename $(notdir $(SRC)))Traces.h) |
|
49 |
||
50 |
$(TRACE_HEADERS): $(TRACE_MARKER) |
|
51 |
||
52 |
ifeq ($(GUARD_$(call sanitise,$(TRACE_MARKER))),) |
|
53 |
GUARD_$(call sanitise,$(TRACE_MARKER)):=1 |
|
54 |
||
55 |
JAVA_COMMAND:=$(SBS_JAVATC) |
|
56 |
TRACE_COMPILER_PATH:=$(EPOCROOT)/epoc32/tools |
|
57 |
TRACE_COMPILER_START:=-classpath $(TRACE_COMPILER_PATH)/tracecompiler com.nokia.tracecompiler.TraceCompiler |
|
58 |
||
59 |
||
60 |
# 1. Use pipe to send inputs to trace compiler to process |
|
61 |
# 2. Create a hash regarding to source names and put it in marker. |
|
62 |
# 3. Show source names that are processed by trace compiler |
|
63 |
define trace_compile |
|
64 |
$(TRACE_MARKER) : $(PROJECT_META) |
|
65 |
$(call startrule,tracecompile) \ |
|
66 |
( echo -en "$(TRACE_PRJNAME)\n$(PROJECT_META)\n"; \ |
|
67 |
$(GNUCAT) $(TRACE_SOURCE_LIST); \ |
|
68 |
echo -en "*ENDOFSOURCEFILES*\n" ) | \ |
|
89
315b0aa777bd
Make TC fail when there is an error. This is hypothetical in this version but the next version of the TC is in testing.
timothy.murphy@nokia.com
parents:
3
diff
changeset
|
69 |
$(JAVA_COMMAND) $(TRACE_COMPILER_START) $(UID_TC) && \ |
315b0aa777bd
Make TC fail when there is an error. This is hypothetical in this version but the next version of the TC is in testing.
timothy.murphy@nokia.com
parents:
3
diff
changeset
|
70 |
$(GNUMD5SUM) $(TRACE_SOURCE_LIST) > $(TRACE_MARKER) && \ |
315b0aa777bd
Make TC fail when there is an error. This is hypothetical in this version but the next version of the TC is in testing.
timothy.murphy@nokia.com
parents:
3
diff
changeset
|
71 |
{ $(GNUCAT) $(TRACE_SOURCE_LIST) ; true ; } \ |
3 | 72 |
$(call endrule,tracecompile) |
73 |
endef |
|
74 |
||
75 |
$(eval $(trace_compile)) |
|
76 |
||
77 |
$(eval $(call GenerateStandardCleanTarget, $(TRACE_PATH)/tracebuilder.cache $(TRACE_MARKER) $(TRACE_SOURCE_LIST),,)) |
|
78 |
||
79 |
# End sanity guard |
|
80 |
endif |
|
81 |
||
82 |
$(eval $(call GenerateStandardCleanTarget,$(TRACE_HEADERS),,)) |
|
83 |
||
84 |
else |
|
85 |
# Indicate to following parts of the FLM that we actually won't run |
|
86 |
# trace compiler so they can set dependencies accordingly. |
|
87 |
USE_TRACE_COMPILER:= |
|
88 |
endif |
|
89 |