Config.sparc 821 B

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