Makefile NASM错误:指定了多个输入文件

时间:2012-09-28 05:37:55

标签: linux assembly makefile nasm ld

所以,我有一个汇编代码的makefile我正在处理,当我尝试构建我的代码时,我得到以下输出:

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),并且我只有一个源文件打印一个简单的文本输出一个测试。在this示例中,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)

1 个答案:

答案 0 :(得分:1)

可能是由于此命令中有额外的空格:

nasm -f elf64 -g -F stabs main.asm -l spacelander   .lst

因为在$(TARGET)的末尾有额外的空格,因为在这一行的末尾有额外的空格:

TARGET := spacelander

尝试删除这些额外的空格。