Config.in.arch.default 709 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # target architectures
  2. config ADK_native
  3. bool
  4. config ADK_arm
  5. bool
  6. config ADK_m68k
  7. bool
  8. config ADK_microblaze
  9. bool
  10. config ADK_mips
  11. bool
  12. config ADK_ppc
  13. bool
  14. config ADK_ppc64
  15. bool
  16. config ADK_sparc
  17. bool
  18. config ADK_sparc64
  19. bool
  20. config ADK_sh
  21. bool
  22. config ADK_x86_64
  23. bool
  24. config ADK_x86
  25. bool
  26. config ADK_TARGET_ARCH
  27. string
  28. default "arm" if ADK_arm
  29. default "m68k" if ADK_m68k
  30. default "microblaze" if ADK_microblaze
  31. default "mips" if ADK_mips
  32. default "ppc" if ADK_ppc
  33. default "ppc64" if ADK_ppc64
  34. default "sparc" if ADK_sparc
  35. default "sparc64" if ADK_sparc64
  36. default "sh" if ADK_sh
  37. default "x86" if ADK_x86
  38. default "x86_64" if ADK_x86_64
  39. default "native" if ADK_native