Cannot compile program with DMD built from source

Minas Mina via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Wed Mar 9 08:16:14 PST 2016


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");
}


More information about the Digitalmars-d-learn mailing list