我是依照光碟中的手冊安裝~測試編譯hello word~就出錯這樣的警告~
不過還是有編譯出執行檔~可以執行~指令arm-linux-gcc -v也是正常顯示版本~
kevin@kevin-T60:/opt/FriendlyARM/mini2440/examples/hello$ file hello
hello: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.14, not stripped
cat Makefile
CROSS=arm-linux-
all: hello
hello:
$(CROSS)gcc -o hello hello.c
clean:
@rm -vf hello *.o *~