Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Help future-proof GCC/Clang unified build options
The YAML uses a single `CXXFLAGS` for GCC and Clang flags, which is mostly okay because they tend to support the same flags... but sometimes GCC and Clang differ So added `-Wno-unknown-warning -Wno-unknown-warning-option`... the first is GCC's spelling and seems to ignore only `-Wno-xxx` negative flags, the second is Clang's spelling and seems to also ignore `-Wxxx` flags, and using them both seems to work to make GCC and Clang ignore also each other's no-warning options (which is either meta or a sweet irony) HT: @DyXel thanks for hsutter#916 (comment)
- Loading branch information