Config.sparc 854 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. config TARGET_ARCH
  6. default "sparc"
  7. config HAVE_ELF
  8. bool
  9. default y
  10. config ARCH_SUPPORTS_BIG_ENDIAN
  11. bool
  12. default y
  13. config ARCH_CFLAGS
  14. string
  15. config ARCH_LDFLAGS
  16. string
  17. config LIBGCC_CFLAGS
  18. string
  19. choice
  20. prompt "Target Processor Type"
  21. default CONFIG_SPARC_V8
  22. help
  23. This is the processor type of your CPU. This information is used for
  24. optimizing purposes. Building for a v8 SPARC is pretty safe nowadays.
  25. Warning: shared library support requires v8 or better, so building for
  26. SPARC v7 will give you only static support.
  27. config CONFIG_SPARC_V7
  28. select HAVE_NO_SHARED
  29. bool "SPARC v7"
  30. config CONFIG_SPARC_V8
  31. bool "SPARC v8"
  32. config CONFIG_SPARC_V9
  33. bool "SPARC v9"
  34. config CONFIG_SPARC_V9B
  35. bool "SPARC v9b"
  36. endchoice