タグ

CとC++に関するskyriserのブックマーク (3)

  • GCC, the GNU Compiler Collection

    GCC, the GNU Compiler Collection The GNU Compiler Collection includes front ends for C, C++, Objective-C, Fortran, Ada, Go, and D, as well as libraries for these languages (libstdc++,...). GCC was originally written as the compiler for the GNU operating system. The GNU system was developed to be 100% free software, free in the sense that it respects the user's freedom. We strive to provide regular

    skyriser
    skyriser 2010/03/02
    GCC公式さん。
  • tips : tips/02.プログラミングなど/C言語/C言語のLinux環境.txt

    gccとかgdbとかgoogle-perftoolsとか、C言語のLinux環境関連のメモ コンパイル # バージョンを確認する gcc -dumpversion # オプションつけないでコンパイル gcc xxx.c → a.out という名前の実行ファイルが出来る。実行権限もつけてくれるようだ。 # 実行ファイル名を指定したいとき gcc -o xxx xxx.c → xxx という名前の実行ファイルが出来る # その他のオプション -Wall : 警告を全部みせる -O1 (-O)  : ゆるい最適化 -O2       : 普通の最適化 (普通はこれをつかうそうだ) -O3       : 強力な最適化 (コンパイラのバグを引き当てたりするそうだ) -g (== -g2) : デバッグ用のシンボル -g3         : マクロも展開する -g

    skyriser
    skyriser 2010/03/02
    gdbの使い方とか、ホントに基礎的な話。
  • Previous IOCCC Winners

    Winning Entries This version of the winning entries page does NOT contain brief explanations of each winning entry. You can check out the spoiler version of this page if you don't mind seeing a brief summary of each entry. There is also a spoiler summary that gives a summary description of all of the winners. 27th International Obfuscated C Code Contest (2020) index.html - 2020 overview 2020.tar.b

    Previous IOCCC Winners
    skyriser
    skyriser 2008/10/30
    すげええ。超きたねえソースコードw
  • 1