2015/01/19

Compile and Link ARM Bare Metal Program

An Example:
  arm-linux-gnueabi-as -g startup.s -o startup.o
  arm-linux-gnueabi-gcc -c -g test.c -o test.o
  arm-linux-gnueabi-ld -T test.ld test.o startup.o -o test.elf
  arm-linux-gnueabi-objcopy -O binary test.elf test.bin

No comments:

Post a Comment

Post Code on Blogger

Simplest way to post code to blogger for me: <pre style="background: #f0f0f0; border: 1px dashed #CCCCCC; color: black;overflow-x:...