回答編集履歴
1
不要なコマンドラインオプションを削除
answer
CHANGED
@@ -100,7 +100,7 @@
|
|
100
100
|
```
|
101
101
|
test01.asm はnasmとgccコマンドで、以下のようにアセンブル〜リンクします。
|
102
102
|
```
|
103
|
-
$ nasm -
|
103
|
+
$ nasm -f elf -o test01.o test01.asm
|
104
104
|
|
105
105
|
$ gcc -o test01 test01.o
|
106
106
|
|