diff options
Diffstat (limited to 'lib/compilers/ldc.js')
-rw-r--r-- | lib/compilers/ldc.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/ldc.js b/lib/compilers/ldc.js index 8e27790a3..23685156a 100644 --- a/lib/compilers/ldc.js +++ b/lib/compilers/ldc.js @@ -47,7 +47,7 @@ export class LDCCompiler extends BaseCompiler { } optionsForFilter(filters, outputFilename) { - let options = ['-g', '-of', this.filename(outputFilename)]; + let options = ['-gline-tables-only', '-of', this.filename(outputFilename)]; if (filters.intel && !filters.binary) options = options.concat('-x86-asm-syntax=intel'); if (!filters.binary) options = options.concat('-output-s'); return options; |