1

我有两个具有相同 C 代码的文件。我正在编译一个使用 Make 和一个直接使用 GCC ( gcc NAME.c -o NAME)。

在 GCC 编译的程序中,所有 fprintf 语句都可以正常工作。在 Make 编译的程序中,只有 if 语句中的 fprintf 语句有效。其他的不打印任何东西。我一直无法弄清楚为什么。

代码是:

#include <stdio.h>                       
#include <stdlib.h>                      
#include <string.h>                      

#define BUFFER_SIZE 1000                 

int main(int argc, char ** argv) {       
    fprintf(stdout, "test\n");   
    if (argc != 2) {                     
        fprintf(stderr, "You must have one argument: filename or -h\n");
        return 1;
    }   

    if (strcmp(argv[1], "-h") == 0) {    
        fprintf(stdout, "HELP\n"); /*ADD TEXT HERE*/
    }   
    fprintf(stdout, "got to the end\n"); 
    return 0;                            
}

我的生成文件:

COMPILER = gcc
CCFLAGS = -ansi -pedantic -Wall

all: wordstat

debug:
    make DEBUG = TRUE

wordstat: wordstat.o
    $(COMPILER) $(CCFLAGS) -o wordstat wordstat.o
wordstat.o: wordstat.c
    $(COMPILER) $(CCFLAGS) wordstat.c

clean:
    rm -f wordstat *.o

GCC 之一(使用 -h 运行)输出:

changed text
HELP
got to the end

Make one 输出:

HELP

任何帮助将非常感激。

4

1 回答 1

0

您忘记了 makefile 中的 -c 选项:

.
.
.    
wordstat.o: wordstat.c  
    $(COMPILER) $(CCFLAGS) -c wordstat.c
                            ↑ - important!

否则,此行不会生成目标文件,而是生成可执行的 elf 文件 (a.out),因此可能会导致意外行为,因为您将其重新编译为 wordstat(并且它已经编译)。

于 2013-02-14T02:48:38.893 回答