Skip to content

Commit

Permalink
add gcc on archlinux
Browse files Browse the repository at this point in the history
  • Loading branch information
jhheider authored and mxcl committed Dec 15, 2023
1 parent 2217ece commit 62a6675
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ _install_pre_reqs() {
elif test -f /etc/fedora-release; then
$SUDO yum --assumeyes install libatomic
elif test -f /etc/arch-release; then
$SUDO pacman --noconfirm -Sy gcc-libs libc++ libatomic_ops libxcrypt-compat
# installing gcc isn't my favorite thing, but even clang depends on it
# on archlinux. it provides libgcc. since we use it for testing, the risk
# to our builds is very low.
$SUDO pacman --noconfirm -Sy gcc libc++ libatomic_ops libxcrypt-compat
fi
}

Expand Down

0 comments on commit 62a6675

Please sign in to comment.