Config.sparc 892 B

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