Config.h8300 692 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. choice
  8. prompt "Target Processor"
  9. default CONFIG_H8300H
  10. help
  11. This is the processor type of your CPU.
  12. config CONFIG_H8300H
  13. bool "H8300H"
  14. config CONFIG_H8S
  15. bool "H8S (edosk2674)"
  16. endchoice
  17. config HAVE_ELF
  18. bool
  19. default y
  20. config ARCH_CFLAGS
  21. string
  22. config ARCH_LDFLAGS
  23. string
  24. config LIBGCC_CFLAGS
  25. string
  26. config ARCH_HAS_NO_MMU
  27. bool
  28. default y
  29. config ARCH_HAS_C_SYMBOL_PREFIX
  30. bool
  31. default y
  32. source "extra/Configs/Config.in.arch"
  33. endmenu
  34. source "extra/Configs/Config.in"