author | raptorbot <raptorbot@systemstesthead.symbian.intra> |
Mon, 18 Jan 2010 19:33:31 +0000 | |
branch | wip |
changeset 136 | d84e89d4dde4 |
parent 89 | 315b0aa777bd |
child 173 | 6080bce951bf |
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 |
||
28 |
$(if $(FLMDEBUG),$(info <debug>TRACE_PATH = $(TRACE_PATH)</debug>)) |
|
29 |
||
30 |
# Run trace compiler only if TRACE_PATH exists |
|
31 |
ifneq ($(TRACE_PATH),) |
|
32 |
TRACE_MARKER:=$(TRACE_MARKER_PATH)/tracecompile_$(TRACE_PRJNAME)_$(UID_TC).done |
|
33 |
TRACE_HEADERS:= |
|
34 |
||
35 |
TRACE_SOURCE_LIST:=$(TRACE_MARKER_PATH)/tracecompile_$(TRACE_PRJNAME)_$(UID_TC).sourcelist |
|
36 |
||
37 |
# 1. Append to or create the list of source files for trace compiler to process |
|
38 |
# 2. Check if the hash in trace marker remain unchanged. If not, remove marker so trace compiler will run again. |
|
39 |
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)) |
|
40 |
||
41 |
$(if $(FLMDEBUG),$(info <debug>Trace Compiler sourcelist generation output: $(X)</debug>)) |
|
42 |
||
43 |
$(TRACE_MARKER) : $(SOURCE) |
|
44 |
||
45 |
TRACE_HEADERS:=$(foreach SRC,$(SOURCE),$(TRACE_PATH)/$(basename $(notdir $(SRC)))Traces.h) |
|
46 |
||
47 |
$(TRACE_HEADERS): $(TRACE_MARKER) |
|
48 |
||
49 |
ifeq ($(GUARD_$(call sanitise,$(TRACE_MARKER))),) |
|
50 |
GUARD_$(call sanitise,$(TRACE_MARKER)):=1 |
|
51 |
||
52 |
JAVA_COMMAND:=$(SBS_JAVATC) |
|
53 |
TRACE_COMPILER_PATH:=$(EPOCROOT)/epoc32/tools |
|
54 |
TRACE_COMPILER_START:=-classpath $(TRACE_COMPILER_PATH)/tracecompiler com.nokia.tracecompiler.TraceCompiler |
|
55 |
||
56 |
||
57 |
# 1. Use pipe to send inputs to trace compiler to process |
|
58 |
# 2. Create a hash regarding to source names and put it in marker. |
|
59 |
# 3. Show source names that are processed by trace compiler |
|
60 |
define trace_compile |
|
61 |
$(TRACE_MARKER) : $(PROJECT_META) |
|
62 |
$(call startrule,tracecompile) \ |
|
63 |
( echo -en "$(TRACE_PRJNAME)\n$(PROJECT_META)\n"; \ |
|
64 |
$(GNUCAT) $(TRACE_SOURCE_LIST); \ |
|
65 |
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
|
66 |
$(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
|
67 |
$(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
|
68 |
{ $(GNUCAT) $(TRACE_SOURCE_LIST) ; true ; } \ |
3 | 69 |
$(call endrule,tracecompile) |
70 |
endef |
|
71 |
||
72 |
$(eval $(trace_compile)) |
|
73 |
||
74 |
$(eval $(call GenerateStandardCleanTarget, $(TRACE_PATH)/tracebuilder.cache $(TRACE_MARKER) $(TRACE_SOURCE_LIST),,)) |
|
75 |
||
76 |
# End sanity guard |
|
77 |
endif |
|
78 |
||
79 |
$(eval $(call GenerateStandardCleanTarget,$(TRACE_HEADERS),,)) |
|
80 |
||
81 |
else |
|
82 |
# Indicate to following parts of the FLM that we actually won't run |
|
83 |
# trace compiler so they can set dependencies accordingly. |
|
84 |
USE_TRACE_COMPILER:= |
|
85 |
endif |
|
86 |