diff options
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/extccomp.nim | 2 | ||||
-rw-r--r-- | compiler/nim.cfg | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/compiler/extccomp.nim b/compiler/extccomp.nim index b9d0f0ff6..b115721df 100644 --- a/compiler/extccomp.nim +++ b/compiler/extccomp.nim @@ -489,7 +489,7 @@ proc addExternalFileToLink*(conf: ConfigRef; filename: AbsoluteFile) = conf.externalToLink.insert(filename.string, 0) proc execWithEcho(conf: ConfigRef; cmd: string, msg = hintExecuting): int = - rawMessage(conf, msg, cmd) + rawMessage(conf, msg, if msg == hintLinking and not(optListCmd in conf.globalOptions or conf.verbosity > 1): "" else: cmd) result = execCmd(cmd) proc execExternalProgram*(conf: ConfigRef; cmd: string, msg = hintExecuting) = diff --git a/compiler/nim.cfg b/compiler/nim.cfg index f913e76a3..a77fa84d3 100644 --- a/compiler/nim.cfg +++ b/compiler/nim.cfg @@ -1,7 +1,6 @@ # Special configuration file for the Nim project hint[XDeclaredButNotUsed]:off -hint[Link]:off define:booting define:nimcore |