“未定义的主要引用”与main在单独的脚本/规则中

时间:2015-01-14 23:16:54

标签: c linux gcc makefile

这可能是makefile error: undefined reference to mainUndefined reference in main Makefile或其他几个的重复。 crc64和getWord都支持mainProg文件,其中包含我的main函数。当我尝试运行我的make文件时,我收到以下有关crc64.o规则的编译错误。在c文件中,我有这篇文章Creating your own header file in C中列出的include语句和头文件,所以我不应该将与头文件链接相关的链接错误。

错误: gcc -g -Wall -std=c99 crc64.o -o crc64 /usr/lib/gcc/x86_64-linux-gnu/4.8/../../../x86_64-linux-gnu/crt1.o: In function ``_start': (.text+0x20): undefined reference to ``main' collect2: error: ld returned 1 exit status
生成文件

CC=gcc
COPTS=-g -Wall -std=c99
ALL=crc64 getWord mainProg
all: $(ALL)

crc64: crc64.o
   $(CC) $(COPTS) $^ -o $@
getWord: getWord.o
   $(CC) $(COPTS) $^ -o $@
mainProg: getWord.o crc64.o mainProg.o 
   $(CC) $(COPTS) $^ -o $@
crc64.o: crc64.c crc64.h
getWord.o: getWord.c getWord.h
mainProg.o: mainProg.c getWord.h crc64.h
.c.o:
   $(CC) -c $(COPTS) $<

2 个答案:

答案 0 :(得分:7)

您正在编译crc64getWord,就好像它们是可执行文件一样。因此,他们需要main功能。

只需删除这两个目标即可。你不需要它们。

另请参阅@ mafso的评论:您应该使用CFLAGS COPTS的{​​{1}},以确保相关的implicit rules选择相同的选项。

答案 1 :(得分:0)

The following makefile would (probably) be just what your project needs
note: be sure to replace '<tab>' with the tab character


CC=gcc

COPTS := -g -Wall -Wextra -Wpedantic -std=c99

LOPTS := -g

TARGET := mainProg

SRCS := $(wildcard:*.c)
OBJS := $(SRCS:.c=.o)
HDRS := $(SRCS:.c=.h)

.PHONY: all

all: ${TARGET} 

${TARGET}: $(OBJS)
<tab>$(CC) $(COPTS) $^ -o $@

.c.o: #{HDRS}
<tab>$(CC) -c $(COPTS) -o $^ $<