comparison experiments/qemu_vexpress_a9/make.sh @ 340:c7cc54c0dfdf devel

Test featurebranch
author Windel Bouwman
date Sun, 23 Feb 2014 16:24:01 +0100
parents
children 2a970e7270e2
comparison
equal deleted inserted replaced
339:6ee17c4dd6b8 340:c7cc54c0dfdf
1 #!/bin/bash
2
3
4 TARGET=arm-none-eabi
5 MCPU=arm926ej-s
6
7 python make_image.py
8 $TARGET-as -mcpu=$MCPU -g startup.s -o startup.o
9 $TARGET-gcc -c -g -mcpu=$MCPU -marm main.c -nostdlib -o main.o
10 $TARGET-gcc -c -g -mcpu=$MCPU -marm display.c -nostdlib -o disp.o
11 $TARGET-gcc -c -g -mcpu=$MCPU -marm image.c -nostdlib -o img.o
12 $TARGET-ld -g -T layout.ld main.o startup.o disp.o img.o -o test.elf
13 $TARGET-objcopy -O binary test.elf test.bin
14
15