Skip to content

Commit

Permalink
Use gcc10 on Amazon Linux 2, take two.
Browse files Browse the repository at this point in the history
  • Loading branch information
dumol committed Jun 11, 2024
1 parent 87050af commit 9e3e606
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,16 @@
# On platforms with multiple C compilers, choose by setting CC in os_quirks.sh.

# List of OS packages required for building Python/pyOpenSSL/cryptography etc.
BASE_PKGS="gcc make m4 patch unzip perl"
BASE_PKGS="make m4 patch unzip perl"
if [ "$BUILD_LIBEDIT" = "yes" ]; then
BASE_PKGS="$BASE_PKGS automake libtool"
fi
APK_PKGS="$BASE_PKGS git curl bash musl-dev linux-headers lddtree shadow \
APK_PKGS="$BASE_PKGS gcc git curl bash musl-dev linux-headers lddtree shadow \
openssh-client file unzip g++ musl-locales dejagnu"
DEB_PKGS="$BASE_PKGS tar diffutils git curl \
DEB_PKGS="$BASE_PKGS gcc tar diffutils git curl \
openssh-client libtest-simple-perl xz-utils g++ dejagnu"
RPM_PKGS="$BASE_PKGS tar diffutils git-core curl \
openssh-clients perl-Test-Simple perl-IPC-Cmd xz gcc-c++ dejagnu"
RPM_PKGS="$BASE_PKGS gcc10 tar diffutils git-core curl \
openssh-clients perl-Test-Simple perl-IPC-Cmd xz gcc10-c++ dejagnu"

# Check for OS packages required for the build.
MISSING_PACKAGES=""
Expand Down

0 comments on commit 9e3e606

Please sign in to comment.