view 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
line wrap: on
line source


<project name="HelloA9" default="hello">

    <target name="hello">
        <assemble source="startup_a9.asm" target="arm" output="start.o" />
        <compile target="arm" sources='hello.c3' output="hello.o" />
        <link objects="start.o;hello.o" output="hello.o"
            target="arm"
            layout="qemu.mmap" />
        <objcopy
            objectfile="hello.o"
            imagename="flash"
            output="hello.bin" />
    </target>
</project>