2013-10-07から1日間の記事一覧

【D言語】dmdをビルドする【Ubuntu】

Ubunt 13.04環境下でdmdをソースコードからビルドしてみます。g++やgitが必要です。 $ mkdir D && cd D $ git clone https://github.com/D-Programming-Language/dmd.git $ git clone https://github.com/D-Programming-Language/druntime.git $ git clone h…

【D言語】__LINE__と__FILE__の挙動が修正される

前回は、LINEとFILEの挙動を修正するPull Requestについてでしたが、 http://codelogy.org/?p=960 最近、そのPull RequestがMergeされ、LINEとFILEの挙動が修正されました! LINEとFILEの挙動が修正されると、例えば import std.conv : to; import std.stdio…