Hi fellas,
i read much tutorials for cross-compiling c code for arm chips. When i try it with codesourcery lite´s: gcc-none-eabi under windows (no cygwin)
arm-none-eabi-gcc -c -nostartfiles -nostdlib -o main main.c
arm-none-eabi-ld -Ttext=0x8000 -o main.elf main
arm-none-eabi-objcopy -O binary main.elf main.bin
won´t start on the board, some links and startup codes seem to miss...
Target board is AT91SAM9RL64
next i would like to compile c# (mono) code for arm architecture under windows, are there tutorials or has anybody experience with it?