diff options
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/snowball.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/snowball.ts b/lib/compilers/snowball.ts index 613e69276..e7321f015 100644 --- a/lib/compilers/snowball.ts +++ b/lib/compilers/snowball.ts @@ -66,13 +66,13 @@ export class SnowballCompiler extends BaseCompiler { staticLibLinks: string[], ) { return options.concat(userOptions, libIncludes, libOptions, libPaths, libLinks, staticLibLinks, [ - '-f', + '--file', this.filename(inputFilename), ]); } override optionsForFilter(filters: ParseFiltersAndOutputOptions, outputFilename: string, userOptions?: string[]) { - let options = ['build', '--silent', '-o', this.filename(outputFilename)]; + let options = ['build', '--silent', '--output', this.filename(outputFilename)]; const userRequestedEmit = _.any(unwrap(userOptions), opt => opt.includes('--emit')); if (filters.binary) { |