annotate kernel/build.xml @ 381:6df89163e114

Fix section and ldr pseudo instruction
author Windel Bouwman
date Sat, 26 Apr 2014 17:41:56 +0200
parents 78c27013f02e
children d056b552d3f4
rev   line source
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
1
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
2 <project name="lcfos-kernel" default="vexpress">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
3
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
4 <property name="src" value="src" />
379
78c27013f02e Removed old recipes
Windel Bouwman
parents: 378
diff changeset
5 <property name="arch" value="arm" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
7 <target name="vexpress">
381
6df89163e114 Fix section and ldr pseudo instruction
Windel Bouwman
parents: 379
diff changeset
8 <assemble source="arch/qemu_vexpress/startup_a9.asm" target="arm" output="start.o" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
9 <compile target="arm" sources='arch/vexpressA9.c3' includes="${src}/*.c3" output="vexp.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
10 <compile target="arm" sources='${src}/*.c3' output="henkie.o" />
379
78c27013f02e Removed old recipes
Windel Bouwman
parents: 378
diff changeset
11 <link output="kernel_arm.bin" layout="arch/qemu_vexpress/vexpressA9.mmap" objects="start.o;henkie.o;vexp.o" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
12 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
13
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
14 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
15