author | ShabeR@UK-SHABER |
Thu, 16 Apr 2009 12:14:09 +0100 | |
changeset 63 | f5604d0e720a |
parent 40 | 54444a2ae2db |
child 65 | 0099c046d4f3 |
permissions | -rw-r--r-- |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
1 |
<?xml version="1.0" encoding="UTF-8"?> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
2 |
<project name="SF-PLATFORM-CONFIG" xmlns:hlm="http://www.nokia.com/helium"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
3 |
<!-- location of this config --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
4 |
<dirname property="sf.platform.config.dir" file="${ant.file.SF-PLATFORM-CONFIG}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
5 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
6 |
<!-- |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
7 |
* Property defaults |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
8 |
--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
9 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
10 |
<!-- |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
11 |
TODO if needed in future |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
12 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
13 |
* Load platform specific properties. |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
14 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
15 |
--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
16 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
17 |
<!-- workaround until GenXML can merge v2.0.0 fragments --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
18 |
<target name="create-canonical-sysdef-file"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
19 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
20 |
<if> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
21 |
<!-- TODO use scripting to match this --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
22 |
<equals arg1="${sf.spec.sysdef.version}" arg2="1.4.0" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
23 |
<then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
24 |
<echo message="Using System Definition v1.4.0 "/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
25 |
<runtarget target="compile.create-canonical-sysdef-file"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
26 |
</then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
27 |
<else> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
28 |
<runtarget target="preprocess-sysdef-files"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
29 |
<echo message="Exporting preprocessed System Definition"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
30 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
31 |
<!-- TODO use better method to export or wait for GenXML fix?--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
32 |
<copy file="${build.output.dir}\build\input\0000000000000001_system_definition.xml" |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
33 |
tofile="${canonical.sysdef.file}" failonerror="true" verbose="true"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
34 |
</else> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
35 |
</if> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
36 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
37 |
</target> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
38 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
39 |
<!-- |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
40 |
== Name: PREPROCESS-SYSDEF-FILES |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
41 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
42 |
== Desc: Override of default target in order to deal with symbian os |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
43 |
== system_definition.xml that does not have /sf source prefix |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
44 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
45 |
== TODO get this moved as a Helium core target? |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
46 |
--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
47 |
<target name="preprocess-sysdef-files"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
48 |
<mkdir dir="${build.output.dir}/build/input"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
49 |
<delete verbose="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
50 |
<fileset dir="${build.output.dir}/build/input/" includes="**"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
51 |
</delete> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
52 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
53 |
<for param="file"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
54 |
<resources refid="system.definition.files"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
55 |
<sequential> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
56 |
<copy todir="${build.output.dir}/build/input" verbose="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
57 |
<fileset file="@{file}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
58 |
<filterchain> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
59 |
<replaceregex pattern="bldFile="os" replace="bldFile="sf\\\\os" flags="gi"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
60 |
<replaceregex pattern="mrp="os" replace="mrp="sf\\\\os" flags="gi"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
61 |
<replaceregex pattern="bldFile="mw" replace="bldFile="sf\\\\mw" flags="gi"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
62 |
<replaceregex pattern="mrp="mw" replace="mrp="sf\\\\mw" flags="gi"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
63 |
<replaceregex pattern="bldFile="app" replace="bldFile="sf\\\\app" flags="gi"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
64 |
<replaceregex pattern="mrp="app" replace="mrp="sf\\\\app" flags="gi"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
65 |
<expandproperties/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
66 |
</filterchain> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
67 |
<mapper> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
68 |
<scriptmapper language="jep" src="${helium.dir}/tools/common/jep/unique_filename.jep"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
69 |
</mapper> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
70 |
</copy> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
71 |
</sequential> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
72 |
</for> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
73 |
</target> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
74 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
75 |
<target name="generate-layers"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
76 |
<echo message="canno-file:${canonical.sysdef.file}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
77 |
<echo message="raptor-filters:raptor_${sysdef.configuration}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
78 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
79 |
<!-- split builds currently generate layer sysdef from original --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
80 |
<if><istrue value="${sf.spec.splitbuild}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
81 |
<then> |
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
82 |
<hlm:compileGenxmlFilterMacro xmlns:hlm="http://www.nokia.com/helium" input="${canonical.sysdef.file}" filter="raptor_${sysdef.configuration}" output="${build.output.dir}/build/canonical_system_definition_${sysdef.configuration}_temp.xml"/> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
83 |
</then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
84 |
<else> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
85 |
<!-- but all we want is a sysdef with the config name appended, so just copy it --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
86 |
<echo message="INFO: skip genxml and copy sysdef to sysdef+config name"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
87 |
<copy file="${canonical.sysdef.file}" tofile="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}_temp.xml"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
88 |
</else> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
89 |
</if> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
90 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
91 |
<copy file="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}_temp.xml" tofile="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}.xml"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
92 |
<filterchain> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
93 |
<linecontainsregexp negate="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
94 |
<regexp pattern="^\s*$"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
95 |
</linecontainsregexp> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
96 |
</filterchain> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
97 |
</copy> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
98 |
<delete file="${build.drive}/output/build/canonical_system_definition_${sysdef.configuration}_temp.xml"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
99 |
</target> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
100 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
101 |
<!-- |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
102 |
== Name: SF-COMPILE |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
103 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
104 |
== Desc: Override of common sf-compile target defined in |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
105 |
== common\build.xml |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
106 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
107 |
== os build will be skipped if sf.spec.os.skipbuild=true |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
108 |
== s60 build will be skipped if sf.spec.s60.skipbuild=true |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
109 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
110 |
--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
111 |
<target name="sf-compile"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
112 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
113 |
<!-- TODO clean up to single target once genxml v2.0.0 merge is fixed --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
114 |
<if><istrue value="${sf.spec.splitbuild}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
115 |
<then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
116 |
<if><istrue value="${sf.spec.os.skipbuild}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
117 |
<then><echo message="Skipping OS build"/></then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
118 |
<else><runtarget target="sf-os-compile"/></else></if> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
119 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
120 |
<if><istrue value="${sf.spec.s60.skipbuild}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
121 |
<then><echo message="Skipping S60 build"/></then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
122 |
<else><runtarget target="sf-s60-compile"/></else></if> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
123 |
</then> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
124 |
<else> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
125 |
<!-- TODO targets for single sysdef build --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
126 |
<runtarget target="sf-os-compile"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
127 |
</else> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
128 |
</if> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
129 |
</target> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
130 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
131 |
<!-- |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
132 |
== Name: SF-OS-COMPILE |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
133 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
134 |
== Desc: Compile OS part of build using the spec defined in: |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
135 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
136 |
== - job_props.ant.xml |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
137 |
== - job_refs.ant.xml |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
138 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
139 |
--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
140 |
<target name="sf-os-compile"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
141 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
142 |
<hlm:argSet id="sbs.tools2.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
143 |
<hlm:arg name="config" value="tools2_rel" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
144 |
<hlm:arg name="singlejob" value="false" /> |
40 | 145 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
146 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
147 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
148 |
<hlm:argSet id="sbs.tools2.clean.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
149 |
<hlm:arg name="config" value="tools2_rel" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
150 |
<hlm:arg name="singlejob" value="false" /> |
40 | 151 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
152 |
<hlm:arg name="command" value="CLEAN" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
153 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
154 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
155 |
<hlm:argSet id="sbs.tools.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
156 |
<hlm:arg name="config" value="tools_rel" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
157 |
<hlm:arg name="singlejob" value="true" /> |
40 | 158 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
159 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
160 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
161 |
<hlm:argSet id="sbs.tools.clean.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
162 |
<hlm:arg name="config" value="tools_rel" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
163 |
<hlm:arg name="singlejob" value="true" /> |
40 | 164 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
165 |
<hlm:arg name="command" value="CLEAN" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
166 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
167 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
168 |
<hlm:argSet id="sbs.main.sbs.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
169 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
40 | 170 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
171 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
172 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
173 |
<hlm:argSet id="sbs.main.clean.sbs.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
174 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
40 | 175 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
176 |
<hlm:arg name="command" value="CLEAN" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
177 |
</hlm:argSet> |
40 | 178 |
|
179 |
<hlm:argSet id="sbs.main.what.sbs.var"> |
|
180 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
|
181 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
|
182 |
<hlm:arg name="command" value="WHAT" /> |
|
183 |
</hlm:argSet> |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
184 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
185 |
<hlm:sbsMakeOptions engine="gmake" id="sbs.toolsbuild.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
186 |
<hlm:sbsMakeOptions engine="gmake" id="sbs.fullbuild.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
187 |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
188 |
<!-- generate baseline dir list to allow delta creation --> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
189 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
190 |
<param name="sf.list.name" value="baseline"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
191 |
</antcall> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
192 |
|
40 | 193 |
<!-- OS what --> |
194 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
|
195 |
<param name="build.system" value="${sf.spec.build.system}" /> |
|
196 |
<param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" /> |
|
197 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
|
198 |
<param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/> |
|
199 |
<reference refid="sbs.main.what.sbs.var" torefid="sbs.var" /> |
|
200 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
|
201 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
|
202 |
</antcall> |
|
203 |
||
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
204 |
<!-- OS clean main build --> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
205 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
206 |
<param name="build.system" value="${sf.spec.build.system}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
207 |
<param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
208 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
209 |
<param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/> |
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
210 |
<reference refid="sbs.main.clean.sbs.var" torefid="sbs.var" /> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
211 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
212 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
213 |
</antcall> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
214 |
|
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
215 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
216 |
<param name="sf.list.name" value="post-clean"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
217 |
</antcall> |
40 | 218 |
|
219 |
<!-- what has been cleaned from baseline PDK by sos model --> |
|
220 |
<antcall target="sf-delta-dir" inheritAll="false"> |
|
221 |
<param name="sf.list_a.name" value="baseline"/> |
|
222 |
<param name="sf.list_b.name" value="post-clean"/> |
|
223 |
</antcall> |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
224 |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
225 |
<!-- OS tools2 build first--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
226 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
227 |
<param name="build.system" value="${sf.spec.build.system}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
228 |
<param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
229 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
230 |
<param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
231 |
<reference refid="sbs.tools2.var" torefid="sbs.var" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
232 |
<reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
233 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
234 |
</antcall> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
235 |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
236 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
237 |
<param name="sf.list.name" value="post-build-tools2"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
238 |
</antcall> |
40 | 239 |
|
240 |
||
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
241 |
<!-- OS tools build after tools2 --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
242 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
243 |
<param name="build.system" value="${sf.spec.build.system}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
244 |
<param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
245 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
246 |
<param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
247 |
<reference refid="sbs.tools.var" torefid="sbs.var" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
248 |
<reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
249 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
250 |
</antcall> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
251 |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
252 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
253 |
<param name="sf.list.name" value="post-build-tools"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
254 |
</antcall> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
255 |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
256 |
<!-- OS main build --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
257 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
258 |
<param name="build.system" value="${sf.spec.build.system}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
259 |
<param name="compile.sysdef.dtd.stub" value="${sf.spec.os.sysdef.dtd}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
260 |
<param name="sysdef.configurations.list" value="${sf.spec.os.sysdef.clean.configurations.list}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
261 |
<param name="sf.spec.sysdef.version" value ="${sf.spec.os.sysdef.version}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
262 |
<reference refid="sbs.main.sbs.var" torefid="sbs.var" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
263 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
264 |
<reference refid="sf.spec.os.system.definition.files" torefid="system.definition.files" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
265 |
</antcall> |
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
266 |
|
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
267 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
268 |
<param name="sf.list.name" value="post-build-main"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
269 |
</antcall> |
40 | 270 |
|
271 |
<!-- what has been built in tools2+tools+main --> |
|
272 |
<antcall target="sf-delta-dir" inheritAll="false"> |
|
273 |
<param name="sf.list_a.name" value="post-clean"/> |
|
274 |
<param name="sf.list_b.name" value="post-build-main"/> |
|
275 |
</antcall> |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
276 |
</target> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
277 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
278 |
<!-- |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
279 |
== Name: SF-S60-COMPILE |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
280 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
281 |
== Desc: Compile S60 part of build using the spec defined in: |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
282 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
283 |
== - job_props.ant.xml |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
284 |
== - job_refs.ant.xml |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
285 |
== |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
286 |
--> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
287 |
<target name="sf-s60-compile"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
288 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
289 |
<hlm:argSet id="sbs.tools.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
290 |
<hlm:arg name="config" value="${sf.spec.sbs.tools.config}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
291 |
<hlm:arg name="singlejob" value="true" /> |
40 | 292 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
293 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
294 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
295 |
<hlm:argSet id="sbs.tools.clean.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
296 |
<hlm:arg name="config" value="${sf.spec.sbs.tools.config}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
297 |
<hlm:arg name="singlejob" value="true" /> |
40 | 298 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
299 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
300 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
301 |
<hlm:argSet id="sbs.main.sbs.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
302 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
40 | 303 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
304 |
</hlm:argSet> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
305 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
306 |
<hlm:argSet id="sbs.main.clean.sbs.var"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
307 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
40 | 308 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
309 |
<hlm:arg name="command" value="CLEAN" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
310 |
</hlm:argSet> |
40 | 311 |
|
312 |
<hlm:argSet id="sbs.main.what.sbs.var"> |
|
313 |
<hlm:arg name="config" value="${sf.spec.sbs.config}" /> |
|
314 |
<hlm:arg name="enable-filter" value="${sf.spec.logs.raptorfilter.enable}" /> |
|
315 |
<hlm:arg name="command" value="WHAT" /> |
|
316 |
</hlm:argSet> |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
317 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
318 |
<hlm:sbsMakeOptions engine="gmake" id="sbs.toolsbuild.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
319 |
<hlm:sbsMakeOptions engine="gmake" id="sbs.fullbuild.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
320 |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
321 |
<antcall target="sf-list-dir" inheritAll="false"> |
40 | 322 |
<param name="sf.list.name" value="s60-baseline"/> |
323 |
</antcall> |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
324 |
|
40 | 325 |
<!-- s60 what --> |
326 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
|
327 |
<param name="build.system" value="${sf.spec.build.system}" /> |
|
328 |
<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" /> |
|
329 |
<param name="sf.spec.sysdef.version" value="${sf.spec.s60.sysdef.version}"/> |
|
330 |
<reference refid="sbs.main.what.sbs.var" torefid="sbs.var" /> |
|
331 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
|
332 |
<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" /> |
|
333 |
</antcall> |
|
334 |
||
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
335 |
<!-- s60 clean main build --> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
336 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
337 |
<param name="build.system" value="${sf.spec.build.system}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
338 |
<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
339 |
<param name="sf.spec.sysdef.version" value="${sf.spec.s60.sysdef.version}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
340 |
<reference refid="sbs.main.clean.sbs.var" torefid="sbs.var" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
341 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
342 |
<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
343 |
</antcall> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
344 |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
345 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
346 |
<param name="sf.list.name" value="post-s60-clean"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
347 |
</antcall> |
40 | 348 |
|
349 |
<!-- what has been cleaned from baseline PDK by s60 model --> |
|
350 |
<antcall target="sf-delta-dir" inheritAll="false"> |
|
351 |
<param name="sf.list_a.name" value="s60-baseline"/> |
|
352 |
<param name="sf.list_b.name" value="post-s60-clean"/> |
|
353 |
</antcall> |
|
354 |
||
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
355 |
|
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
356 |
<!-- s60 tools build --> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
357 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
358 |
<param name="build.system" value="${sf.spec.build.system}" /> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
359 |
<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" /> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
360 |
<param name="sf.spec.sysdef.version" value ="${sf.spec.s60.sysdef.version}"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
361 |
<reference refid="sbs.tools.var" torefid="sbs.var" /> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
362 |
<reference refid="sbs.toolsbuild.options" torefid="sbs.make.options" /> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
363 |
<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" /> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
364 |
</antcall> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
365 |
|
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
366 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
367 |
<param name="sf.list.name" value="post-s60-build-tools"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
368 |
</antcall> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
369 |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
370 |
<!-- s60 main build --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
371 |
<antcall target="compile-main" inheritAll="false" inheritRefs="true"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
372 |
<param name="build.system" value="${sf.spec.build.system}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
373 |
<param name="sysdef.configurations.list" value="${sf.spec.s60.sysdef.clean.configurations.list}" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
374 |
<param name="sf.spec.sysdef.version" value="${sf.spec.s60.sysdef.version}"/> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
375 |
<reference refid="sbs.main.sbs.var" torefid="sbs.var" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
376 |
<reference refid="sbs.fullbuild.options" torefid="sbs.make.options" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
377 |
<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
378 |
</antcall> |
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
379 |
|
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
380 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
381 |
<param name="sf.list.name" value="post-s60-build-main"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
382 |
</antcall> |
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
383 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
384 |
<!-- s60 postbuild bldmelast using ebs --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
385 |
<antcall target="compile-main" inheritAll="false"> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
386 |
<param name="build.system" value="ebs" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
387 |
<param name="sysdef.configurations.list" value="S60_bldmelast" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
388 |
<reference refid="sf.spec.s60.system.definition.files" torefid="system.definition.files" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
389 |
</antcall> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
390 |
|
39
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
391 |
<antcall target="sf-list-dir" inheritAll="false"> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
392 |
<param name="sf.list.name" value="post-s60-bldmelast"/> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
393 |
</antcall> |
9edae8fe1416
Add tools to create file tree deltas and integrate them into build f/w
ShabeR@UK-SHABER
parents:
38
diff
changeset
|
394 |
|
40 | 395 |
<!-- what has been built by tools+2+main+bldmelast --> |
396 |
<antcall target="sf-delta-dir" inheritAll="false"> |
|
397 |
<param name="sf.list_a.name" value="s60-baseline"/> |
|
398 |
<param name="sf.list_b.name" value="post-s60-bldmelast"/> |
|
399 |
</antcall> |
|
38
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
400 |
</target> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
401 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
402 |
<!-- import sf-common-config --> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
403 |
<import file="../common/build.xml" /> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
404 |
|
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
405 |
</project> |
c7be4c65f97e
Update to allow foundation model build in single step
ShabeR@UK-SHABER
parents:
36
diff
changeset
|
406 |