GHActions:Linux: Upgrade to GCC 10

This commit is contained in:
TellowKrinkle 2021-09-04 16:23:47 -05:00 committed by refractionpcsx2
parent 40b522b42f
commit c615a6f6e2
2 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@
set -e set -e
if [ "${COMPILER}" = "gcc" ]; then if [ "${COMPILER}" = "gcc" ]; then
export CC=gcc-8 export CC=gcc-10
export CXX=g++-8 export CXX=g++-10
else else
export CC=clang export CC=clang
export CXX=clang++ export CXX=clang++

View File

@ -36,10 +36,10 @@ declare -a PCSX2_PACKAGES=(
) )
if [ "${COMPILER}" = "gcc" ]; then if [ "${COMPILER}" = "gcc" ]; then
BUILD_PACKAGES+=("g++-8-multilib") BUILD_PACKAGES+=("g++-10-multilib")
else else
BUILD_PACKAGES+=("clang") BUILD_PACKAGES+=("clang")
PCSX2_PACKAGES+=("libstdc++-8-dev") PCSX2_PACKAGES+=("libstdc++-10-dev")
fi fi
# - https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md # - https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md