タグ

gccに関するnoderのブックマーク (4)

  • TCC : Tiny C Compiler

    News [Note: I am no longer working on TCC. Check the mailing list to get up to date information.] Features SMALL! You can compile and execute C code everywhere, for example on rescue disks (about 100KB for x86 TCC executable, including C preprocessor, C compiler, assembler and linker). FAST! tcc generates x86 code. No byte code overhead. Compile, assemble and link several times faster than GCC. UN

  • GCC 4.5 リリース - kikairoya’s diary

    GCC 4.5 がリリースされました。 リリースノートの日語訳です。 Caveats 注意 GCC now requires the MPC library in order to build. See the prerequisites page for version requirements. GCCのビルドにはMPCが(訳注:従来のGMP,MPFRに加えて)必要です。必要なバージョンはprereqのページを参照してください。 Support for a number of older systems and recently unmaintained or untested target ports of GCC has been declared obsolete in GCC 4.5. Unless there is activity to revive them, the

    GCC 4.5 リリース - kikairoya’s diary
  • 猫科研究所 - 今更MinGW/MSYS 2009.06 index

    科研究所では2008年の春に今更MinGW2008を書いたが、2009年6月現在では大分内容が古くなっている。特にメインターゲットであるffmpegやx264がgcc4系列でのビルドを想定するようになり、MinGWのCurrentである3.4.5も古くなってきた。 MinGW/MSYSを使用するだけなら、MinGW科研究所パックは最新に更新しているのでこれを使用すればよいが、その構築方法はa000に対応するものを執筆して以来、明文化してこなかった。この記事の執筆時点で最新であるa003はa000に比べかなり別物と化しているので、ここで2009年バージョンとして再度執筆したいと思う。以前は"今更MinGW"の記事が先にあり、研パックを作成したが、今回は逆に研パックが元ネタである。 なお、2008年版に比べると今回はライブラリが増えていることもあり、分量が大きくなりすぎるため、内容は2

  • Cry's Blog

    以下のコードは ill-formed である.その理由を述べなさい. void f() {} template<typename T, typename... Types> auto f(T &&, Types &&... args) -> decltype(f(args...)) { return f(args...); } int main() { f(0, 1); } $ mkdir test $ tar cavf test.tar.gz test test/ $ file test.tar.gz test.tar.gz: gzip compressed data, from Unix, last modified: Thu Mar 29 10:46:53 2012 $ rmdir test/ $ tar xavf test.tar.gz test/ $ mkdir test $ t

    Cry's Blog
  • 1