1

同じ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

どんな助けでも大歓迎です。

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 に答える