# This Jamfile requires boost-build v2 to build. # The version shipped with boost 1.34.0 import modules ; import path ; import os ; import errors ; import feature : feature ; import package ; import virtual-target ; import cast ; BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ; CXXFLAGS = [ modules.peek : CXXFLAGS ] ; LDFLAGS = [ modules.peek : LDFLAGS ] ; ECHO "CXXFLAGS =" $(CXXFLAGS) ; ECHO "LDFLAGS =" $(LDFLAGS) ; ECHO "OS =" [ os.name ] ; if $(BOOST_ROOT) { ECHO "building boost from source directory: " $(BOOST_ROOT) ; use-project /boost : $(BOOST_ROOT) ; alias boost_system : /boost/system//boost_system : : : $(BOOST_ROOT) ; } else { local boost-lib-search-path = /usr/local/opt/boost/lib ; local boost-include-path = /usr/local/opt/boost/include ; # the names are decorated in MacPorts. lib boost_system : : darwin boost_system-mt $(boost-lib-search-path) : : $(boost-include-path) ; # we can't add /usr/local/lib to the search path on mac, as that will # interfere with system libraries (specifically libjpeg) lib boost_system : : boost_system $(boost-lib-search-path) /usr/local/lib : : $(boost-include-path) /usr/local/include ; } VERSION = 1.2.6 ; rule linking ( properties * ) { local result ; if on in $(properties) { result += /libsimulator//simulator ; } if windows in $(properties) && ( on in $(properties) || production in $(properties) || on in $(properties) ) { result += dbghelp ; } # gcrypt libraries, if enabled if gcrypt in $(properties) { result += gcrypt ; } else if openssl in $(properties) { result += ssl ; result += crypto ; if linux in $(properties) { result += dl ; } } else if libcrypto in $(properties) { result += crypto ; if linux in $(properties) { result += dl ; } } if windows in $(properties) || cygwin in $(properties) { # socket functions on windows require winsock libraries result += ws2_32 wsock32 iphlpapi WIN32_LEAN_AND_MEAN __USE_W32_SOCKETS WIN32 _WIN32 ; # when DHT is enabled, we need ed25519 which in turn # needs entropy if ! off in $(properties) { result += advapi32 ; } } if android in $(properties) { result += dl ; } if beos in $(properties) { result += netkit gcc ; } if haiku in $(properties) { result += libnetwork gcc ; } if solaris in $(properties) { result += libsocket libnsl ; } if darwin in $(properties) || iphone in $(properties) { # for ip_notifier result += CoreFoundation SystemConfiguration ; } if on in $(properties) { result += libiconv ; } if ( gcc in $(properties) || clang in $(properties) ) && linux in $(properties) && ( on in $(properties) || production in $(properties) || on in $(properties) ) { # for backtraces in assertion failures # which only works on ELF targets with gcc result += -export-dynamic -rdynamic ; } if static in $(properties) { if shared in $(properties) { # if libtorrent is being built as a shared library # but we're linking against boost statically, we still # need to make boost think it's being built as a shared # library, so that it properly exports its symbols result += BOOST_ALL_DYN_LINK ; result += boost_system/static/BOOST_ALL_DYN_LINK ; } else { result += boost_system/static ; } if gcc in $(properties) && ! windows in $(properties) && shared in $(properties) { result += on ; } } else if shared in $(properties) { result += boost_system/shared ; } else { result += boost_system ; } result += BOOST_ALL_NO_LIB BOOST_MULTI_INDEX_DISABLE_SERIALIZATION BOOST_SYSTEM_NO_DEPRECATED ; return $(result) ; } rule warnings ( properties * ) { local result ; if off in $(properties) { return $(result) ; } if clang in $(properties) || darwin in $(properties) { result += -Weverything ; result += -Wno-documentation ; result += -Wno-c++98-compat-pedantic ; result += -Wno-padded ; result += -Wno-global-constructors ; # this warns on any global static object, which are used for error_category # objects result += -Wno-exit-time-destructors ; # enable these warnings again, once the other ones are dealt with result += -Wno-weak-vtables ; result += -Wno-return-std-move-in-c++11 ; result += -Wno-unknown-warning-option ; # libtorrent uses alloca() carefully result += -Wno-alloca ; } if gcc in $(properties) { result += -Wall ; result += -Wextra ; result += -Wpedantic ; # result += -Wmisleading-indentation ; result += -Wparentheses ; result += -Wvla ; result += -Wc++11-compat ; result += -Wno-format-zero-length ; } if msvc in $(properties) { # on msvc this resolves to /W4 result += all ; # enable these warnings again, once the other ones are dealt with # disable warning C4251: 'identifier' : class 'type' needs to have dll-interface to be used by clients of class 'type2' result += /wd4251 ; # disable warning C4275: non DLL-interface classkey 'identifier' used as base for DLL-interface classkey 'identifier' result += /wd4275 ; # disable warning C4373: virtual function overrides, previous versions of the compiler did not override when parameters only differed by const/volatile qualifiers result += /wd4373 ; # C4268: 'identifier' : 'const' static/global data initialized # with compiler generated default constructor fills the object with zeros result += /wd4268 ; # C4503: 'identifier': decorated name length exceeded, name was truncated result += /wd4503 ; } return $(result) ; } # rule for adding the right source files # depending on target-os and features rule building ( properties * ) { local result ; if ( off in $(properties) && ! off in $(properties) ) { ECHO "'invariant-check' requires enabled 'asserts' mode. (e.g. specify build params: invariant-check=on asserts=on)" ; result += no ; } if msvc in $(properties) { # allow larger .obj files (with more sections) result += /bigobj ; } if ( production in $(properties) || on in $(properties) ) { result += src/assert.cpp ; } if on in $(properties) { result += src/pe_crypto.cpp ; } if ( darwin in $(properties) || gcc in $(properties) || clang in $(properties) || clang-darwin in $(properties) ) && shared in $(properties) # on GCC, enabling debugging in libstdc++ # breaks the ABI and its ability to appear # in shared object interfaces, so when it's # enabled, just export everything (since we're) # probably not a production build anyway && ! on in $(properties) { # hide non-external symbols result += -fvisibility=hidden ; result += -fvisibility-inlines-hidden ; if ( gcc in $(properties) ) { result += -Wl,-Bsymbolic ; } } return $(result) ; } rule tag ( name : type ? : property-set ) { name = [ virtual-target.add-prefix-and-suffix $(name) : $(type) : $(property-set) ] ; if $(type) = SHARED_LIB && ( ! ( [ $(property-set).get ] in windows cygwin ) ) { name = $(name).$(VERSION) ; } return $(name) ; } # the search path to pick up the openssl libraries from. This is the # property of those libraries rule openssl-lib-path ( properties * ) { local OPENSSL_LIB = [ feature.get-values : $(properties) ] ; if darwin in $(properties) && $(OPENSSL_LIB) = "" { # on macOS, default to pick up openssl from the homebrew installation # brew install openssl OPENSSL_LIB = /usr/local/opt/openssl/lib ; } else if windows in $(properties) && $(OPENSSL_LIB) = "" { # on windows, assume openssl is installed to c:\OpenSSL-Win32 if 64 in $(properties) { OPENSSL_LIB = c:\\OpenSSL-Win64\\lib ; } else { OPENSSL_LIB = c:\\OpenSSL-Win32\\lib ; } } local result ; result += $(OPENSSL_LIB) ; return $(result) ; } # the include path to pick up openssl headers from. This is the # usage-requirement for the openssl-related libraries rule openssl-include-path ( properties * ) { local OPENSSL_INCLUDE = [ feature.get-values : $(properties) ] ; if darwin in $(properties) && $(OPENSSL_INCLUDE) = "" { # on macOS, default to pick up openssl from the homebrew installation # brew install openssl OPENSSL_INCLUDE = /usr/local/opt/openssl/include ; } else if windows in $(properties) && $(OPENSSL_INCLUDE) = "" { # on windows, assume openssl is installed to c:\OpenSSL-Win32 if 64 in $(properties) { OPENSSL_INCLUDE = c:\\OpenSSL-Win64\\include ; } else { OPENSSL_INCLUDE = c:\\OpenSSL-Win32\\include ; } } local result ; result += $(OPENSSL_INCLUDE) ; return $(result) ; } feature openssl-lib : : free path ; feature openssl-include : : free path ; feature test-coverage : off on : composite propagated link-incompatible ; feature.compose on : --coverage --coverage ; feature predictive-pieces : on off : composite propagated ; feature.compose off : TORRENT_DISABLE_PREDICTIVE_PIECES ; feature share-mode : on off : composite propagated ; feature.compose off : TORRENT_DISABLE_SHARE_MODE ; feature streaming : on off : composite propagated ; feature.compose off : TORRENT_DISABLE_STREAMING ; feature super-seeding : on off : composite propagated ; feature.compose off : TORRENT_DISABLE_SUPERSEEDING ; feature i2p : on off : composite propagated ; feature.compose on : TORRENT_USE_I2P=1 ; feature.compose off : TORRENT_USE_I2P=0 ; feature iconv : auto on off : composite propagated ; feature.compose on : TORRENT_USE_ICONV=1 ; feature.compose off : TORRENT_USE_ICONV=0 ; feature asserts : off on production system : composite propagated ; feature.compose on : TORRENT_USE_ASSERTS=1 ; feature.compose production : TORRENT_USE_ASSERTS=1 TORRENT_PRODUCTION_ASSERTS=1 ; feature.compose system : TORRENT_USE_ASSERTS=1 TORRENT_USE_SYSTEM_ASSERTS=1 ; feature windows-version : vista win7 xp : composite propagated ; feature.compose vista : _WIN32_WINNT=0x0600 ; feature.compose win7 : _WIN32_WINNT=0x0601 ; feature.compose xp : _WIN32_WINNT=0x0501 ; feature extensions : on off : composite propagated link-incompatible ; feature.compose off : TORRENT_DISABLE_EXTENSIONS ; feature asio-debugging : off on : composite propagated link-incompatible ; feature.compose on : TORRENT_ASIO_DEBUGGING ; feature picker-debugging : off on : composite propagated link-incompatible ; feature.compose on : TORRENT_DEBUG_REFCOUNTS ; feature simulator : off on : composite propagated link-incompatible ; feature.compose on : TORRENT_BUILD_SIMULATOR ; feature invariant-checks : off on full : composite propagated link-incompatible ; feature.compose on : TORRENT_USE_INVARIANT_CHECKS=1 ; feature.compose full : TORRENT_USE_INVARIANT_CHECKS=1 TORRENT_EXPENSIVE_INVARIANT_CHECKS ; feature utp-log : off on : composite propagated link-incompatible ; feature.compose on : TORRENT_UTP_LOG_ENABLE ; feature simulate-slow-read : off on : composite propagated ; feature.compose on : TORRENT_SIMULATE_SLOW_READ ; feature logging : on off : composite propagated link-incompatible ; feature.compose off : TORRENT_DISABLE_LOGGING ; feature dht : on off : composite propagated link-incompatible ; feature.compose off : TORRENT_DISABLE_DHT ; feature encryption : on off : composite propagated link-incompatible ; feature.compose off : TORRENT_DISABLE_ENCRYPTION ; feature mutable-torrents : on off : composite propagated link-incompatible ; feature.compose off : TORRENT_DISABLE_MUTABLE_TORRENTS ; feature crypto : built-in openssl libcrypto gcrypt : composite propagated ; feature.compose openssl : TORRENT_USE_LIBCRYPTO TORRENT_USE_OPENSSL OPENSSL_NO_SSL2 ; feature.compose libcrypto : TORRENT_USE_LIBCRYPTO ; feature.compose gcrypt : TORRENT_USE_LIBGCRYPT ; feature openssl-version : 1.1 pre1.1 : composite propagated ; feature deprecated-functions : on off : composite propagated link-incompatible ; feature.compose off : TORRENT_NO_DEPRECATE ; feature boost-link : default static shared : propagated composite ; # msvc enables debug iterators by default in debug builds whereas GCC and # clang do not, that's why "default" is there. msvc has incorrect noexcept # constructors on some containers when enabling debug iterators, so it's # possible to turn them off feature debug-iterators : default off on : composite propagated link-incompatible ; feature.compose on : _GLIBCXX_DEBUG _GLIBCXX_DEBUG_PEDANTIC ; feature.compose off : _ITERATOR_DEBUG_LEVEL=0 ; feature fpic : off on : composite propagated link-incompatible ; feature.compose on : -fPIC ; feature profile-calls : off on : composite propagated link-incompatible ; feature.compose on : TORRENT_PROFILE_CALLS=1 ; # controls whether or not to export some internal # libtorrent functions. Used for unit testing feature export-extra : off on : composite propagated ; # export some internal libtorrent functions # in order to me able to unit test them. # this is off by default to keep the export # symbol table reasonably small feature.compose on : TORRENT_EXPORT_EXTRA ; # this is a trick to get filename paths to targets to become shorter # making it possible to build on windows, especially mingw seems particular # for release builds, disable optimizations as they bump GCC over the edge of # allowed memory usage on travis-ci variant test_release : release : production on full shared off on multi on off ; variant test_debug : debug : on full shared on multi on ; variant test_barebones : debug : off off off shared off off on multi on ; variant test_arm : debug : off off off off off on on ; lib advapi32 : : advapi32 ; lib user32 : : user32 ; lib shell32 : : shell32 ; lib gdi32 : : gdi32 ; lib z : : shared z ; # openssl libraries on windows alias ssl-deps : advapi32 user32 shell32 gdi32 ; # pre OpenSSL 1.1 windows lib crypto : ssl-deps : windows pre1.1 libeay32 @openssl-lib-path : : @openssl-include-path ; lib ssl : ssl-deps : windows pre1.1 ssleay32 crypto @openssl-lib-path : : @openssl-include-path ; # OpenSSL 1.1+ windows lib crypto : ssl-deps : msvc 1.1 libcrypto @openssl-lib-path : : @openssl-include-path ; lib ssl : ssl-deps : msvc 1.1 libssl crypto @openssl-lib-path : : @openssl-include-path ; # generic OpenSSL lib crypto : : crypto z @openssl-lib-path : : @openssl-include-path ; lib ssl : : ssl crypto @openssl-lib-path : : @openssl-include-path ; lib dbghelp : : dbghelp ; # required for networking on beos lib netkit : : net /boot/system/lib shared ; lib gcc : : gcc static ; # when using iconv lib libiconv : : iconv shared /usr/local/lib ; # openssl on linux/bsd etc. lib gcrypt : : gcrypt shared /opt/local/lib ; lib dl : : shared dl ; lib libsocket : : libnsl socket shared /usr/sfw/lib shared ; lib libnsl : : nsl shared /usr/sfw/lib shared ; lib libnetwork : : network shared ; # socket libraries on windows lib wsock32 : : wsock32 shared ; lib ws2_32 : : ws2_32 shared ; lib iphlpapi : : iphlpapi shared ; SOURCES = alert alert_manager announce_entry assert bandwidth_limit bandwidth_manager bandwidth_queue_entry bdecode bitfield block_cache bloom_filter chained_buffer choker close_reason cpuid crc32c create_torrent disk_buffer_holder disk_buffer_pool disk_io_job disk_io_thread disk_io_thread_pool disk_job_fence disk_job_pool entry error_code file_storage escape_string string_util file path fingerprint gzip hasher hex http_connection http_stream http_parser identify_client ip_filter ip_notifier ip_voter listen_socket_handle merkle peer_connection platform_util bt_peer_connection web_connection_base web_peer_connection http_seed_connection peer_connection_handle i2p_stream instantiate_connection lazy_bdecode natpmp openssl packet_buffer piece_picker peer_list proxy_base puff random read_resume_data write_resume_data receive_buffer resolve_links session session_handle session_impl session_call settings_pack sha1 sha1_hash socket_io socket_type socks5_stream stat storage storage_piece_set storage_utils torrent torrent_handle torrent_info torrent_peer torrent_peer_allocator torrent_status time tracker_manager http_tracker_connection udp_tracker_connection timestamp_history udp_socket upnp utf8 utp_socket_manager utp_stream file_pool lsd enum_net broadcast_socket magnet_uri parse_url ConvertUTF xml_parse version peer_class peer_class_set part_file stat_cache request_blocks session_stats performance_counters resolver session_settings proxy_settings file_progress ffs add_torrent_params peer_info stack_allocator generate_peer_id # -- extensions -- ut_pex ut_metadata smart_ban ; KADEMLIA_SOURCES = dht_state dht_storage dht_tracker msg node node_entry refresh rpc_manager find_data node_id routing_table traversal_algorithm dos_blocker get_peers item get_item put_data ed25519 sample_infohashes dht_settings ; ED25519_SOURCES = add_scalar fe ge key_exchange keypair sc sign verify ; local usage-requirements = ./include ./include/libtorrent /usr/sfw/include # freebsd doesn't seem to include this automatically # and iconv.h is installed there /usr/local/include release:NDEBUG _FILE_OFFSET_BITS=64 # enable cancel support in asio BOOST_ASIO_ENABLE_CANCELIO # make sure asio uses std::chrono BOOST_ASIO_HAS_STD_CHRONO @linking # msvc optimizations msvc,release:"/OPT:ICF=5" msvc,release:"/OPT:REF" # disable bogus deprecation warnings on msvc8 msvc:_SCL_SECURE_NO_DEPRECATE msvc:_CRT_SECURE_NO_DEPRECATE $(CXXFLAGS) $(LDFLAGS) ; project torrent ; lib torrent : # sources src/$(SOURCES).cpp : # requirements multi TORRENT_BUILDING_LIBRARY shared:TORRENT_BUILDING_SHARED BOOST_NO_DEPRECATED shared:BOOST_SYSTEM_SOURCE on:src/kademlia/$(KADEMLIA_SOURCES).cpp on:ed25519/src/$(ED25519_SOURCES).cpp on:src/hasher512.cpp on:src/sha512.cpp @building @warnings $(CXXFLAGS) @tag $(usage-requirements) : # default build multi 512 : # usage requirements $(usage-requirements) shared:TORRENT_LINKING_SHARED ; headers = [ path.glob-tree include/libtorrent : *.hpp ] ; package.install install : libtorrent : : torrent : $(headers) ; local header_targets ; for local target in $(headers) { if ! [ path.basename $(target) ] in windows.hpp win_util.hpp win_crypto_provider.hpp torrent_impl.hpp cppint_import_export.hpp { # this cast tells boost build that the header files really *are* cpp files # otherwise the object rule doesn't know which language to interpret them as obj header-build/$(target).o : [ cast.cast _ cpp : $(target) ] : /torrent -fsyntax-only ; explicit header-build/$(target).o ; header_targets += $(target) ; } } alias check-headers : header-build/$(header_targets).o ; explicit check-headers ;