Does not compile under 10 #3644

This commit is contained in:
rusefillc 2021-12-02 22:28:10 -05:00
parent 57dac128ad
commit a83bff1bc9
1 changed files with 2 additions and 0 deletions

View File

@ -10,4 +10,6 @@ static constexpr auto gccVersion = (__GNUC__ * 100) + (__GNUC_MINOR__ * 10) + (
// Firmware builds require at least GCC 9.3.1
static_assert(gccVersion >= 931, "GCC compiler >= 9.3.1 required");
static_assert(gccVersion < 1000, "GCC10 not supported see https://github.com/rusefi/rusefi/labels/Gcc10");
#endif