aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/win32.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/win32.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/win32.js')
-rw-r--r--lib/compilers/win32.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/win32.js b/lib/compilers/win32.js
index 220fcf952..3c06bbbe0 100644
--- a/lib/compilers/win32.js
+++ b/lib/compilers/win32.js
@@ -163,7 +163,7 @@ export class Win32Compiler extends BaseCompiler {
options.env['INCLUDE'] = this.compiler.includePath;
}
if (this.compiler.libPath) {
- options.env['LIB'] = this.compiler.libPath;
+ options.env['LIB'] = this.compiler.libPath.join(';');
}
for (const [env, to] of this.compiler.envVars) {
options.env[env] = to;