On Friday, 13 September 2013 at 12:45:06 UTC, nazriel wrote:
On Friday, 13 September 2013 at 12:41:44 UTC, simendsjo wrote:
What should I do when DMD keeps crashing and doesn't give me
any output?
I'm using dmd 2.063.2 on win8.
This is all that -v gives me before crashing..
binary C:\dmd\windows\bin\dmd.exe
version v2.063.2
config C:\dmd\windows\bin\sc.ini
parse app
I've tried compiling just object files, and an exe and removed
all -debug -g etc.
Is there any way to get more verbose info from dmd?
Run it via GDB, OllyDBG, [putyourfavouritedebugerhere]
Example:
gdb /c/d/dmd2/bin/dmd.exe
gdb> r /path/to/your/code.d
Way over my head. Tried OllyDBG, but I wasn't able to set the
current working directory...