Skip to content

Commit

Permalink
Fix Ubuntu 22.04 CI build by installing libgcc-s1:i386 (#1716)
Browse files Browse the repository at this point in the history
  • Loading branch information
disconnect3d committed May 18, 2023
1 parent d7c0e2a commit 5d0e3ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.sh
Expand Up @@ -25,7 +25,7 @@ install_apt() {
if uname -m | grep x86_64 > /dev/null; then
sudo dpkg --add-architecture i386 || true
sudo apt-get update || true
sudo apt-get install -y libc6-dbg:i386 || true
sudo apt-get install -y libc6-dbg:i386 libgcc-s1:i386 || true
fi
}

Expand Down

0 comments on commit 5d0e3ec

Please sign in to comment.