author | Maciej Seroka <maciejs@symbian.org> |
Thu, 26 Aug 2010 14:03:44 +0100 | |
changeset 1230 | 0f78fc0a8217 |
parent 1170 | 6dad376b9835 |
child 1282 | 6a4e549c6310 |
permissions | -rw-r--r-- |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
2 |
<project name="SF-COMPILE" xmlns:hlm="http://www.nokia.com/helium"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
3 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
4 |
<math result="sf.spec.sbs.numberofjobs" operand1="${env.NUMBER_OF_PROCESSORS}" operation="*" operand2="2" datatype="int"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
5 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
6 |
<!-- compile specified sysdef file. called from sf-compile target in sf-platform/build.xml --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
7 |
<target name="sf-os-compile"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
8 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
9 |
<antcall target="sf-do-compile" inheritAll="false" inheritRefs="true"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
10 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
11 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
12 |
</antcall> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
13 |
</target> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
14 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
15 |
<!-- compile sbs.tools.config and sbs.config. tools built only if its not being unpacked first. |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
16 |
note: must be called from sf-os/s60-compile targets, as sys model input needed --> |
1021
1a9b749add1a
Add sf-do-compile depends on create-canonical-sysdef-file
Shabe Razvi <shaber@symbian.org>
parents:
1020
diff
changeset
|
17 |
<target name="sf-do-compile" depends="create-canonical-sysdef-file"> |
914
e4c5389160b3
Fix scan_antlogs.pl execution plus fix ConE calls to use PDT_HOME env variable
Shabe Razvi <shaber@symbian.org>
parents:
913
diff
changeset
|
18 |
<echo message="INFO Using Helium 7+ for sf-do-compile"/> |
1014
5eec172ee719
1. Run exports post-qmake to ensure exports from generated bld.infs
Shabe Razvi <shaber@symbian.org>
parents:
975
diff
changeset
|
19 |
|
1020
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
20 |
<!-- explicitly run qmake once, as iterative build will repeat the step. if qmake is not unpacked already, then this step is skipped --> |
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
21 |
<antcall target="run-qmake" inheritAll="false" inheritRefs="true"> |
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
22 |
<param name="qmake.enabled" value="true"/> |
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
23 |
<param name="sysdef.configuration" value="${sysdef.configurations.list}"/> |
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
24 |
</antcall> |
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
25 |
|
1014
5eec172ee719
1. Run exports post-qmake to ensure exports from generated bld.infs
Shabe Razvi <shaber@symbian.org>
parents:
975
diff
changeset
|
26 |
<!-- perform initial exports --> |
1015
d059f7d92065
Ensure inheritRefs is set to true
Shabe Razvi <shaber@symbian.org>
parents:
1014
diff
changeset
|
27 |
<antcall target="sf-do-full-export" inheritAll="false" inheritRefs="true"> |
1014
5eec172ee719
1. Run exports post-qmake to ensure exports from generated bld.infs
Shabe Razvi <shaber@symbian.org>
parents:
975
diff
changeset
|
28 |
<param name="sf.export.stage.name" value="full_export"/> |
5eec172ee719
1. Run exports post-qmake to ensure exports from generated bld.infs
Shabe Razvi <shaber@symbian.org>
parents:
975
diff
changeset
|
29 |
</antcall> |
1048
f3a459ab2cfe
Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents:
1021
diff
changeset
|
30 |
|
f3a459ab2cfe
Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents:
1021
diff
changeset
|
31 |
<!-- explicitly run qmake second time to allow -configure options to be applied --> |
f3a459ab2cfe
Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents:
1021
diff
changeset
|
32 |
<antcall target="run-qmake" inheritAll="false" inheritRefs="true"> |
f3a459ab2cfe
Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents:
1021
diff
changeset
|
33 |
<param name="qmake.enabled" value="true"/> |
f3a459ab2cfe
Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents:
1021
diff
changeset
|
34 |
<param name="sysdef.configuration" value="${sysdef.configurations.list}"/> |
f3a459ab2cfe
Run qmake after exports too, to allow -configure options to be applied
Shabe Razvi <shaber@symbian.org>
parents:
1021
diff
changeset
|
35 |
</antcall> |
1014
5eec172ee719
1. Run exports post-qmake to ensure exports from generated bld.infs
Shabe Razvi <shaber@symbian.org>
parents:
975
diff
changeset
|
36 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
37 |
<if> <!-- If tools baseline unpack has not been specified, or its not a "fast" build then try to build them --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
38 |
<or> |
1101
9485f8e9a74c
Fix toolsbaseline build logic
Shabe Razvi <shaber@symbian.org>
parents:
1100
diff
changeset
|
39 |
<isfalse value="${sf.spec.toolsbaseline.enable}"/> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
40 |
<isfalse value="${sf.os.compile.fast}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
41 |
</or> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
42 |
<then> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
43 |
<echo message="INFO Building tools, unpack is not specified"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
44 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
45 |
<!-- sf.spec.sbs.tools.config param used. do-target-build will decide to build sequentially/together --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
46 |
<antcall target="sf-do-target-compile" inheritAll="false" inheritRefs="true"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
47 |
<param name="i.sf.spec.sbs.config" value="${sf.spec.sbs.tools.config}" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
48 |
</antcall> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
49 |
</then> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
50 |
<else> |
1101
9485f8e9a74c
Fix toolsbaseline build logic
Shabe Razvi <shaber@symbian.org>
parents:
1100
diff
changeset
|
51 |
<echo message="INFO Skipping tools build, tools were unpacked from ${sf.spec.toolsbaseline.location}"/> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
52 |
</else> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
53 |
</if> |
1020
bc818b5bb6d9
Simplify compilation by requiring a prebuilt qmake, which will generate bld.infs first.
Shabe Razvi <shaber@symbian.org>
parents:
1017
diff
changeset
|
54 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
55 |
<!-- sf.spec.sbs.config param used. do-target-build will decide to build sequentially/together --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
56 |
<antcall target="sf-do-target-compile" inheritAll="false" inheritRefs="true"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
57 |
<param name="i.sf.spec.sbs.config" value="${sf.spec.sbs.config}" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
58 |
</antcall> |
917
ebd555518364
Move copying of System Model to after compile-main
Shabe Razvi <shaber@symbian.org>
parents:
916
diff
changeset
|
59 |
|
ebd555518364
Move copying of System Model to after compile-main
Shabe Razvi <shaber@symbian.org>
parents:
916
diff
changeset
|
60 |
<!-- Export model to BOM, as generate-layers target is no longer called from compile-main target --> |
1100
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
61 |
<!-- Name of file in BOM should always be system_model.xml, so that it can be predictably re-used again --> |
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
62 |
<copy file="${build.drive}/output/build/canonical_system_definition_${sysdef.configurations.list}.xml" tofile="${build.log.dir}/BOM/system_model.xml"/> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
63 |
</target> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
64 |
|
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
65 |
<!-- perform export only first to assist when parallel makefile parsing --> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
66 |
<target name="sf-do-full-export"> |
1100
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
67 |
|
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
68 |
<!-- turn comma separated list into sbs friendly -c list, and _ separated list for friendly log names --> |
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
69 |
<propertyregex property="i.sf.spec.sbs.config.expanded" override="true" input="${sf.spec.sbs.config}" regexp="(,)" replace=" -c " defaultValue="${sf.spec.sbs.config}" global="true" casesensitive="false"/> |
1101
9485f8e9a74c
Fix toolsbaseline build logic
Shabe Razvi <shaber@symbian.org>
parents:
1100
diff
changeset
|
70 |
<propertyregex property="i.sf.spec.sbs.tools.config.expanded" override="true" input="${sf.spec.sbs.tools.config}" regexp="(,)" replace=" -c " defaultValue="${sf.spec.sbs.tools.config}" global="true" casesensitive="false"/> |
1100
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
71 |
|
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
72 |
<hlm:sbsinput id="sf.export"> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
73 |
<sbsOptions> |
1100
561033b10e0f
Major rework to enable rebuilds of the platform from single sf-build call
Shabe Razvi <shaber@symbian.org>
parents:
1048
diff
changeset
|
74 |
<arg line="-c ${i.sf.spec.sbs.config.expanded} -c ${i.sf.spec.sbs.tools.config.expanded}"/> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
75 |
<arg line="-k" /> |
940
5d6e2c958c66
Include -j option for sf-do-full-export target
Shabe Razvi <shaber@symbian.org>
parents:
939
diff
changeset
|
76 |
<arg line="-j ${sf.spec.sbs.numberofjobs}"/> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
77 |
<arg line="-t ${sf.spec.sbs.retry.limit}"/> |
1109
cae69bccf0cc
Output all generated makefiles into compile subdir - to cleanup number of generated files in output\logs
Shabe Razvi <shaber@symbian.org>
parents:
1104
diff
changeset
|
78 |
<arg name="--logfile" value="${build.drive}/output/logs/${build.id}_${sf.spec.os.sysdef.clean.configurations.list}_compile_${sf.export.stage.name}.log" /> |
1014
5eec172ee719
1. Run exports post-qmake to ensure exports from generated bld.infs
Shabe Razvi <shaber@symbian.org>
parents:
975
diff
changeset
|
79 |
<arg name="--makefile" value="${compile.log.dir}/${build.id}_${sf.spec.os.sysdef.clean.configurations.list}_compile_${sf.export.stage.name}_Makefile" /> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
80 |
<arg line="--export-only"/> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
81 |
</sbsOptions> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
82 |
</hlm:sbsinput> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
83 |
|
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
84 |
<!-- call helium's compile-main target using the sbsInput args defined above --> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
85 |
<echo message="INFO Full export for all targets"/> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
86 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
87 |
<param name="build.system" value="${sf.spec.build.system}" /> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
88 |
<param name="sbs.inputs.list" value="sf.export"/> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
89 |
</antcall> |
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
90 |
</target> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
91 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
92 |
<!-- compile sbs.config list of targets either sequentially or together --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
93 |
<target name="sf-do-target-compile"> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
94 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
95 |
<if> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
96 |
<istrue value="${sf.os.compile.iterate}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
97 |
<then> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
98 |
<for list="${i.sf.spec.sbs.config}" delimiter="," param="item.sbs.splitconfig"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
99 |
<sequential> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
100 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
101 |
<!-- define sbs args, log name etc --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
102 |
<hlm:sbsinput id="sf.build"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
103 |
<sbsOptions> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
104 |
<arg line="-c @{item.sbs.splitconfig}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
105 |
<arg line="-k" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
106 |
<arg line="-j ${sf.spec.sbs.numberofjobs}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
107 |
<arg line="-t ${sf.spec.sbs.retry.limit}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
108 |
<arg line="${sf.spec.sbs.options}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
109 |
<arg name="--filters" value=""${sf.spec.sbs.filter.list}""/> |
1109
cae69bccf0cc
Output all generated makefiles into compile subdir - to cleanup number of generated files in output\logs
Shabe Razvi <shaber@symbian.org>
parents:
1104
diff
changeset
|
110 |
<arg name="--logfile" value="${build.drive}/output/logs/${build.id}_@{item.sbs.splitconfig}_${sf.spec.os.sysdef.clean.configurations.list}_compile.log" /> |
914
e4c5389160b3
Fix scan_antlogs.pl execution plus fix ConE calls to use PDT_HOME env variable
Shabe Razvi <shaber@symbian.org>
parents:
913
diff
changeset
|
111 |
<arg name="--makefile" value="${compile.log.dir}/${build.id}_@{item.sbs.splitconfig}_${sf.spec.os.sysdef.clean.configurations.list}_Makefile" /> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
112 |
<arg line="--noexport"/> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
113 |
</sbsOptions> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
114 |
</hlm:sbsinput> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
115 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
116 |
<!-- call helium's compile-main target using the sbsInput args defined above --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
117 |
<echo message="INFO Iterative compile building target: @{item.sbs.splitconfig}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
118 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
119 |
<param name="build.system" value="${sf.spec.build.system}" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
120 |
<param name="sbs.inputs.list" value="sf.build"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
121 |
</antcall> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
122 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
123 |
</sequential> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
124 |
</for> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
125 |
</then> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
126 |
<else> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
127 |
<!-- turn comma separated list into sbs friendly -c list, and _ separated list for friendly log names --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
128 |
<propertyregex property="i.sf.spec.sbs.config.expanded" override="true" input="${i.sf.spec.sbs.config}" regexp="(,)" replace=" -c " defaultValue="${i.sf.spec.sbs.config}" global="true" casesensitive="false"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
129 |
<propertyregex property="i.sf.spec.sbs.config.expanded.logname" override="true" input="${i.sf.spec.sbs.config}" regexp="(,)" replace="_" defaultValue="${i.sf.spec.sbs.config}" global="true" casesensitive="false"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
130 |
<echo message="INFO Target : ${i.sf.spec.sbs.config.expanded}"/> |
914
e4c5389160b3
Fix scan_antlogs.pl execution plus fix ConE calls to use PDT_HOME env variable
Shabe Razvi <shaber@symbian.org>
parents:
913
diff
changeset
|
131 |
<echo message="INFO Logname: ${i.sf.spec.sbs.config.expanded.logname} + Config: ${sf.spec.os.sysdef.clean.configurations.list}"/> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
132 |
|
914
e4c5389160b3
Fix scan_antlogs.pl execution plus fix ConE calls to use PDT_HOME env variable
Shabe Razvi <shaber@symbian.org>
parents:
913
diff
changeset
|
133 |
<!-- TODO: Make this use above compile-main call? --> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
134 |
|
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
135 |
<!-- define sbs args, log name etc --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
136 |
<hlm:sbsinput id="sf.build"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
137 |
<sbsOptions> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
138 |
<arg line="-c ${i.sf.spec.sbs.config.expanded}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
139 |
<arg line="-k" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
140 |
<arg line="-j ${sf.spec.sbs.numberofjobs}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
141 |
<arg line="-t ${sf.spec.sbs.retry.limit}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
142 |
<arg line="${sf.spec.sbs.options}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
143 |
<arg name="--filters" value=""${sf.spec.sbs.filter.list}""/> |
1109
cae69bccf0cc
Output all generated makefiles into compile subdir - to cleanup number of generated files in output\logs
Shabe Razvi <shaber@symbian.org>
parents:
1104
diff
changeset
|
144 |
<arg name="--logfile" value="${build.drive}/output/logs/${build.id}_${i.sf.spec.sbs.config.expanded.logname}_${sf.spec.os.sysdef.clean.configurations.list}_compile.log" /> |
914
e4c5389160b3
Fix scan_antlogs.pl execution plus fix ConE calls to use PDT_HOME env variable
Shabe Razvi <shaber@symbian.org>
parents:
913
diff
changeset
|
145 |
<arg name="--makefile" value="${compile.log.dir}/${build.id}_${i.sf.spec.sbs.config.expanded.logname}_${sf.spec.os.sysdef.clean.configurations.list}_Makefile" /> |
939
4dd6f1dde1fe
1) Add support for parallel makefile generation by spliting compile into two-step operation. export first, followed by compile.
Shabe Razvi <shaber@symbian.org>
parents:
917
diff
changeset
|
146 |
<arg line="--noexport"/> |
913
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
147 |
</sbsOptions> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
148 |
</hlm:sbsinput> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
149 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
150 |
<!-- call helium's compile-main target using the sbsInput args defined above --> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
151 |
<echo message="INFO Building target(s): ${i.sf.spec.sbs.config.expanded}"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
152 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
153 |
<param name="build.system" value="${sf.spec.build.system}" /> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
154 |
<param name="sbs.inputs.list" value="sf.build"/> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
155 |
</antcall> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
156 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
157 |
</else> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
158 |
</if> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
159 |
</target> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
160 |
|
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
161 |
</project> |
eeffe74cd1b2
Add initial support for Helium7 for the platform.
Shabe Razvi <shaber@symbian.org>
parents:
diff
changeset
|
162 |