We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
System Information Please provide the following information about your system:
Following guide to build steam-audio, I get errors with flatbuffers.
1st error: "C++ versions less than C++14 are not supported."
2nd error: flatbuffers requires > C++ 17
3rd error: -Werror=stringop-overflow warning thrown as error when building flatpacks with gcc version 14.1. Similar issue seen here
Solutions All issues can be fixed by adding these flags into dependencies.json for flatpacks
"-DCMAKE_CXX_STANDARD=17", "-DCMAKE_CXX_FLAGS=-Wno-stringop-overflow"
I'd love to make a pull request but it is something I've never done before. Let me know if I can!
The text was updated successfully, but these errors were encountered:
@Jack121298 Feel free to open a pull request.
Sorry, something went wrong.
No branches or pull requests
System Information
Please provide the following information about your system:
Following guide to build steam-audio, I get errors with flatbuffers.
1st error:
"C++ versions less than C++14 are not supported."
2nd error:
flatbuffers requires > C++ 17
3rd error:
-Werror=stringop-overflow warning thrown as error when building flatpacks with gcc version 14.1.
Similar issue seen here
Solutions
All issues can be fixed by adding these flags into dependencies.json for flatpacks
"-DCMAKE_CXX_STANDARD=17",
"-DCMAKE_CXX_FLAGS=-Wno-stringop-overflow"
I'd love to make a pull request but it is something I've never done before. Let me know if I can!
The text was updated successfully, but these errors were encountered: