diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-04 18:58:42 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2024-05-04 18:59:21 +0200 |
commit | 5fa28f6a9631d6be707e99f04511dc1675eec491 (patch) | |
tree | 2120f815239d72e2bb56bed69059b29d7e0666e6 /target/config/Config.in.abi | |
parent | 6f7be8c93a8ae1df7ff984d1025c043d31146fc6 (diff) |
xtensa: preliminary support for upcoming FDPIC support in uClibc-ng
Diffstat (limited to 'target/config/Config.in.abi')
-rw-r--r-- | target/config/Config.in.abi | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/target/config/Config.in.abi b/target/config/Config.in.abi index 9995ba51d..db799f70e 100644 --- a/target/config/Config.in.abi +++ b/target/config/Config.in.abi @@ -3,6 +3,18 @@ choice prompt "ABI" +depends on ADK_TARGET_ARCH_XTENSA && ADK_TARGET_CPU_XTENSA_DC233C + +config ADK_TARGET_ABI_WINDOWED + bool "Windowed ABI" + +config ADK_TARGET_ABI_CALL0 + bool "Call0 ABI" + +endchoice + +choice +prompt "ABI" depends on ADK_TARGET_ARCH_MIPS64 config ADK_TARGET_ABI_N32 @@ -62,6 +74,8 @@ config ADK_TARGET_ABI default "x32" if ADK_TARGET_ABI_X32 default "eabihf" if ADK_TARGET_ARCH_ARM && ADK_TARGET_HARD_FLOAT default "eabi" if ADK_TARGET_ARCH_ARM + default "windowed" if ADK_TARGET_ABI_WINDOWED + default "call0" if ADK_TARGET_ABI_CALL0 config ADK_TARGET_ABI_RISCV depends on ADK_TARGET_ARCH_RISCV32 || ADK_TARGET_ARCH_RISCV64 |