diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2020-01-07 01:38:59 -0800 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2020-01-07 10:38:59 +0100 |
commit | e5ae7ceaa30b165970db75dffff8e2df564fbba3 (patch) | |
tree | 2c86d6411153f0d3b40cdbab9dea9c1ce5cb7394 /compiler | |
parent | 569d4d18f85e2d9e91f2d2837f2a3a5303ae6305 (diff) | |
download | Nim-e5ae7ceaa30b165970db75dffff8e2df564fbba3.tar.gz |
[easy] --hint:link:on now shows link cmd instead of nothing (#13056)
* --hint:link:on now shows link cmd instead of nothing * update doc for --listCmd
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/extccomp.nim | 3 | ||||
-rw-r--r-- | compiler/lineinfos.nim | 2 |
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", |