Re: About demangling

2012-11-01 Thread H. S. Teoh
On Thu, Nov 01, 2012 at 08:40:23AM -0700, H. S. Teoh wrote: > On Thu, Nov 01, 2012 at 03:16:25PM +0100, Dan wrote: > > On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen > > wrote: [...] > > >We even have a tool for that: > > >https://github.com/D-Programming-Language/tools/blob/mast

Re: About demangling

2012-11-01 Thread Regan Heath
On Thu, 01 Nov 2012 17:21:29 -, H. S. Teoh wrote: On Thu, Nov 01, 2012 at 04:25:56PM -, Regan Heath wrote: On Thu, 01 Nov 2012 15:40:23 -, H. S. Teoh wrote: >On Thu, Nov 01, 2012 at 03:16:25PM +0100, Dan wrote: >>On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen

Re: About demangling

2012-11-01 Thread Regan Heath
On Thu, 01 Nov 2012 16:25:56 -, Regan Heath wrote: Adding writefln to demangle.d to debug the issue shows that args[1] is "-" and that getopt is throwing the exception "invalid UTF-8 sequence". I was wrong here, this line is the issue: stderr.writeln(e.msg); For some reason, when run

Re: About demangling

2012-11-01 Thread H. S. Teoh
On Thu, Nov 01, 2012 at 04:25:56PM -, Regan Heath wrote: > On Thu, 01 Nov 2012 15:40:23 -, H. S. Teoh > wrote: > > >On Thu, Nov 01, 2012 at 03:16:25PM +0100, Dan wrote: > >>On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen > >>wrote: > >>>On 11-10-2012 22:56, Sean Kelly wr

Re: About demangling

2012-11-01 Thread Regan Heath
On Thu, 01 Nov 2012 15:40:23 -, H. S. Teoh wrote: On Thu, Nov 01, 2012 at 03:16:25PM +0100, Dan wrote: On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen wrote: >On 11-10-2012 22:56, Sean Kelly wrote: >>On Oct 11, 2012, at 6:17 AM, Lubos Pintes >> wrote: >> >>>Hi, >>>Can s

Re: About demangling

2012-11-01 Thread Regan Heath
On Thu, 01 Nov 2012 15:40:23 -, H. S. Teoh wrote: On Thu, Nov 01, 2012 at 03:16:25PM +0100, Dan wrote: On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen wrote: >On 11-10-2012 22:56, Sean Kelly wrote: >>On Oct 11, 2012, at 6:17 AM, Lubos Pintes >> wrote: >> >>>Hi, >>>Can s

Re: About demangling

2012-11-01 Thread H. S. Teoh
On Thu, Nov 01, 2012 at 03:16:25PM +0100, Dan wrote: > On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen > wrote: > >On 11-10-2012 22:56, Sean Kelly wrote: > >>On Oct 11, 2012, at 6:17 AM, Lubos Pintes > >> wrote: > >> > >>>Hi, > >>>Can someone point me to some source with informati

Re: About demangling

2012-11-01 Thread Dan
On Thursday, 11 October 2012 at 21:04:28 UTC, Alex Rønne Petersen wrote: On 11-10-2012 22:56, Sean Kelly wrote: On Oct 11, 2012, at 6:17 AM, Lubos Pintes wrote: Hi, Can someone point me to some source with information about name demangling when compiling some D program and the famous linke

Re: About demangling

2012-10-11 Thread Alex Rønne Petersen
On 11-10-2012 22:56, Sean Kelly wrote: On Oct 11, 2012, at 6:17 AM, Lubos Pintes wrote: Hi, Can someone point me to some source with information about name demangling when compiling some D program and the famous linker error 42 appears? Filter the symbol names through core.demangle. We e

Re: About demangling

2012-10-11 Thread Sean Kelly
On Oct 11, 2012, at 6:17 AM, Lubos Pintes wrote: > Hi, > Can someone point me to some source with information about name demangling > when compiling some D program and the famous linker error 42 appears? Filter the symbol names through core.demangle.

Re: About demangling

2012-10-11 Thread Jacob Carlborg
On 2012-10-11 15:17, Lubos Pintes wrote: Hi, Can someone point me to some source with information about name demangling when compiling some D program and the famous linker error 42 appears? Thank This page contains the reference for the name mangling: http://dlang.org/abi.html -- /Jacob Carlb

About demangling

2012-10-11 Thread Lubos Pintes
Hi, Can someone point me to some source with information about name demangling when compiling some D program and the famous linker error 42 appears? Thank