summary refs log tree commit diff stats
path: root/compiler
diff options
context:
space:
mode:
Diffstat (limited to 'compiler')
-rw-r--r--compiler/extccomp.nim3
-rw-r--r--compiler/lineinfos.nim2
2 files changed, 2 insertions, 3 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim
index f8b7ac150..de6c0ca3b 100644
--- a/compiler/extccomp.nim
+++ b/compiler/extccomp.nim
@@ -835,8 +835,7 @@ template tryExceptOSErrorMessage(conf: ConfigRef; errorPrefix: string = "", body
 
 proc execLinkCmd(conf: ConfigRef; linkCmd: string) =
   tryExceptOSErrorMessage(conf, "invocation of external linker program failed."):
-    execExternalProgram(conf, linkCmd,
-      if optListCmd in conf.globalOptions or conf.verbosity > 1: hintExecuting else: hintLinking)
+    execExternalProgram(conf, linkCmd, hintLinking)
 
 proc maybeRunDsymutil(conf: ConfigRef; exe: AbsoluteFile) =
   when defined(osx):
diff --git a/compiler/lineinfos.nim b/compiler/lineinfos.nim
index 479ed2f75..ae5709044 100644
--- a/compiler/lineinfos.nim
+++ b/compiler/lineinfos.nim
@@ -115,7 +115,7 @@ const
     hintName: "$1",
     hintPattern: "$1",
     hintExecuting: "$1",
-    hintLinking: "",
+    hintLinking: "$1",
     hintDependency: "$1",
     hintSource: "$1",
     hintPerformance: "$1",