1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gccのオプションまとめ(随時更新)

Last updated at Posted at 2019-08-25

gccのオプションを忘れてしまうのでまとめた(随時更新).

GCCとは

GCCGNU Compiler Collectionの略.
GCCのコマンドが gcc.
GNUプロジェクトによって開発されており, 様々なプログラミング言語のコンパイラがまとめられている.

gccのオプション

オプション 説明
-dumpversion バージョンを表示する
--version バージョンを表示する(詳細に)
-v バージョンを表示する(より詳細に)
-o <file_name> 生成されるプログラムの名前を指定する( a.out 以外にできる)
-Wall 一般的な警告オプションが全てオンになる
-O, -O1 最適化する(数字が大きくなるほど最適化レベルが上がる)
-O2 最適化する(特に思うところがないならこれを指定する)
-O3 最適化する
--help ヘルプの表示
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?