diff options
-rw-r--r-- | compiler/options.nim | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/compiler/options.nim b/compiler/options.nim index 3a705ff8b..da01937fe 100644 --- a/compiler/options.nim +++ b/compiler/options.nim @@ -473,12 +473,16 @@ proc getOutFile*(conf: ConfigRef; filename: RelativeFile, ext: string): Absolute conf.outDir / changeFileExt(filename, ext) proc absOutFile*(conf: ConfigRef): AbsoluteFile = - conf.outDir / conf.outFile + result = conf.outDir / conf.outFile + if dirExists(result.string): + result.string.add ".out" proc prepareToWriteOutput*(conf: ConfigRef): AbsoluteFile = ## Create the output directory and returns a full path to the output file createDir conf.outDir - return conf.outDir / conf.outFile + result = conf.outDir / conf.outFile + if dirExists(result.string): + result.string.add ".out" proc getPrefixDir*(conf: ConfigRef): AbsoluteDir = ## Gets the prefix dir, usually the parent directory where the binary resides. |