Config.cris 748 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. #
  2. # For a description of the syntax of this configuration file,
  3. # see extra/config/Kconfig-language.txt
  4. #
  5. mainmenu "uClibc C Library Configuration"
  6. menu "Target Architecture Features and Options"
  7. config HAVE_ELF
  8. bool
  9. default y
  10. config ARCH_CFLAGS
  11. string
  12. config ARCH_LDFLAGS
  13. string
  14. default "-mcrislinux"
  15. config LIBGCC_CFLAGS
  16. string
  17. default "-mlinux"
  18. choice
  19. prompt "Target Architecture Type"
  20. default CONFIG_CRIS
  21. help
  22. This is the architecture type of your CPU. This information is used for
  23. optimizing purposes.
  24. These are the possible settings:
  25. - CRIS Generic support for Axis' CRIS architecture.
  26. config CONFIG_CRIS
  27. bool "CRIS"
  28. endchoice
  29. source "extra/Configs/Config.in.arch"
  30. endmenu
  31. source "extra/Configs/Config.in"