Conversation
digarok
commented
Jul 23, 2026
Owner
- Replace removed QRegExp with QRegularExpression
- Use value-returning QLabel::pixmap() (Qt6 dropped the pointer form)
- endl -> Qt::endl; drop AA_EnableHighDpiScaling (always on in Qt6)
- buckshot.pro: require C++17, drop macOS 10.8 target, scope -no-pie to Linux
- CI: current runners, install-qt-action@v4 (Qt 6.8 LTS), checkout@v4, softprops/action-gh-release@v2 instead of deprecated release actions
- package_linux.sh: linuxdeployqt continuous build with new-glibc/no-FUSE flags, add libxcb-cursor0 runtime dep for Qt6 xcb
- Replace removed QRegExp with QRegularExpression - Use value-returning QLabel::pixmap() (Qt6 dropped the pointer form) - endl -> Qt::endl; drop AA_EnableHighDpiScaling (always on in Qt6) - buckshot.pro: require C++17, drop macOS 10.8 target, scope -no-pie to Linux - CI: current runners, install-qt-action@v4 (Qt 6.8 LTS), checkout@v4, softprops/action-gh-release@v2 instead of deprecated release actions - package_linux.sh: linuxdeployqt continuous build with new-glibc/no-FUSE flags, add libxcb-cursor0 runtime dep for Qt6 xcb Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Qt 6.8.3 fails to compile under Apple Clang 17 (implicit __yield in qyieldcpu.h, QTBUG-135402); the fix is only in patch releases not available via aqtinstall. Qt 6.11 also matches local development. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Qt changed the Windows repo layout starting with 6.11 (per-toolchain subdirs like qt6_6111_msvc2022_64), which no released aqtinstall understands yet. Qt 6.10 uses the old layout on all platforms and still includes the Apple Clang 17 __yield fix (landed in 6.9.1). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
All installable Qt releases (through 6.11) hit __has_builtin(__yield) first in qyieldcpu.h and call it undeclared, which Apple Clang 17+ rejects. Force-include arm_acle.h to provide the declaration, as the compiler diagnostic suggests. Upstream reordered the checks to prefer __builtin_arm_yield in qtbase dev; drop this once CI uses a Qt with that fix. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.