Config.in.arch.default 906 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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. # target architectures
  4. config ADK_aarch64
  5. bool
  6. config ADK_arm
  7. bool
  8. config ADK_m68k
  9. bool
  10. config ADK_microblaze
  11. bool
  12. config ADK_mips
  13. bool
  14. config ADK_mips64
  15. bool
  16. config ADK_ppc
  17. bool
  18. config ADK_ppc64
  19. bool
  20. config ADK_sparc
  21. bool
  22. config ADK_sparc64
  23. bool
  24. config ADK_sh
  25. bool
  26. config ADK_x86_64
  27. bool
  28. config ADK_x86
  29. bool
  30. config ADK_TARGET_ARCH
  31. string
  32. default "aarch64" if ADK_aarch64
  33. default "arm" if ADK_arm
  34. default "m68k" if ADK_m68k
  35. default "microblaze" if ADK_microblaze
  36. default "mips" if ADK_mips
  37. default "mips64" if ADK_mips64
  38. default "ppc" if ADK_ppc
  39. default "ppc64" if ADK_ppc64
  40. default "sparc" if ADK_sparc
  41. default "sparc64" if ADK_sparc64
  42. default "sh" if ADK_sh
  43. default "x86" if ADK_x86
  44. default "x86_64" if ADK_x86_64