同じCコードのファイルが2つあります。1つはMakeを使用して、もう1つはGCCを直接使用してコンパイルしています(gcc NAME.c -o NAME
)。
GCCでコンパイルされたプログラムでは、すべてのfprintfステートメントが正常に機能します。Make-compiledプログラムでは、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;
}
私のmakefile:
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 1(-hで実行)の出力:
changed text
HELP
got to the end
Make oneの出力:
HELP
どんな助けでも大歓迎です。