gpt4 book ai didi

makefile - make 产生 “commands commence before first target” 错误

转载 作者:行者123 更新时间:2023-12-04 17:38:33 27 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





GNU make yields "commands commence before first target" error

(3 个回答)


6年前关闭。




我是 linux 驱动程序开发的新手。

我正在编写 helloworld 驱动程序。

这是代码:

#define MODULE
#define __KERNEL__
#include <module.h>
int init_module()
{
return 0;
}

void cleanup_module()
{
return;
}

这是生成文件:
    CC=gcc
MODFLAGS:= -O3 -Wall -DLINUX
module.o: module.c
$(CC) $(MODFLAGS) -c module.c

但是当我运行 make 命令时,我有以下内容:
makefile:3: * “命令在第一个目标之前开始”错误

怎么了?

最佳答案

从不是命令的每一行中删除 makefile 中的前导选项卡:

CC=gcc
MODFLAGS:= -O3 -Wall -DLINUX
module.o: module.c
$(CC) $(MODFLAGS) -c module.c

关于makefile - make 产生 “commands commence before first target” 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10588551/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com