Config.in.abi.choice 858 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. choice
  4. prompt "ABI"
  5. depends on ADK_TARGET_ARCH_MIPS64
  6. config ADK_TARGET_ABI_N32
  7. boolean "N32 ABI"
  8. select ADK_n32
  9. config ADK_TARGET_ABI_N64
  10. boolean "N64 ABI"
  11. select ADK_n64
  12. config ADK_TARGET_ABI_O32
  13. boolean "O32 ABI"
  14. select ADK_o32
  15. endchoice
  16. choice
  17. prompt "ABI"
  18. depends on ADK_TARGET_ARCH_X86_64
  19. config ADK_TARGET_ABI_64
  20. boolean "64 Bit ABI"
  21. select ADK_64
  22. config ADK_TARGET_ABI_X32
  23. boolean "x32 ABI"
  24. select ADK_x32
  25. endchoice
  26. choice
  27. prompt "ABI"
  28. depends on ADK_TARGET_ARCH_ARM
  29. depends on ADK_TARGET_CPU_WITH_FPU || ADK_TARGET_SYSTEM_QEMU_ARM || ADK_TARGET_TOOLCHAIN
  30. config ADK_TARGET_ABI_EABIHF
  31. boolean "EABIhf"
  32. select ADK_eabihf
  33. config ADK_TARGET_ABI_EABI
  34. boolean "EABI"
  35. select ADK_eabi
  36. endchoice