diff options
author | Danil Yarantsev <tiberiumk12@gmail.com> | 2020-10-09 00:58:48 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-08 23:58:48 +0200 |
commit | e1ab9d11326a1cdbd9a3433c50072aa8a55bb381 (patch) | |
tree | 8dc7fa13a2230feb262f391a118f12b0d98afecb /lib/compilers/nim.js | |
parent | 62902ddd53902f68a632dca3f2038703b096706a (diff) | |
download | compiler-explorer-e1ab9d11326a1cdbd9a3433c50072aa8a55bb381.tar.gz compiler-explorer-e1ab9d11326a1cdbd9a3433c50072aa8a55bb381.zip |
Enable debugging info for Nim by default (#2266)
Diffstat (limited to 'lib/compilers/nim.js')
-rw-r--r-- | lib/compilers/nim.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/nim.js b/lib/compilers/nim.js index cc1225e2b..d0124db61 100644 --- a/lib/compilers/nim.js +++ b/lib/compilers/nim.js @@ -53,6 +53,7 @@ export class NimCompiler extends BaseCompiler { optionsForFilter(filters, outputFilename) { return [ + '--debugger:native', // debugging info '-o:' + outputFilename, //output file, only for js mode '--nolinking', //disable linking, only compile to nimcache '--nimcache:' + this.cacheDir(outputFilename), //output folder for the nimcache |