Skip to content

Commit

Permalink
games-emulation/pcsx2: [QA] drop (very) stale GCC version checks
Browse files Browse the repository at this point in the history
Signed-off-by: Sam James <[email protected]>
  • Loading branch information
thesamesam committed May 17, 2022
1 parent 04e0c80 commit b299765
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions games-emulation/pcsx2/pcsx2-1.6.0-r3.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,7 @@ pkg_setup() {
if [[ ${MERGE_TYPE} != binary && $(tc-getCC) == *gcc* ]]; then
# -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
append-flags -mxsave
fi
append-flags -mxsave
fi
}

Expand Down
4 changes: 1 addition & 3 deletions games-emulation/pcsx2/pcsx2-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,7 @@ pkg_setup() {
if [[ ${MERGE_TYPE} != binary && $(tc-getCC) == *gcc* ]]; then
# -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
append-flags -mxsave
fi
append-flags -mxsave
fi
}

Expand Down

0 comments on commit b299765

Please sign in to comment.