Config.in 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. comment "boost requires a toolchain with C++ support enabled"
  2. depends on !BR2_INSTALL_LIBSTDCPP
  3. config BR2_PACKAGE_BOOST
  4. bool "boost"
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. select BR2_PACKAGE_BZIP2
  7. select BR2_PACKAGE_ZLIB
  8. help
  9. A general purpose C++ library
  10. http://www.boost.org/
  11. if BR2_PACKAGE_BOOST
  12. config BR2_PACKAGE_BOOST_MULTITHREADED
  13. depends on BR2_TOOLCHAIN_HAS_THREADS
  14. bool "boost-multithreaded"
  15. help
  16. Build the boost libraries as multithreaded
  17. config BR2_PACKAGE_BOOST_CHRONO
  18. bool "boost-chrono"
  19. config BR2_PACKAGE_BOOST_DATE_TIME
  20. bool "boost-date_time"
  21. config BR2_PACKAGE_BOOST_EXCEPTION
  22. bool "boost-exception"
  23. config BR2_PACKAGE_BOOST_FILESYSTEM
  24. bool "boost-filesystem"
  25. config BR2_PACKAGE_BOOST_GRAPH
  26. bool "boost-graph"
  27. config BR2_PACKAGE_BOOST_GRAPH_PARALLEL
  28. bool "boost-graph_parallel"
  29. config BR2_PACKAGE_BOOST_IOSTREAMS
  30. bool "boost-iostreams"
  31. config BR2_PACKAGE_BOOST_LOCALE
  32. depends on BR2_USE_WCHAR
  33. bool "boost-locale"
  34. comment "boost-locale requires a toolchain with wchar support"
  35. depends on !BR2_USE_WCHAR
  36. config BR2_PACKAGE_BOOST_MATH
  37. bool "boost-math"
  38. config BR2_PACKAGE_BOOST_MPI
  39. bool "boost-mpi"
  40. config BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
  41. bool "boost-program_options"
  42. config BR2_PACKAGE_BOOST_RANDOM
  43. bool "boost-random"
  44. config BR2_PACKAGE_BOOST_REGEX
  45. bool "boost-regex"
  46. config BR2_PACKAGE_BOOST_SERIALIZATION
  47. bool "boost-serialization"
  48. config BR2_PACKAGE_BOOST_SIGNALS
  49. bool "boost-signals"
  50. config BR2_PACKAGE_BOOST_SYSTEM
  51. bool "boost-system"
  52. config BR2_PACKAGE_BOOST_TEST
  53. bool "boost-test"
  54. config BR2_PACKAGE_BOOST_THREAD
  55. depends on BR2_TOOLCHAIN_HAS_THREADS
  56. bool "boost-thread"
  57. config BR2_PACKAGE_BOOST_TIMER
  58. bool "boost-timer"
  59. config BR2_PACKAGE_BOOST_WAVE
  60. bool "boost-wave"
  61. endif