Mercurial > lcfOS
annotate examples/qemu_a9_hello/build.xml @ 398:c0d9837acde8
x86 target refactor
author | Windel Bouwman |
---|---|
date | Thu, 29 May 2014 12:13:37 +0200 |
parents | d056b552d3f4 |
children |
rev | line source |
---|---|
377 | 1 |
2 <project name="HelloA9" default="hello"> | |
3 | |
4 <target name="hello"> | |
5 <assemble source="startup_a9.asm" target="arm" output="start.o" /> | |
6 <compile target="arm" sources='hello.c3' output="hello.o" /> | |
385 | 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" /> | |
377 | 14 </target> |
15 </project> | |
16 |