所以,我有一个我正在处理的汇编代码的生成文件,当我尝试构建我的代码时,我得到以下输出:
Makefile:32: warning: overriding commands for target `obj'
Makefile:29: warning: ignoring old commands for target `obj'
nasm -f elf64 -g -F stabs main.asm -l spacelander .lst
nasm: error: more than one input file specified
type `nasm -h' for help
make: *** [obj] Error 1
然而,当我对此进行谷歌搜索时,这似乎是由于来自 LD 而不是 NASM 本身的链接器问题(只有 NASM 在错误中输出而不是 LD),并且我只有一个源文件打印一个简单的文本输出作为测试。在这个例子中,OP 能够执行他的代码;我的甚至不会建造。
AFAIK,我的源文件非常好,因为在我更改它之前,代码构建并运行良好,没有任何问题。我更改它的目的是为了将任何.o
文件复制到一个obj/
目录,并将目标复制到一个bin/
目录。
这个问题的原因可能是什么?我几乎可以肯定它与代码无关,是由于 Makefile 本身。
为了完整起见,我将粘贴我的 Makefile 和汇编源代码。
资源
bits 32
section [.bss]
section [.data]
; Store three lines in the same string.
; This is just for test purposes.
Title: db "------SPACE LANDER-----", 10, \
"------SPACE LANDER-----", 10, \
"------SPACE LANDER-----", 10
Len: equ $-Title
section [.text]
global _start
_start:
mov eax, 4 ; Syswrite
mov ebx, 1 ; To stdout
mov ecx, Title ; ecx stores title to print
mov edx, Len ; store offset of len in edx
int 0x80 ; call kernel, do print
exit:
mov eax, 1 ; exit
mov ebx, 0 ; return 0
int 0x80 ; call kernel, exit safely (hopefully)
生成文件
ASM := nasm
ARGS := -f
FMT := elf64
OPT := -g -F stabs
SRC := main.asm
#SRC_EXT := asm
#^unused due to suspected error causing.
OBJDIR := obj
TARGETDIR := bin
OBJ := $(addprefix $(OBJDIR)/,$(patsubst %.asm, %.o, $(wildcard *.asm)))
TARGET := spacelander
.PHONY: all clean
all: $(OBJDIR) $(TARGET)
$(OBJDIR):
mkdir $(OBJDIR)
$(OBJDIR)/%.o: $(SRC)
$(ASM) $(ARGS) $(FMT) $(OPT) $(SRC) -l $(TARGET).lst
$(TARGET): $(OBJ)
ld -o $(TARGET) $(OBJ)
clean:
@rm -f $(TARGET) $(wildcard *.o)
@rm -rf $(OBJDIR)