diff options
| author | Dan Carpenter <[email protected]> | 2024-03-04 10:04:29 +0300 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-03-13 12:40:43 -0400 |
| commit | 0cff87c90c676d0e5c5b59553a2a982782f024bb (patch) | |
| tree | f1417067fd47105d5292c723c2df48a26007642b | |
| parent | 24c4ac842ef4cb727f380634242a3aa3bff949a5 (diff) | |
arm64: Enable CONFIG_64BIT for static analysis
In the Makefile there is a line that says this:
# the checker needs the correct machine size
CHECKFLAGS += $(if $(CONFIG_64BIT),-m64,-m32)
Set CONFIG_64BIT for ARM64 so that we pass -m64 to the static checkers
instead of -m32.
Signed-off-by: Dan Carpenter <[email protected]>
| -rw-r--r-- | arch/arm/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 85f0111fcfe..2105c1e1307 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -6,6 +6,7 @@ config SYS_ARCH config ARM64 bool + select 64BIT select PHYS_64BIT select SYS_CACHE_SHIFT_6 imply SPL_SEPARATE_BSS |
