root@beaglebone:~# gcc test.c -o test
root@beaglebone:~# ls
Desktop test test.c test.c~
root@beaglebone:~# file test
test: ELF 32-bit LSB executable, ARM, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.16, not stripped
root@beaglebone:~# ./test
执行测试程序的时候切记执行./test ./表示当前目录的文件。 因为搜索路径windows,linux不同, windows不带./也行,windows路径搜索是从当面目录开始,而linux是从系统目录开始,最后才是当前路径。
|