gpt4 book ai didi

c - fprintf 在使用 Make 编译的 C 程序中不起作用

转载 作者:太空宇宙 更新时间:2023-11-04 04:51:19 24 4
gpt4 key购买 nike

我有两个具有相同 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

如有任何帮助,我们将不胜感激。

最佳答案

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

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

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

关于c - fprintf 在使用 Make 编译的 C 程序中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14866786/

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