Problem with dmd 2.068 Win 32

Martin Nowak via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Tue Aug 11 08:18:30 PDT 2015


On Tuesday, 11 August 2015 at 15:04:29 UTC, MGW wrote:
> Hi!
>
> My project has an error link:
>
> Error 42: Symbol Undefined 
> _D6object9Exception6__ctorMFNaNbNfAyaAyakC6object9ThrowableZC9Exception
>
> On dmd 2.067.* everything gathered without mistakes. Where to 
> look for a mistake?

Try ddemangle (part of the distribution).

ddemangle
_D6object9Exception6__ctorMFNaNbNfAyaAyakC6object9ThrowableZC9Exception

->

pure nothrow @safe Exception 
object.Exception.__ctor(immutable(char)[], immutable(char)[], 
uint, object.Throwable)

In the current release @nogc was added.
https://github.com/D-Programming-Language/druntime/blob/v2.068.0/src/object.d#L1614

You either have a wrong import paths (check which dmd.conf is 
used with 'dmd -v non_existent') or a stable object_.di file.


More information about the Digitalmars-d-learn mailing list