Loose-Info.com
Last Update 2021/12/09
TOP - 各種テスト - gcc - -MG オプション

-MG
-M、-MMオプション使用時に、ヘッダファイルが存在しない場合でもエラー無しで依存関係リストを出力

テスト概要

-MGオプション無し、および-MGオプションを使用した場合の出力例

実行環境

GCC-8.2.0
GNU C Library 2.28
GNU Binutils 2.31.1


コード例・出力内容中の表記

・実行例中の太字表記部分は、コマンドなどの入力された文字列を示します。
・「」や「...」の着色省略表記は、 実際のソースコードや出力内容などを省略加工した部分を示します。

使用ファイル

sample.h
#ifndef SAMPLE_H #define SAMPLE_H #include "func.h" #endif /* SAMPLE_H */

sample.c
#include <stdio.h> #include "sample.h" int main(void) { sampFunc(); printf("sample.c\n"); return 0; }

func.h
#ifndef FUNC_H #define FUNC_H void sampFunc(void); #endif /* FUNC_H */

func.c
#include "func.h" void sampFunc(void) { }

動作テスト

事前に「func.h」のファイル名を「_func.h」へ変更
-rw-r--r-- 1 ****** ******** 44 *** ** **:** func.c -rw-r--r-- 1 ****** ******** 74 *** ** **:** _func.h -rw-r--r-- 1 ****** ******** 109 *** ** **:** sample.c -rw-r--r-- 1 ****** ******** 77 *** ** **:** sample.h

-MGオプション無しで実行
$ gcc -M sample.c In file included from sample.c:2: sample.h:4:10: fatal error: func.h: No such file or directory #include "func.h" ^~~~~~~~ compilation terminated. $ ファイルが存在しないためエラーが発生

-MGオプションを使用して実行
$ gcc -M -MG sample.c sample.o: sample.c /usr/include/stdc-predef.h /usr/include/stdio.h \ /usr/include/bits/libc-header-start.h /usr/include/features.h \ /usr/include/sys/cdefs.h /usr/include/bits/wordsize.h \ /usr/include/bits/long-double.h /usr/include/gnu/stubs.h \ /usr/include/gnu/stubs-64.h \ /usr/lib/gcc/x86_64-pc-linux-gnu/8.2.0/include/stddef.h \ /usr/lib/gcc/x86_64-pc-linux-gnu/8.2.0/include/stdarg.h \ /usr/include/bits/types.h /usr/include/bits/typesizes.h \ /usr/include/bits/types/__fpos_t.h /usr/include/bits/types/__mbstate_t.h \ /usr/include/bits/types/__fpos64_t.h /usr/include/bits/types/__FILE.h \ /usr/include/bits/types/FILE.h /usr/include/bits/types/struct_FILE.h \ /usr/include/bits/stdio_lim.h /usr/include/bits/sys_errlist.h sample.h \ func.h $ ファイルが存在しない場合でもエラー無しで終了 リストの出力には#includeにより定義されたファイル名「func.h」