summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuri Konotopov <ykonotopov@gnome.org>2019-05-06 18:25:24 +0400
committerAndreas Sturmlechner <asturm@gentoo.org>2019-05-08 19:03:36 +0200
commit43f4fcf7220a6525b517454af455d9512b356fde (patch)
tree2b463c3c6fcca19f40e51d80dafd26cee8269d64 /games-emulation/pcsx2
parentgames-emulation/pcsx2: append -mxsave compiler flag with gcc >= 8.2 (diff)
downloadgentoo-43f4fcf7220a6525b517454af455d9512b356fde.tar.gz
gentoo-43f4fcf7220a6525b517454af455d9512b356fde.tar.bz2
gentoo-43f4fcf7220a6525b517454af455d9512b356fde.zip
games-emulation/pcsx2: drop check for old gcc version
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'games-emulation/pcsx2')
-rw-r--r--games-emulation/pcsx2/pcsx2-9999.ebuild4
1 files changed, 0 insertions, 4 deletions
diff --git a/games-emulation/pcsx2/pcsx2-9999.ebuild b/games-emulation/pcsx2/pcsx2-9999.ebuild
index f287474f5059..5526d71d9d27 100644
--- a/games-emulation/pcsx2/pcsx2-9999.ebuild
+++ b/games-emulation/pcsx2/pcsx2-9999.ebuild
@@ -42,10 +42,6 @@ DEPEND="${RDEPEND}
pkg_setup() {
if [[ ${MERGE_TYPE} != binary && $(tc-getCC) == *gcc* ]]; then
- if [[ $(gcc-major-version) -lt 4 || $(gcc-major-version) == 4 && $(gcc-minor-version) -lt 8 ]] ; then
- die "${PN} does not compile with gcc less than 4.8"
- fi
-
# -mxsave flag is needed when GCC >= 8.2 is used
# https://bugs.gentoo.org/685156
if [[ $(gcc-major-version) -gt 8 || $(gcc-major-version) == 8 && $(gcc-minor-version) -ge 2 ]]; then