Actions
Bug #1316
openmeson: set warning level appropriately
Start date:
04/23/2025
Due date:
% Done:
0%
Estimated time:
Description
We currently set `-Wall` as a compiler option along with the other `-W` options, then apply that to the C and C++ compiler.
Meson warns us about this each time.
Compiler for C supports arguments -Wall: YES ../meson.build:53: WARNING: Consider using the built-in warning_level option instead of using "-Wall". Compiler for C++ supports arguments -Wall: YES ../meson.build:58: WARNING: Consider using the built-in warning_level option instead of using "-Wall".
We should make the suggested change as it:
- enables users or downstreams to configure warnings as they need / desire
- reduces configure noise
- is automatically applied to supported compilers
- is the 'meson way'
Updated by Marko Lindqvist about 1 month ago
- Related to Feature #1347: CodingStyle: Update autotools options to meson ones added
Updated by Marko Lindqvist 28 days ago
There's a PR for this in https://github.com/freeciv/freeciv/pull/73
Updated by Marko Lindqvist 28 days ago
- Target version set to 3.2.0-RC1
Patch from that PR applies to main branch, but we need versions for S3_3 and S3_2 too.
Actions