mirror of https://github.com/PCSX2/pcsx2.git
GHActions:Linux: Upgrade to GCC 10
This commit is contained in:
parent
40b522b42f
commit
c615a6f6e2
|
@ -3,8 +3,8 @@
|
|||
set -e
|
||||
|
||||
if [ "${COMPILER}" = "gcc" ]; then
|
||||
export CC=gcc-8
|
||||
export CXX=g++-8
|
||||
export CC=gcc-10
|
||||
export CXX=g++-10
|
||||
else
|
||||
export CC=clang
|
||||
export CXX=clang++
|
||||
|
|
|
@ -36,10 +36,10 @@ declare -a PCSX2_PACKAGES=(
|
|||
)
|
||||
|
||||
if [ "${COMPILER}" = "gcc" ]; then
|
||||
BUILD_PACKAGES+=("g++-8-multilib")
|
||||
BUILD_PACKAGES+=("g++-10-multilib")
|
||||
else
|
||||
BUILD_PACKAGES+=("clang")
|
||||
PCSX2_PACKAGES+=("libstdc++-8-dev")
|
||||
PCSX2_PACKAGES+=("libstdc++-10-dev")
|
||||
fi
|
||||
|
||||
# - https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
|
||||
|
|
Loading…
Reference in New Issue