coff linking passes -DEBUG

which makes a .pdb file
This commit is contained in:
Andrew Kelley 2017-09-18 22:05:55 -04:00
parent 46ddeb0baf
commit 86eb183668

View File

@ -348,6 +348,10 @@ static void construct_linker_job_coff(LinkJob *lj) {
lj->args.append("-NOLOGO");
if (!g->strip_debug_symbols) {
lj->args.append("-DEBUG");
}
coff_append_machine_arg(g, &lj->args);
if (g->windows_subsystem_windows) {