Config.in.arch.default 818 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # target architectures
  2. config ADK_native
  3. bool
  4. config ADK_arm
  5. bool
  6. config ADK_armeb
  7. bool
  8. config ADK_cris
  9. bool
  10. config ADK_mips
  11. bool
  12. config ADK_mipsel
  13. bool
  14. config ADK_mips64
  15. bool
  16. config ADK_mips64el
  17. bool
  18. config ADK_ppc
  19. bool
  20. config ADK_ppc64
  21. bool
  22. config ADK_sparc
  23. bool
  24. config ADK_sparc64
  25. bool
  26. config ADK_x86_64
  27. bool
  28. config ADK_x86
  29. bool
  30. config ADK_TARGET_ARCH
  31. string
  32. default "arm" if ADK_arm
  33. default "arm" if ADK_armeb
  34. default "cris" if ADK_cris
  35. default "mips" if ADK_mips
  36. default "mips" if ADK_mipsel
  37. default "mips" if ADK_mips64
  38. default "mips" if ADK_mips64el
  39. default "ppc" if ADK_ppc
  40. default "ppc64" if ADK_ppc64
  41. default "sparc" if ADK_sparc
  42. default "sparc64" if ADK_sparc64
  43. default "x86" if ADK_x86
  44. default "x86_64" if ADK_x86_64
  45. default "native" if ADK_native