You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
943 B

  1. # gcc library configuration
  2. menu "Libraries"
  3. depends on PACKAGE_gcc
  4. config INCLUDE_STATIC_LIBC
  5. bool "Include static libc on target"
  6. help
  7. Copies libc.a to target device
  8. Increases the size of an already
  9. very large package
  10. default n
  11. config INCLUDE_STATIC_LIBPTHREAD
  12. bool "Include static libptread on target"
  13. help
  14. Copies libpthread.a to target device
  15. Increases the size of an already
  16. very large package
  17. default n
  18. config INCLUDE_STATIC_LIBSTDC
  19. bool "Include static libstdc++ on target"
  20. help
  21. Copies libstdc++.a to target device
  22. Increases the size of an already
  23. very large package
  24. default n
  25. config INCLUDE_STATIC_LINK_SPEC
  26. depends on INCLUDE_STATIC_LIBSTDC
  27. bool "Generate spec file for easy static c++ linking on target"
  28. help
  29. Creates a spec file for gcc to eliminate the need for
  30. -lstdc++, libgcc_pic and -static-libstdc flags when
  31. statically linking c++ programs
  32. default n
  33. endmenu