diff options
Diffstat (limited to 'lib/compilers/win32.js')
-rw-r--r-- | lib/compilers/win32.js | 2 |
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; |