diff options
author | Patrick Quist <partouf@gmail.com> | 2021-11-21 23:53:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-21 23:53:43 +0100 |
commit | 2bc71691ef92c6f977cb4c7549da145ae11bd919 (patch) | |
tree | 625402951935da220b0a4dac01d9119159cc7a6b /lib/compilers | |
parent | 704a87fbd672ced5fd1bfb0ef7271f5c6fd34f38 (diff) | |
download | compiler-explorer-2bc71691ef92c6f977cb4c7549da145ae11bd919.tar.gz compiler-explorer-2bc71691ef92c6f977cb4c7549da145ae11bd919.zip |
Erlang highlight and add to amazon (#3129)gh-1298
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/erlang.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/erlang.js b/lib/compilers/erlang.js index d91da4d16..aa9ebde3f 100644 --- a/lib/compilers/erlang.js +++ b/lib/compilers/erlang.js @@ -72,7 +72,7 @@ export class ErlangCompiler extends BaseCompiler { const versionCmd = this.compilerProps(`compiler.${this.compiler.id}.runtime`); execOptions.timeoutMs = 0; // No timeout for --version. A sort of workaround for slow EFS/NFS on the prod site execOptions.ldPath = this.getSharedLibraryPathsAsLdLibraryPaths([]); - + try { return this.execCompilerCached( versionCmd, @@ -84,7 +84,7 @@ export class ErlangCompiler extends BaseCompiler { return null; } } - + getOutputFilename(dirPath, outputFilebase) { return path.join(dirPath, `${outputFilebase}.S`); } |