We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b7e919 commit 1695318Copy full SHA for 1695318
get-dependencies.sh
@@ -91,6 +91,12 @@ else
91
pacman -Syu --noconfirm vulkan-freedreno vulkan-panfrost
92
fi
93
94
+# fix build failing with new version of boost
95
+# /usr/include/boost/async_pipe.hpp is gone on boos-t1.88. not sure if intended or a bug
96
+if [ "$(uname -m)" = 'x86_64' ]; then
97
+ wget 'https://archive.archlinux.org/packages/b/boost/boost-1.87.0-3-x86_64.pkg.tar.zst' -O ./boost.pkg.tar.zst
98
+ wget 'https://archive.archlinux.org/packages/b/boost-libs/boost-libs-1.87.0-3-x86_64.pkg.tar.zst' -O ./boost-libs.pkg.tar.zst
99
+fi
100
101
echo "Installing debloated pckages..."
102
echo "---------------------------------------------------------------"
0 commit comments