Config.sparc 791 B

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