test.c 和 kernel.asm 位于文件夹 src < / em> , Makefile 位于 调试 文件夹中,就像这样:
src
test.c
kernel.asm
Debug
Makefile
所有这些文件都是非常简单的代码。但是如果我在文件夹make
中运行Debug
,我将收到以下错误:
ld -Ttext 0x30400 -o test ../Debug/kernel.o ../Debug/test.o
../Debug/test.o: In function `Print_String':
test.c:(.text+0xf): undefined reference to `printf'
有人可以告诉我为什么吗?内容如下:
的 test.c的 的
#include <stdio.h>
int m = 1;
void Print_String()
{
printf("TEST");
}
的 kernel.asm 的
extern m
extern Print_String
[section .text]
global _start
_start:
mov eax, m
call Print_String
的生成文件 的
# This Program
TARGET = test
# All Phony Targets
.PHONY : everything clean all
DIR = ..
OBJ = $(DIR)/Debug/kernel.o $(DIR)/Debug/test.o
C_FILE = $(DIR)/src/test.c
K_ASM = $(DIR)/src/kernel.asm
ASM = nasm
LD = ld
CC = gcc
CC_FLAG = -c -g
ASM_FLAG = -f elf
LD_FLAG = -Ttext 0x30400
# Default starting position
everything : $(TARGET)
clean :
rm -f $(TARGET)
all : clean everything
kernel.o : $(K_ASM)
$(ASM) $(ASM_FLAG) -o $@ $<
test : $(OBJ)
$(LD) $(LD_FLAG) -o $@ $(OBJ)
test.o : $(C_FILE)
$(CC) $(CC_FLAG) -o $@ $<
答案 0 :(得分:3)
除非您在某处拥有自己的printf
版本,否则您必须与C运行时库链接。
将选项-lc
传递给ld
命令。