-
Notifications
You must be signed in to change notification settings - Fork 17
Description
Transferred from: https://issues.dlang.org/show_bug.cgi?id=5215
Original title: Crash with empty program
@bearophile reported (2010-11-13 15:46:08 CET):
This simple wrong D2 program generates expected linker errors and then an unexpected crash on Windows:
void main();
@donc responded (2010-11-13 19:01:25 CET):
What do you mean, 'unexpected'? It complains that there's no main(). Passing an empty file does exactly the same thing.
(The annoying thing is that it makes an exe anyway, even though the exe is corrupt).
@bearophile responded (2010-11-13 19:46:45 CET):
You are right, sorry. The crash is not caused by the compiler/linker, but by the corrupt exe.
@WalterBright responded (2012-01-20 03:12:34 CET):
The linker is supposed to create an exe file, even if there are errors. This is handy for some special purposes.
@braddr responded (2012-01-20 11:19:27 CET):
What circumstances? I don't have a lot of experience with windows, but binutils ld doesn't leave broken turds when linking fails like that. I can see having a linker option to force it to leave the output alone on error, but not having that as the default behavior. Would you treat dmd leaving a .obj file around if there are syntax errors in the .d being built?
@AndrejMitrovic responded (2012-01-20 11:31:54 CET):
Optlink has a /DELEXECUTABLE flag for deleting the exe if there are linker errors, but it doesn't work (I assume because optlink creates warnings instead of errors for OPs code).
Additionally optlink creates executables even if you don't pass anything to it, e.g.:
$ link.exe creates .exeThe linker gives you warnings and creates a
.exefile. Pretty stupid behavior if you ask me. Every modern console app would display a list of arguments you can pass to it, or a sane warning instead of "OPTLINK : Warning 134: No Start Address" when you didn't pass a single file to it.
@WalterBright responded (2012-01-20 13:47:06 CET):
The special purposes are when parts of your program are missing, but you want to link and run the rest of it.
I'm not sure why /delexecutable is not working, though.