Config.sparc 813 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 FORCE_OPTIONS_FOR_ARCH
  8. bool
  9. default y
  10. select ARCH_BIG_ENDIAN
  11. config ARCH_CFLAGS
  12. string
  13. config LIBGCC_CFLAGS
  14. string
  15. choice
  16. prompt "Target Processor Type"
  17. default CONFIG_SPARC_V8
  18. help
  19. This is the processor type of your CPU. This information is used for
  20. optimizing purposes. Building for a v8 SPARC is pretty safe nowadays.
  21. Warning: shared library support requires v8 or better, so building for
  22. SPARC v7 will give you only static support.
  23. config CONFIG_SPARC_V7
  24. select HAVE_NO_SHARED
  25. bool "SPARC v7"
  26. config CONFIG_SPARC_V8
  27. bool "SPARC v8"
  28. config CONFIG_SPARC_V9
  29. bool "SPARC v9"
  30. config CONFIG_SPARC_V9B
  31. bool "SPARC v9b"
  32. endchoice