Skip to content

Commit

Permalink
Add boost for building GDB in build_gdb.sh #58
Browse files Browse the repository at this point in the history
  • Loading branch information
rohanrhu authored May 31, 2024
1 parent 3650253 commit 8ee83b9
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions build_gdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,9 @@ case $OS in
echo
sleep 1
pacman -Sy
pacman -q -S --needed --noconfirm zlib python mpfr xz guile expat\
gcc make automake gmp wget
pacman -q -S --needed --noconfirm \
zlib python mpfr xz guile expat \
gcc make automake gmp wget boost

if [[ $? -ne 0 ]]; then
dependencyInstallationFailed
Expand All @@ -110,10 +111,11 @@ case $OS in
echo
sleep 1
apt update
apt install -q -y gcc g++ make libgmp10 libgmp-dev\
expat libexpat1 libexpat1-dev guile-3.0 guile-3.0-dev\
lzma lzma-dev libmpfr-dev python3 zlib1g-dev zlib1g\
libpython3-dev texi2html texinfo
apt install -q -y \
gcc g++ make libgmp10 libgmp-dev \
expat libexpat1 libexpat1-dev guile-3.0 guile-3.0-dev \
lzma lzma-dev libmpfr-dev python3 zlib1g-dev zlib1g \
libpython3-dev texi2html texinfo libboost-all-dev

if [[ $? -ne 0 ]]; then
dependencyInstallationFailed
Expand All @@ -131,10 +133,11 @@ case $OS in
echo
sleep 1
apt update
apt install -q -y wget tar xz-utils gcc g++ make libgmp-dev\
libexpat1 libexpat1-dev guile-3.0 guile-3.0-dev guile-3.0-libs\
texinfo lzma-dev liblzma5 libmpfr-dev libmpfr6 libmpfrc++-dev\
python3 python3-distutils python3-dev zlib1g zlib1g-dev
apt install -q -y \
wget tar xz-utils gcc g++ make libgmp-dev \
libexpat1 libexpat1-dev guile-3.0 guile-3.0-dev guile-3.0-libs \
texinfo lzma-dev liblzma5 libmpfr-dev libmpfr6 libmpfrc++-dev \
python3 python3-distutils python3-dev zlib1g zlib1g-dev libboost-all-dev

if [[ $? -ne 0 ]]; then
dependencyInstallationFailed
Expand Down

0 comments on commit 8ee83b9

Please sign in to comment.