安装NASM $ sudo apt-get install nasm 编译 $ nasm -f elf64 test.asm 注意,elf64只适用于64位的操作系统,对于32位的修改为elf32。 链接 $ ld -s -o test test.o 运行 $ ./test 运行结果是在屏幕上打印了“Hello,world!”,到此为止,第一个汇编程序就实现了。