diff options
author | partouf <partouf@gmail.com> | 2022-10-10 13:19:25 +0200 |
---|---|---|
committer | partouf <partouf@gmail.com> | 2022-10-10 13:19:25 +0200 |
commit | 9f8d2cddd8b6ca5ade03d5875401ea73a6201096 (patch) | |
tree | 32e1415e7ab0a322208bdb613052229573613f35 /lib/compilers/erlang.ts | |
parent | b543993869c231a54c00936a88568240ae096173 (diff) | |
download | compiler-explorer-9f8d2cddd8b6ca5ade03d5875401ea73a6201096.tar.gz compiler-explorer-9f8d2cddd8b6ca5ade03d5875401ea73a6201096.zip |
fix erlang command line optionsgh-4449
Diffstat (limited to 'lib/compilers/erlang.ts')
-rw-r--r-- | lib/compilers/erlang.ts | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/lib/compilers/erlang.ts b/lib/compilers/erlang.ts index 0aea71a82..43872396e 100644 --- a/lib/compilers/erlang.ts +++ b/lib/compilers/erlang.ts @@ -58,16 +58,7 @@ export class ErlangCompiler extends BaseCompiler { staticLibLinks: string[], ): string[] { options.push('-input', inputFilename); - return super.orderArguments( - options, - inputFilename, - libIncludes, - libOptions, - libPaths, - libLinks, - userOptions, - staticLibLinks, - ); + return options.concat(libIncludes, libOptions, libPaths, libLinks, userOptions, staticLibLinks); } override getOutputFilename(dirPath: string, outputFilebase: string): string { |