On Sunday, 28 September 2014 at 15:36:17 UTC, Marc Schütz wrote:
However, I can't reproduce it with DMD master on Linux, it
works for me as intended.
My fault. I was too clever and call the program through a wrapper
to rdmd I call rdmd-dev containing
#!/usr/bin/env bash
# See also:
http://forum.dlang.org/thread/qvznmjdmdvkyyrkhb...@forum.dlang.org
if type ddemangle &> /dev/null; then
exec rdmd -L--export-dynamic -color=on -g -gs -debug $* 2>&1
| ddemangle
else
exec rdmd -L--export-dynamic -color=on -g -gs -debug $* 2>&1
fi
The piping to ddemangle messed things up...
Thanks anyway.