mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-19 03:15:00 +00:00
compiler: Ensure __builtin_*_overflow() support
Both gcc and clang support this for a long time. Make sure the feature is present. Signed-off-by: Richard Weinberger <richard@nod.at>
This commit is contained in:
parent
35f75d2a46
commit
a29805d822
1 changed files with 7 additions and 0 deletions
|
@ -70,6 +70,13 @@ extern void __chk_io_ptr(const volatile void __iomem *);
|
|||
#error "Unknown compiler"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* At least gcc 5.1 or clang 8 are needed.
|
||||
*/
|
||||
#ifndef COMPILER_HAS_GENERIC_BUILTIN_OVERFLOW
|
||||
#error Unsupported compiler
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Some architectures need to provide custom definitions of macros provided
|
||||
* by linux/compiler-*.h, and can do so using asm/compiler.h. We include that
|
||||
|
|
Loading…
Add table
Reference in a new issue