-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SWEB no longer compiles with GCC 13 #292
Comments
STABS is already deprecated since at least 12 afaik? (Which already caused SWEB compilation to fail due to Werror) Haven't tested with GCC 13, but those problems should be fixed by #287 by switching to DWARF and replacing the ustl. |
That sounds great! The quick fix with ustl is mainly stated here for completeness and for students of the current semester that develop on Arch, Fedora, or OpenSUSE Tumbleweed, which will probably get GCC 13 soon. |
Fix compilation on GCC 13 IAIK#292
I created a PR with a fix for the builtin in the meantime |
GCC 13 will break SWEB again: GCC 13 Changelog
(this breaks some debug info stuff still used by x86_32 and arm targets; this would require porting over to DWARF debug info, if STABS is still used there)
__is_convertible
as a builtin(this breaks
<ustl/uttraits.h>
, but is easily fixed by using the code path already used for clang)Tested with GCC snapshot builds from here: https://jwakely.github.io/pkg-gcc-latest/
The text was updated successfully, but these errors were encountered: