forked from mfulz_github/qmk_firmware
Improve bootloader compile error message text when building without the correct optimization level.
This commit is contained in:
parent
197e2ed985
commit
91946e6d62
|
@ -54,7 +54,7 @@
|
||||||
|
|
||||||
/* Preprocessor Checks: */
|
/* Preprocessor Checks: */
|
||||||
#if !defined(__OPTIMIZE_SIZE__)
|
#if !defined(__OPTIMIZE_SIZE__)
|
||||||
#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.
|
#error This bootloader requires that it be optimize for size, not speed, to fit into the target device. Change optimization settings and try again.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
|
|
||||||
/* Preprocessor Checks: */
|
/* Preprocessor Checks: */
|
||||||
#if !defined(__OPTIMIZE_SIZE__)
|
#if !defined(__OPTIMIZE_SIZE__)
|
||||||
#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.
|
#error This bootloader requires that it be optimize for size, not speed, to fit into the target device. Change optimization settings and try again.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
|
|
|
@ -50,7 +50,7 @@
|
||||||
|
|
||||||
/* Preprocessor Checks: */
|
/* Preprocessor Checks: */
|
||||||
#if !defined(__OPTIMIZE_SIZE__)
|
#if !defined(__OPTIMIZE_SIZE__)
|
||||||
#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.
|
#error This bootloader requires that it be optimize for size, not speed, to fit into the target device. Change optimization settings and try again.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
|
|
||||||
/* Preprocessor Checks: */
|
/* Preprocessor Checks: */
|
||||||
#if !defined(__OPTIMIZE_SIZE__)
|
#if !defined(__OPTIMIZE_SIZE__)
|
||||||
#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.
|
#error This bootloader requires that it be optimize for size, not speed, to fit into the target device. Change optimization settings and try again.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
|
|
|
@ -49,7 +49,7 @@
|
||||||
|
|
||||||
/* Preprocessor Checks: */
|
/* Preprocessor Checks: */
|
||||||
#if !defined(__OPTIMIZE_SIZE__)
|
#if !defined(__OPTIMIZE_SIZE__)
|
||||||
#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.
|
#error This bootloader requires that it be optimize for size, not speed, to fit into the target device. Change optimization settings and try again.
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Macros: */
|
/* Macros: */
|
||||||
|
|
Loading…
Reference in New Issue