mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 23:08:14 +00:00
style(core & legacy): buggy compiler checks
This commit is contained in:
parent
6ea4b7b211
commit
e982181148
@ -21,17 +21,19 @@
|
||||
#define __COMPILER_TRAITS_H__
|
||||
|
||||
/*
|
||||
* Avoid accidental build with gcc versions having broken stack protector 9.2.1 - 10.2
|
||||
* Avoid accidental build with gcc versions having broken stack protector.
|
||||
* Affected versions range 9.2.1 - 10.2
|
||||
*/
|
||||
#if defined(__GNUC__) && !defined(__llvm__)
|
||||
|
||||
#define GCC_VERSION (__GNUC__ * 10000 \
|
||||
+ __GNUC_MINOR__ * 100 \
|
||||
+ __GNUC_PATCHLEVEL__)
|
||||
#define GCC_VERSION \
|
||||
(__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
||||
|
||||
#if GCC_VERSION >= 90201 && GCC_VERSION <= 100200
|
||||
#pragma message "Only remove this GCC check if you are sure your compiler is patched or not used for production."
|
||||
#error "ARM GCC versions 9.2.1 - 10.2 have broken stack smash protector, aborting build."
|
||||
#pragma message \
|
||||
"Only remove this GCC check if you are sure your compiler is patched or not used for production."
|
||||
#error \
|
||||
"ARM GCC versions 9.2.1 - 10.2 have broken stack smash protector, aborting build."
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
@ -36,20 +36,6 @@
|
||||
#include "usb.h"
|
||||
#include "util.h"
|
||||
|
||||
/*
|
||||
* Avoid accidental build with gcc versions having broken stack protector 9.2.1 - 10.2
|
||||
*/
|
||||
#if defined(__GNUC__) && !defined(__llvm__)
|
||||
|
||||
#define GCC_VERSION (__GNUC__ * 10000 \
|
||||
+ __GNUC_MINOR__ * 100 \
|
||||
+ __GNUC_PATCHLEVEL__)
|
||||
|
||||
#if GCC_VERSION >= 90201 && GCC_VERSION <= 100200
|
||||
#error "ARM GCC versions 9.2.1 - 10.2 have broken stack smash protector, preventing build"
|
||||
#endif
|
||||
#endif
|
||||
|
||||
void layoutFirmwareFingerprint(const uint8_t *hash) {
|
||||
char str[4][17] = {0};
|
||||
for (int i = 0; i < 4; i++) {
|
||||
|
@ -21,19 +21,20 @@
|
||||
#define __COMPILER_TRAITS_H__
|
||||
|
||||
/*
|
||||
* Avoid accidental build with gcc versions having broken stack protector 9.2.1 - 10.2
|
||||
* Avoid accidental build with gcc versions having broken stack protector.
|
||||
* Affected versions range 9.2.1 - 10.2
|
||||
*/
|
||||
#if defined(__GNUC__) && !defined(__llvm__)
|
||||
|
||||
#define GCC_VERSION (__GNUC__ * 10000 \
|
||||
+ __GNUC_MINOR__ * 100 \
|
||||
+ __GNUC_PATCHLEVEL__)
|
||||
#define GCC_VERSION \
|
||||
(__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
||||
|
||||
#if GCC_VERSION >= 90201 && GCC_VERSION <= 100200
|
||||
#pragma message "Only remove this GCC check if you are sure your compiler is patched or not used for production."
|
||||
#error "ARM GCC versions 9.2.1 - 10.2 have broken stack smash protector, aborting build."
|
||||
#pragma message \
|
||||
"Only remove this GCC check if you are sure your compiler is patched or not used for production."
|
||||
#error \
|
||||
"ARM GCC versions 9.2.1 - 10.2 have broken stack smash protector, aborting build."
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user