Config.in.arch.default 919 B

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