We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
gcc
1 parent 2217ece commit 62a6675Copy full SHA for 62a6675
installer.sh
@@ -38,7 +38,10 @@ _install_pre_reqs() {
38
elif test -f /etc/fedora-release; then
39
$SUDO yum --assumeyes install libatomic
40
elif test -f /etc/arch-release; then
41
- $SUDO pacman --noconfirm -Sy gcc-libs libc++ libatomic_ops libxcrypt-compat
+ # installing gcc isn't my favorite thing, but even clang depends on it
42
+ # on archlinux. it provides libgcc. since we use it for testing, the risk
43
+ # to our builds is very low.
44
+ $SUDO pacman --noconfirm -Sy gcc libc++ libatomic_ops libxcrypt-compat
45
fi
46
}
47
0 commit comments