我有两个具有相同 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
任何帮助将非常感激。