blob: eeafaf1b385e72e139aa3790a45ceb6c0d4bfc30 [file] [log] [blame] [raw]
import { GCCCompiler } from './gcc';
export class TenDRACompiler extends GCCCompiler {
static get key() { return 'tendra'; }
optionsForFilter(filters, outputFilename) {
let options = ['-o', this.filename(outputFilename)];
if (!filters.binary) options = options.concat('-S');
return options;
}
}