Skip to content

Commit 07b2293

Browse files
committed
lr-stella - fix building on GCC v8 (on buster)
C++20 changes were added in 7a85faef which broke compatibility with GCC 8. GCC 10 compatibility was removed a few commits later in a8a23f61 Fix to commit 2d57f9e0 (last building on GCC 8) on GCC < 11
1 parent 5b9e221 commit 07b2293

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scriptmodules/libretrocores/lr-stella.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ rp_module_repo="git https://github.com/stella-emu/stella.git master :_get_commit
1717
rp_module_section="exp"
1818

1919
function _get_commit_lr-stella() {
20-
# GCC 11 is required after fd35ce62
20+
# GCC 11 is required after 2d57f9e0
2121
if [[ "$__gcc_version" -lt 11 ]]; then
22-
echo "fd35ce62"
22+
echo "2d57f9e0"
2323
fi
2424
}
2525

0 commit comments

Comments
 (0)