mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 08:12:06 +02:00
Provide option to avoid defining a custom version of uintptr_t.
There's a definition in stdint.h (provided by gcc) which will be more correct if available. Define CONFIG_USE_STDINT to use this feature, or USE_STDINT=1 on the 'make' commmand. This adjusts the settings for x86 and sandbox, with both have 64-bit options. Signed-off-by: Gabe Black <gabeblack@google.com> Reviewed-by: Gabe Black <gabeblack@chromium.org> Tested-by: Gabe Black <gabeblack@chromium.org> Reviewed-by: Bill Richardson <wfrichar@google.com> Rewritten to be an option, since stdint.h is often available only in glibc. Changed to preserve a clear boundary between stdint and non-stdint Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
@@ -59,6 +59,11 @@ ifdef FTRACE
|
||||
PLATFORM_CPPFLAGS += -finstrument-functions -DFTRACE
|
||||
endif
|
||||
|
||||
# Allow use of stdint.h if available
|
||||
ifneq ($(USE_STDINT),)
|
||||
PLATFORM_CPPFLAGS += -DCONFIG_USE_STDINT
|
||||
endif
|
||||
|
||||
#########################################################################
|
||||
|
||||
RELFLAGS := $(PLATFORM_RELFLAGS)
|
||||
|
Reference in New Issue
Block a user