Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop the flags that are not necessary for compilation to succeed. Also switch to `-Wno-error=`. As per <https://gcc.gnu.org/onlinedocs/gcc-14.2.0/gcc/Warning-Options.html#index-Werror>: -Werror Make all warnings into errors. -Werror= Make the specified warning into an error. The specifier for a warning is appended; for example -Werror=switch turns the warnings controlled by -Wswitch into errors. This switch takes a negative form, to be used to negate -Werror for specific warnings; for example -Wno-error=switch makes -Wswitch warnings not be errors, even when -Werror is in effect.
- Loading branch information