Explicitly set -std=gnu99 (via CMAKE_C_STANDARD) for linux targets when using the bundled feature. #1480
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.
https://lwn.net/ml/all/aAtlfgZQyPsfBPKA@tucnak/
The C frontend now defaults to the GNU C23 dialect.
With the latest GCC, when using bundled and static-link features, gcc tries to compile with c23 which results in a build failure due to SDL2 using reserved keywords here
https://github.com/libsdl-org/SDL/blob/07d0f51fa292895443f563f0cbde4cb3802d87fa/src/joystick/hidapi/SDL_hidapi_steam.c#L40-L44
Here's the error log for
cargo build --features bundled,static-link