annotate examples/qemu_a9_hello/build.xml @ 410:6aa9743ed362 tip

Reflect change in c3 public modifier
author Windel Bouwman
date Mon, 23 Feb 2015 21:06:04 +0100
parents d056b552d3f4
children
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="HelloA9" default="hello">
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 <target name="hello">
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
5 <assemble source="startup_a9.asm" target="arm" output="start.o" />
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
6 <compile target="arm" sources='hello.c3' output="hello.o" />
385
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
7 <link objects="start.o;hello.o" output="hello.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
8 target="arm"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
9 layout="qemu.mmap" />
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
10 <objcopy
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
11 objectfile="hello.o"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
12 imagename="flash"
d056b552d3f4 Made better use of layout
Windel Bouwman
parents: 377
diff changeset
13 output="hello.bin" />
377
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
14 </target>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
15 </project>
9667d78ba79e Switched to xml for project description
Windel Bouwman
parents:
diff changeset
16