123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- comment "boost needs a toolchain w/ C++, largefile, threads"
- depends on !BR2_INSTALL_LIBSTDCPP || !BR2_LARGEFILE || !BR2_TOOLCHAIN_HAS_THREADS
- config BR2_PACKAGE_BOOST
- bool "boost"
- depends on BR2_INSTALL_LIBSTDCPP
- depends on BR2_LARGEFILE
- # Boost could theorically be built with threading=single, but
- # that unfortunately doesn't work. Until someone fixes that,
- # let's depend on threads.
- depends on BR2_TOOLCHAIN_HAS_THREADS
- help
- A general purpose C++ library
- http://www.boost.org/
- if BR2_PACKAGE_BOOST
- config BR2_PACKAGE_BOOST_CHRONO
- bool "boost-chrono"
- config BR2_PACKAGE_BOOST_CONTEXT
- bool "boost-context"
- depends on (BR2_arm || BR2_armeb || BR2_i386 || BR2_mips || BR2_mipsel \
- || BR2_powerpc || BR2_sparc || BR2_x86_64)
- config BR2_PACKAGE_BOOST_DATE_TIME
- bool "boost-date_time"
- config BR2_PACKAGE_BOOST_EXCEPTION
- bool "boost-exception"
- config BR2_PACKAGE_BOOST_FILESYSTEM
- bool "boost-filesystem"
- config BR2_PACKAGE_BOOST_GRAPH
- bool "boost-graph"
- config BR2_PACKAGE_BOOST_GRAPH_PARALLEL
- bool "boost-graph_parallel"
- config BR2_PACKAGE_BOOST_IOSTREAMS
- bool "boost-iostreams"
- select BR2_PACKAGE_BZIP2
- select BR2_PACKAGE_ZLIB
- config BR2_PACKAGE_BOOST_LOCALE
- depends on BR2_USE_WCHAR
- bool "boost-locale"
- comment "boost-locale needs a toolchain w/ wchar"
- depends on !BR2_USE_WCHAR
- config BR2_PACKAGE_BOOST_MATH
- bool "boost-math"
- config BR2_PACKAGE_BOOST_MPI
- bool "boost-mpi"
- config BR2_PACKAGE_BOOST_PROGRAM_OPTIONS
- bool "boost-program_options"
- config BR2_PACKAGE_BOOST_RANDOM
- bool "boost-random"
- config BR2_PACKAGE_BOOST_REGEX
- bool "boost-regex"
- config BR2_PACKAGE_BOOST_SERIALIZATION
- bool "boost-serialization"
- config BR2_PACKAGE_BOOST_SIGNALS
- bool "boost-signals"
- config BR2_PACKAGE_BOOST_SYSTEM
- bool "boost-system"
- config BR2_PACKAGE_BOOST_TEST
- bool "boost-test"
- config BR2_PACKAGE_BOOST_THREAD
- bool "boost-thread"
- config BR2_PACKAGE_BOOST_TIMER
- bool "boost-timer"
- config BR2_PACKAGE_BOOST_WAVE
- bool "boost-wave"
- endif
|