From 88e601cee08c5093d6ce60f305cbf94161ab3596 Mon Sep 17 00:00:00 2001 From: niansa Date: Sun, 10 Mar 2024 20:32:52 +0100 Subject: [PATCH] Only install context component --- windows.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows.sh b/windows.sh index 3100ab6..328e2e7 100755 --- a/windows.sh +++ b/windows.sh @@ -66,9 +66,9 @@ echo " -- Downloading Boost" wget -q https://boostorg.jfrog.io/artifactory/main/release/1.84.0/source/boost_1_84_0.zip unzip -q *.zip rm *.zip -mv boost_* boost -cd boost +mv boost_* boost-src +cd boost-src echo " -- Bootstrapping Boost (no output due to Wine workarounds)" xvfb-run wineconsole ./bootstrap.bat clang &> /dev/null echo " -- Compiling boost" -wine ./b2.exe -j$(min $(nproc) 4) context # Limiting to 4 to avoid "Too many open files" +wine ./b2.exe -j$(min $(nproc) 2) --with-context install # Limiting to 4 to avoid "Too many open files"