On Wednesday, 9 March 2016 at 16:13:38 UTC, Minas Mina wrote:
Hello, I have followed the instructions here
(http://wiki.dlang.org/Starting_as_a_Contributor#POSIX) to
install DMD, druntime and phobos from source.
My platform is Ubuntu 15.10 x64.
This is the error I get:
http://pastebin.com/kWCv0ymn
Sorry I didn't explain well. All 3 components (DMD, druntime and
phobos) were built successfully. The error I posted above is when
trying to compile this code:
import std.stdio;
import std.experimental.logger;
void main()
{
auto logger = new FileLogger("log");
logger.info("test");
}