*参照元 [#b34802fe]
#backlinks

*説明 [#f13a985c]
-パス: [[gcc-8.3/gcc/main.c]]


-FIXME: これは何?
--説明
--GCC のコンパイラ本体(cc1 コマンド)の main 関数


**引数 [#g92a325c]
-int argc
--
-char **argv
--


**返り値 [#hc566a35]
-int
--


**参考 [#w03bf58c]


*実装 [#i850ac6a]
 /* We define main() to call toplev::main(), which is defined in toplev.c.
    We do this in a separate file in order to allow the language front-end
    to define a different main(), if it so desires.  */
 
 int
 main (int argc, char **argv)
 {
   toplev toplev (NULL, /* external_timer */
 		 true /* init_signals */);
 
   return toplev.main (argc, argv);
 }

-
--[[gcc-8.3/gcc/toplev]]
--[[gcc-8.3/gcc/toplev/main()]]


*コメント [#i70f3297]

トップ   編集 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS