diff options
Diffstat (limited to 'compiler/nim.nim')
-rw-r--r-- | compiler/nim.nim | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/compiler/nim.nim b/compiler/nim.nim index dba5b8bc3..b48fce0b8 100644 --- a/compiler/nim.nim +++ b/compiler/nim.nim @@ -88,17 +88,19 @@ proc handleCmdLine(cache: IdentCache; conf: ConfigRef) = tccgen.run(conf, conf.arguments) if optRun in conf.globalOptions: let output = conf.absOutFile - let ex = quoteShell output case conf.cmd - of cmdCompileToJS: - execExternalProgram(conf, findNodeJs() & " " & ex & ' ' & conf.arguments) + of cmdCompileToBackend: + var cmdPrefix = "" + case conf.backend + of backendC, backendCpp, backendObjc: discard + of backendJs: cmdPrefix = findNodeJs() & " " + else: doAssert false, $conf.backend + execExternalProgram(conf, cmdPrefix & output.quoteShell & ' ' & conf.arguments) of cmdDoc, cmdRst2html: if conf.arguments.len > 0: # reserved for future use rawMessage(conf, errGenerated, "'$1 cannot handle arguments" % [$conf.cmd]) openDefaultBrowser($output) - of cmdCompileToC, cmdCompileToCpp, cmdCompileToOC: - execExternalProgram(conf, ex & ' ' & conf.arguments) else: # support as needed rawMessage(conf, errGenerated, "'$1 cannot handle --run" % [$conf.cmd]) |