mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-25 01:18:54 +00:00
fix(legacy): ignore compiler check for emulator
[no changelog]
This commit is contained in:
parent
9b9f6859d6
commit
05cbda4a7a
@ -29,7 +29,7 @@
|
|||||||
#define GCC_VERSION \
|
#define GCC_VERSION \
|
||||||
(__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
(__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
||||||
|
|
||||||
#if GCC_VERSION >= 90201 && GCC_VERSION <= 100200
|
#if !EMULATOR && GCC_VERSION >= 90201 && GCC_VERSION <= 100200
|
||||||
#pragma message \
|
#pragma message \
|
||||||
"Only remove this GCC check if you are sure your compiler is patched or not used for production."
|
"Only remove this GCC check if you are sure your compiler is patched or not used for production."
|
||||||
#error \
|
#error \
|
||||||
|
Loading…
Reference in New Issue
Block a user