Config.in 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. comment "boost needs a toolchain w/ C++, largefile, threads"
  2. depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
  3. config BR2_PACKAGE_BOOST
  4. bool "boost"
  5. depends on BR2_INSTALL_LIBSTDCPP
  6. depends on BR2_LARGEFILE
  7. # Boost could theorically be built with threading=single, but
  8. # that unfortunately doesn't work. Until someone fixes that,
  9. # let's depend on threads.
  10. depends on BR2_TOOLCHAIN_HAS_THREADS
  11. help
  12. A general purpose C++ library
  13. http://www.boost.org/
  14. if BR2_PACKAGE_BOOST
  15. config BR2_PACKAGE_BOOST_CHRONO
  16. bool "boost-chrono"
  17. config BR2_PACKAGE_BOOST_CONTEXT
  18. bool "boost-context"
  19. depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel \
  20. || BR2_powerpc || BR2_sparc || BR2_x86_64)
  21. config BR2_PACKAGE_BOOST_DATE_TIME
  22. bool "boost-date_time"
  23. config BR2_PACKAGE_BOOST_EXCEPTION
  24. bool "boost-exception"
  25. config BR2_PACKAGE_BOOST_FILESYSTEM
  26. bool "boost-filesystem"
  27. config BR2_PACKAGE_BOOST_GRAPH
  28. bool "boost-graph"
  29. config BR2_PACKAGE_BOOST_GRAPH_PARALLEL
  30. bool "boost-graph_parallel"
  31. config BR2_PACKAGE_BOOST_IOSTREAMS
  32. bool "boost-iostreams"
  33. select BR2_PACKAGE_BZIP2
  34. select BR2_PACKAGE_ZLIB
  35. config BR2_PACKAGE_BOOST_LOCALE
  36. depends on BR2_USE_WCHAR
  37. bool "boost-locale"
  38. comment "boost-locale needs a toolchain w/ wchar"
  39. depends on !BR2_USE_WCHAR
  40. config BR2_PACKAGE_BOOST_MATH
  41. bool "boost-math"
  42. config BR2_PACKAGE_BOOST_MPI
  43. bool "boost-mpi"
  44. config BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
  45. bool "boost-program_options"
  46. config BR2_PACKAGE_BOOST_RANDOM
  47. bool "boost-random"
  48. config BR2_PACKAGE_BOOST_REGEX
  49. bool "boost-regex"
  50. config BR2_PACKAGE_BOOST_SERIALIZATION
  51. bool "boost-serialization"
  52. config BR2_PACKAGE_BOOST_SIGNALS
  53. bool "boost-signals"
  54. config BR2_PACKAGE_BOOST_SYSTEM
  55. bool "boost-system"
  56. config BR2_PACKAGE_BOOST_TEST
  57. bool "boost-test"
  58. config BR2_PACKAGE_BOOST_THREAD
  59. bool "boost-thread"
  60. config BR2_PACKAGE_BOOST_TIMER
  61. bool "boost-timer"
  62. config BR2_PACKAGE_BOOST_WAVE
  63. bool "boost-wave"
  64. endif