nasm

sudo apt install nasm

64bit:

nasm -f elf64 test.asm

ld -s -o test test.o

-----------------------------------------------------------------

32bit:

nasm -f elf32 test.asm

ld -m elf_i386 -s -o test test.o

原文地址:https://www.cnblogs.com/xpylovely/p/11202101.html