Skip to content

Commit 1695318

Browse files
authored
fix build with a hack™ (#47)
1 parent 0b7e919 commit 1695318

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

get-dependencies.sh

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,12 @@ else
9191
pacman -Syu --noconfirm vulkan-freedreno vulkan-panfrost
9292
fi
9393

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
94100

95101
echo "Installing debloated pckages..."
96102
echo "---------------------------------------------------------------"

0 commit comments

Comments
 (0)