Skip to content

Commit 16639f9

Browse files
authored
Merge pull request #1970 from swiftwasm/maxd/fix-linux-deps
Add missing packages to linux/install-dependencies.sh
2 parents 466882a + 9adbc03 commit 16639f9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

utils/webassembly/linux/install-dependencies.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ if [ $(grep RELEASE /etc/lsb-release) == "DISTRIB_RELEASE=18.04" ]; then
99
git ninja-build clang-10 python python-six \
1010
uuid-dev libicu-dev icu-devtools libbsd-dev \
1111
libedit-dev libxml2-dev libsqlite3-dev swig \
12-
libpython-dev libncurses5-dev pkg-config \
12+
libpython-dev libncurses5 libncurses5-dev pkg-config \
1313
libblocksruntime-dev libcurl4-openssl-dev \
14-
systemtap-sdt-dev tzdata rsync wget llvm-10 zip unzip
14+
make systemtap-sdt-dev tzdata rsync wget llvm-10 zip unzip
1515
sudo ln -s -f /usr/bin/clang-10 /usr/bin/clang
1616
sudo ln -s -f /usr/bin/clang++-10 /usr/bin/clang++
1717
elif [ $(grep RELEASE /etc/lsb-release) == "DISTRIB_RELEASE=20.04" ]; then
1818
sudo apt install -y \
1919
git ninja-build clang python python-six \
2020
uuid-dev libicu-dev icu-devtools libbsd-dev \
2121
libedit-dev libxml2-dev libsqlite3-dev swig \
22-
libpython2-dev libncurses5-dev pkg-config \
22+
libpython2-dev libncurses5 libncurses5-dev pkg-config \
2323
libblocksruntime-dev libcurl4-openssl-dev \
24-
systemtap-sdt-dev tzdata rsync wget llvm zip unzip
24+
make systemtap-sdt-dev tzdata rsync wget llvm zip unzip
2525
else
2626
echo "Unknown Ubuntu version"
2727
exit 1

0 commit comments

Comments
 (0)