File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed
Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -3435,6 +3435,7 @@ function installLinuxDepends(version) {
34353435 yield exec . exec ( `sudo ln -s /usr/include/x86_64-linux-gnu/* /usr/local/include` ) ;
34363436 yield exec . exec ( `sudo ln -sf /usr/local/bin/g++-7.3 /usr/bin/g++` ) ;
34373437 yield exec . exec ( `sudo ln -sf /usr/local/bin/gcc-7.3 /usr/bin/gcc` ) ;
3438+ process . env . LIBRARY_PATH = `/usr/lib/x86_64-linux-gnu:${ process . env . LIBRARY_PATH } ` ;
34383439 } ) ;
34393440}
34403441function installWindowsDepends ( version ) {
Original file line number Diff line number Diff line change @@ -153,6 +153,7 @@ async function installLinuxDepends(version: string): Promise<void> {
153153 await exec . exec ( `sudo ln -s /usr/include/x86_64-linux-gnu/* /usr/local/include` )
154154 await exec . exec ( `sudo ln -sf /usr/local/bin/g++-7.3 /usr/bin/g++` )
155155 await exec . exec ( `sudo ln -sf /usr/local/bin/gcc-7.3 /usr/bin/gcc` )
156+ process . env . LIBRARY_PATH = `/usr/lib/x86_64-linux-gnu:${ process . env . LIBRARY_PATH } `
156157
157158}
158159
You can’t perform that action at this time.
0 commit comments