summary refs log tree commit diff stats
path: root/compiler/extccomp.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2016-11-08 08:36:33 +0100
committerAraq <rumpf_a@web.de>2016-11-08 08:37:15 +0100
commit72af7e68210ce9fb2701ec999795fdccd8272d41 (patch)
tree63286370f190819fff8c86a980097515dddc3b9b /compiler/extccomp.nim
parentc0b8a793159ea4c476b566267102d09ae7e6cf9d (diff)
downloadNim-72af7e68210ce9fb2701ec999795fdccd8272d41.tar.gz
use a full MD5 hash with no collision detection for proc names
Diffstat (limited to 'compiler/extccomp.nim')
-rw-r--r--compiler/extccomp.nim6
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")