annotate test/bare/make.sh @ 327:61c9df5bffce

Changed emulated board to cortex a8 board
author Windel Bouwman
date Sat, 01 Feb 2014 17:21:21 +0100
parents ed6d0adaa626
children
rev   line source
324
ed6d0adaa626 Added qemu arm emulated image
Windel Bouwman
parents:
diff changeset
1
ed6d0adaa626 Added qemu arm emulated image
Windel Bouwman
parents:
diff changeset
2
327
61c9df5bffce Changed emulated board to cortex a8 board
Windel Bouwman
parents: 324
diff changeset
3 arm-none-eabi-as -mcpu=cortex-a8 -g startup.s -o startup.o
61c9df5bffce Changed emulated board to cortex a8 board
Windel Bouwman
parents: 324
diff changeset
4 arm-none-eabi-gcc -c -mcpu=cortex-a8 -g test.c -o test.o
324
ed6d0adaa626 Added qemu arm emulated image
Windel Bouwman
parents:
diff changeset
5 arm-none-eabi-ld -T test.ld test.o startup.o -o test.elf
ed6d0adaa626 Added qemu arm emulated image
Windel Bouwman
parents:
diff changeset
6 arm-none-eabi-objcopy -O binary test.elf bare.bin
ed6d0adaa626 Added qemu arm emulated image
Windel Bouwman
parents:
diff changeset
7