diff options
Diffstat (limited to 'lib/compilers/sdcc.js')
-rw-r--r-- | lib/compilers/sdcc.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/compilers/sdcc.js b/lib/compilers/sdcc.js index 97e84f7fb..6f1b352f3 100644 --- a/lib/compilers/sdcc.js +++ b/lib/compilers/sdcc.js @@ -25,6 +25,8 @@ const GccCompiler = require('./gcc'); class SdccCompiler extends GccCompiler { + static get key() { return 'sdcc'; } + optionsForFilter(filters, outputFilename) { let options = ['-o', this.filename(outputFilename)]; if (!filters.binary) options = options.concat('-S'); |