diff options
Diffstat (limited to 'compiler/extccomp.nim')
-rw-r--r-- | compiler/extccomp.nim | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index 6f8b0b197..4eb68a771 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -16,7 +16,7 @@ import lists, ropes, os, strutils, osproc, platform, condsyms, options, msgs, securehash, streams -from debuginfo import writeDebugInfo +#from debuginfo import writeDebugInfo type TSystemCC* = enum @@ -734,8 +734,8 @@ proc callCCompiler*(projectfile: string) = if not noAbsolutePaths(): if not exefile.isAbsolute(): exefile = joinPath(splitFile(projectfile).dir, exefile) - if optCDebug in gGlobalOptions: - writeDebugInfo(exefile.changeFileExt("ndb")) + #if optCDebug in gGlobalOptions: + # writeDebugInfo(exefile.changeFileExt("ndb")) exefile = quoteShell(exefile) let linkOptions = getLinkOptions() & " " & getConfigVar(cCompiler, ".options.linker") |