diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2022-08-11 01:20:10 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2022-08-11 01:20:10 +0200 |
commit | b1638b692bb9081b3ac76f09500d4b10ceb5392f (patch) | |
tree | de5cc0da328594387e6c8dc3796f65ed65d885b5 /extra/Configs/Config.in | |
parent | 3e14288eaaf62124d090b5225665632e1fe5d47c (diff) |
fix ARCH_NATIVE_BIT for aarch64
Patch suggested by Thomas Petazzoni and tested by me.
Reported-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
Diffstat (limited to 'extra/Configs/Config.in')
-rw-r--r-- | extra/Configs/Config.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 7d7d374c3..e0905e956 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -145,6 +145,26 @@ config TARGET_xtensa endchoice +config TARGET_LDSO_NAME + string + default "ld64-uClibc" if TARGET_ia64 + default "ld64-uClibc" if TARGET_powerpc64 + default "ld64-uClibc" if TARGET_sparc64 + default "ld64-uClibc" if TARGET_x86_64 + default "ld64-uClibc" if TARGET_kvx + default "ld64-uClibc" if CONFIG_MIPS_N64_ABI + default "ld-uClibc" + +config TARGET_ARCH_BITS + int + default 64 if TARGET_aarch64 + default 64 if TARGET_ia64 + default 64 if TARGET_powerpc64 + default 64 if TARGET_sparc64 + default 64 if TARGET_x86_64 + default 64 if TARGET_kvx + default 64 if CONFIG_MIPS_N64_ABI + default 32 menu "Target Architecture Features and Options" |