From ff8aa9112a775a5fa509b0194e5d0b9f26624314 Mon Sep 17 00:00:00 2001 From: Zion Nimchuk Date: Tue, 1 Jun 2021 01:56:08 -0700 Subject: [PATCH] Bump GLIBCXX version requirement to 3.4.29 thanks to using brand new compiler features Fixes #10378 --- .ci/deploy-linux.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.ci/deploy-linux.sh b/.ci/deploy-linux.sh index d6c19a821363..286e25b9f67c 100755 --- a/.ci/deploy-linux.sh +++ b/.ci/deploy-linux.sh @@ -28,8 +28,9 @@ if [ "$DEPLOY_APPIMAGE" = "true" ]; then # This may need updating if you update the compiler or rpcs3 uses newer c++ features # See https://github.com/gcc-mirror/gcc/blob/master/libstdc%2B%2B-v3/config/abi/pre/gnu.ver # for which definitions correlate to which CXXABI version. - # Currently we target a minimum of GLIBCXX_3.4.26 and CXXABI_1.3.11 - printf "#include \n#include \nint main(){std::make_exception_ptr(0);std::pmr::get_default_resource();}" | $CXX -x c++ -std=c++2a -o ./appdir/usr/optional/checker - + # Currently we target a minimum of GLIBCXX_3.4.29 and CXXABI_1.3.11 + printf "#include \n#include \n#include \nint main(){auto x = std::stringbuf();x.get_allocator();std::make_exception_ptr(0);std::pmr::get_default_resource();}" \ + | $CXX -x c++ -std=c++2a -o ./appdir/usr/optional/checker - # Package it up and send it off ./squashfs-root/usr/bin/appimagetool "$APPDIR"