blob: 3b7f14da296f66630886e92905ca6b8b0df798d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
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;
|