comparison examples/qemu_a9_hello/build.xml @ 385:d056b552d3f4

Made better use of layout
author Windel Bouwman
date Thu, 01 May 2014 14:03:12 +0200
parents 9667d78ba79e
children
comparison
equal deleted inserted replaced
384:94f5b719ad0b 385:d056b552d3f4
2 <project name="HelloA9" default="hello"> 2 <project name="HelloA9" default="hello">
3 3
4 <target name="hello"> 4 <target name="hello">
5 <assemble source="startup_a9.asm" target="arm" output="start.o" /> 5 <assemble source="startup_a9.asm" target="arm" output="start.o" />
6 <compile target="arm" sources='hello.c3' output="hello.o" /> 6 <compile target="arm" sources='hello.c3' output="hello.o" />
7 <link objects="start.o;hello.o" output="hello.bin" layout="qemu.mmap" /> 7 <link objects="start.o;hello.o" output="hello.o"
8 target="arm"
9 layout="qemu.mmap" />
10 <objcopy
11 objectfile="hello.o"
12 imagename="flash"
13 output="hello.bin" />
8 </target> 14 </target>
9 </project> 15 </project>
10 16