makefile在ubuntu 14.04上失败 - 未定义的引用

时间:2015-10-24 14:07:37

标签: c linux ubuntu gcc makefile

我无法使这个Makefile工作。这是最简单的例子。以下是代码和错误:

的main.c

#include <stdio.h>
#include <stdlib.h>
#include "hello.h"

int main(){
    hello();
    return EXIT_SUCCESS;
}

的hello.c

#include<stdio.h>
#include "hello.h"

void hello(void){
    printf("Hello World\n");
}

hello.h

#ifndef _HELLO_H
#define _HELLO_H

void hello(void);

#endif

生成文件

CC=gcc -Wall -pedantic 

prog: main.o hello.o
    ${CC} -o prog main.o hello.o
main.o: main.c hello.h
    ${CC} -o main.o main.c
hello.o: hello.c hello.h
    ${CC} -o hello.o hello.c

错误:

/tmp/ccuNUbQK.o: In function `main':
main.c:(.text+0x5): undefined reference to `hello'
collect2: error: ld returned 1 exit status
make: *** [main.o] Error 1

简单写作

gcc -o prog main.c hello.c

作品。

1 个答案:

答案 0 :(得分:4)

在生成目标文件时,您忘了告诉编译器您只想要部分编译(即没有链接)。

    ${CC} -c -o xxx.o xxx.c