aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/clean.js
diff options
context:
space:
mode:
authorPatrick Quist <partouf@gmail.com>2021-03-05 22:40:18 +0100
committerGitHub <noreply@github.com>2021-03-05 22:40:18 +0100
commit29236dd92cf2453e57f06a7cf044d38f85eaed48 (patch)
tree89b3b987bb806a8bebe3f292db33d22f3b497cb1 /lib/compilers/clean.js
parentd166b56a55c02efb50c8a74758b814ea574e9857 (diff)
downloadcompiler-explorer-29236dd92cf2453e57f06a7cf044d38f85eaed48.tar.gz
compiler-explorer-29236dd92cf2453e57f06a7cf044d38f85eaed48.zip
Attempt at refactoring to better separate ldpaths and libpaths (#2452)
* attempt at refactoring to better separate ldpaths and libpaths * fix doc * fix doc * bugfix win32 libpaths * add ldPath to getVersion query environment
Diffstat (limited to 'lib/compilers/clean.js')
-rw-r--r--lib/compilers/clean.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/clean.js b/lib/compilers/clean.js
index dd998b655..88a7d0a2d 100644
--- a/lib/compilers/clean.js
+++ b/lib/compilers/clean.js
@@ -82,7 +82,7 @@ export class CleanCompiler extends BaseCompiler {
execOptions = this.getDefaultExecOptions();
execOptions.customCwd = tmpDir;
execOptions.env.CLEANLIB = path.join(compilerPath, '../exe');
- execOptions.env.CLEANPATH = this.compiler.libPath;
+ execOptions.env.CLEANPATH = this.compiler.libPath.join(':');
options.pop();
options.push(moduleName);