Skip to content

Commit 62a6675

Browse files
jhheidermxcl
authored andcommitted
add gcc on archlinux
1 parent 2217ece commit 62a6675

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

installer.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ _install_pre_reqs() {
3838
elif test -f /etc/fedora-release; then
3939
$SUDO yum --assumeyes install libatomic
4040
elif test -f /etc/arch-release; then
41-
$SUDO pacman --noconfirm -Sy gcc-libs libc++ libatomic_ops libxcrypt-compat
41+
# 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
4245
fi
4346
}
4447

0 commit comments

Comments
 (0)