blob: 3b7f14da296f66630886e92905ca6b8b0df798d3 [file] [log] [blame] [raw]
const
GccCompiler = require('./gcc');
class TenDRACompiler extends GccCompiler {
optionsForFilter(filters, outputFilename) {
let options = ['-o', this.filename(outputFilename)];
if (!filters.binary) options = options.concat('-S');
return options;
}
}
module.exports = TenDRACompiler;