premiere-libtorrent/Jamfile

759 lines
22 KiB
Plaintext
Raw Normal View History

# This Jamfile requires boost-build v2 to build.
# The version shipped with boost 1.34.0
2004-02-18 01:08:20 +01:00
2004-02-04 21:20:53 +01:00
import modules ;
2011-07-23 21:46:27 +02:00
import path ;
2004-02-21 12:52:21 +01:00
import os ;
2005-01-11 03:13:07 +01:00
import errors ;
import feature : feature ;
import package ;
import virtual-target ;
2004-02-04 21:20:53 +01:00
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
CXXFLAGS = [ modules.peek : CXXFLAGS ] ;
LDFLAGS = [ modules.peek : LDFLAGS ] ;
2004-02-04 21:20:53 +01:00
2004-07-25 23:44:53 +02:00
ECHO "BOOST_ROOT =" $(BOOST_ROOT) ;
ECHO "CXXFLAGS =" $(CXXFLAGS) ;
ECHO "LDFLAGS =" $(LDFLAGS) ;
2004-07-25 23:44:53 +02:00
ECHO "OS =" [ os.name ] ;
if $(BOOST_ROOT)
2005-01-11 03:13:07 +01:00
{
use-project /boost : $(BOOST_ROOT) ;
2005-01-11 03:13:07 +01:00
}
2014-07-06 21:18:00 +02:00
VERSION = 1.1.0 ;
rule coverage ( properties * )
{
local result ;
if <test-coverage>on in $(properties)
&& ( <toolset>gcc in $(properties)
|| <toolset>darwin in $(properties)
|| <toolset>clang in $(properties) )
{
result += <cxxflags>-fprofile-arcs <cxxflags>-ftest-coverage ;
if <toolset>gcc in $(properties)
{
result += <linkflags>-lgcov ;
}
else
{
result += <linkflags>--coverage ;
}
}
return $(result) ;
}
# rule for linking the correct libraries depending
# on features and target-os
rule linking ( properties * )
{
local result ;
# openssl libraries, if enabled
if <crypto>openssl in $(properties)
{
2007-09-10 09:51:58 +02:00
# exclude gcc from a regular windows build to make mingw
# link against the regular unix library name
2012-01-19 09:12:13 +01:00
if <target-os>windows in $(properties)
{
result += <library>ssleay32
<library>libeay32
<library>advapi32
<library>user32
<library>shell32
<library>gdi32
;
}
else
{
2010-12-25 08:24:00 +01:00
result += <library>crypto <library>ssl <library>z ;
}
2010-12-25 08:24:00 +01:00
if <target-os>linux in $(properties)
{
# linker library on linux, required when using openssl
2011-02-14 05:12:26 +01:00
result += <library>dl ;
2010-12-25 08:24:00 +01:00
}
}
2012-08-16 05:03:29 +02:00
# dbghelp doesn't appear to exist in mingw
2012-01-26 11:33:39 +01:00
if <target-os>windows in $(properties)
2012-08-16 05:03:29 +02:00
&& ! <toolset>gcc in $(properties)
&& ( <variant>debug in $(properties)
|| <asserts>on in $(properties)
|| <asserts>production in $(properties)
2014-11-30 21:08:23 +01:00
|| <pool-allocators>debug in $(properties)
|| <allocator>debug in $(properties)
2012-01-26 11:33:39 +01:00
|| <asio-debugging>on in $(properties) )
{
result += <library>dbghelp ;
}
2009-11-08 04:09:19 +01:00
# gcrypt libraries, if enabled
if <crypto>gcrypt in $(properties)
2009-11-08 04:09:19 +01:00
{
# on mac os x, adding the /opt/local/include path
# would include openssl headers incompatible with
# the system library. Only add this include path
# if we're not using openssl (which we're most
# likely not if we're using libgcrypt)
result += <library>gcrypt <include>/opt/local/include ;
}
# socket functions on windows require winsock libraries
if <target-os>windows in $(properties)
|| <target-os>cygwin in $(properties)
{
result += <library>ws2_32
<library>wsock32
2010-11-29 02:33:05 +01:00
<library>iphlpapi
<define>WIN32_LEAN_AND_MEAN
<define>__USE_W32_SOCKETS
<define>WIN32
<define>_WIN32
;
# when DHT is enabled, we need ed25519 which in turn
# needs entropy
if ! <dht>off in $(properties)
{
result += <library>advapi32 ;
}
}
if <target-os>beos in $(properties)
{
2011-07-20 07:14:25 +02:00
result += <library>netkit <library>gcc ;
}
2009-01-27 09:24:48 +01:00
if <target-os>solaris in $(properties)
{
result += <library>libsocket <library>libnsl ;
}
# clock_gettime on linux requires librt
if <need-librt>yes in $(properties)
{
result += <library>librt ;
}
2011-02-09 10:54:45 +01:00
if <iconv>on in $(properties)
{
result += <library>libiconv ;
}
if <tcmalloc>yes in $(properties)
{
result += <library>tcmalloc ;
}
if <toolset>gcc in $(properties)
&& <target-os>linux in $(properties)
&& ( <variant>debug in $(properties)
2012-04-20 19:03:00 +02:00
|| <asserts>on in $(properties)
|| <asserts>production in $(properties)
2014-12-01 11:43:34 +01:00
|| <pool-allocators>debug in $(properties)
|| <allocator>debug in $(properties)
|| <asio-debugging>on in $(properties) )
{
# for backtraces in assertion failures
# which only works on ELF targets with gcc
2007-09-01 06:08:39 +02:00
result += <linkflags>-export-dynamic <cxxflags>-rdynamic ;
}
if <boost>source in $(properties)
{
if <boost-link>static in $(properties)
{
if <link>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 += <define>BOOST_ALL_DYN_LINK ;
2012-03-15 18:17:10 +01:00
result += <library>/boost/system//boost_system/<link>static/<define>BOOST_ALL_DYN_LINK ;
2014-07-06 21:18:00 +02:00
result += <library>/boost/chrono//boost_chrono/<link>static/<define>BOOST_ALL_DYN_LINK ;
result += <library>/boost/random//boost_random/<link>static/<define>BOOST_ALL_DYN_LINK ;
2012-03-15 18:17:10 +01:00
}
else
{
result += <library>/boost/system//boost_system/<link>static ;
2014-07-06 21:18:00 +02:00
result += <library>/boost/chrono//boost_chrono/<link>static ;
2014-08-18 23:37:58 +02:00
result += <library>/boost/random//boost_random/<link>static ;
}
2014-12-01 11:43:34 +01:00
if <toolset>gcc in $(properties)
&& ! <target-os>windows in $(properties)
&& <link>shared in $(properties)
2008-12-21 03:38:37 +01:00
{
result += <fpic>on ;
}
}
else
{
result += <library>/boost/system//boost_system/<link>shared ;
2014-07-06 21:18:00 +02:00
result += <library>/boost/chrono//boost_chrono/<link>shared ;
2014-08-18 23:37:58 +02:00
result += <library>/boost/random//boost_random/<link>shared ;
}
result += <include>$(BOOST_ROOT)
<define>BOOST_ALL_NO_LIB
<define>BOOST_MULTI_INDEX_DISABLE_SERIALIZATION
;
2012-07-23 18:10:34 +02:00
}
2012-03-15 18:17:10 +01:00
else
2008-06-07 19:36:33 +02:00
{
2012-03-15 18:17:10 +01:00
result += <library>boost_system ;
2014-07-06 21:18:00 +02:00
result += <library>boost_chrono ;
result += <library>boost_random ;
2012-07-23 18:10:34 +02:00
2008-06-07 19:36:33 +02:00
# on mac the boost headers are installed in
# a directory that isn't automatically accessable
2011-09-05 01:29:47 +02:00
# on open indiana, boost is install at /usr/g++/include
2008-06-07 19:36:33 +02:00
result += <include>/opt/local/include/boost-1_35
2009-12-06 03:24:34 +01:00
<include>/opt/local/include
2011-09-05 01:29:47 +02:00
<include>/usr/g++/include
2008-06-07 19:36:33 +02:00
;
}
return $(result) ;
}
# rule for adding the right source files
# depending on target-os and features
rule building ( properties * )
{
local result ;
if <link>shared in $(properties) && <export-extra>on in $(properties)
{
# 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
result += <define>TORRENT_EXPORT_EXTRA ;
}
if ( <variant>debug in $(properties)
&& ( <toolset>clang in $(properties)
|| <toolset>gcc in $(properties)
|| <toolset>darwin in $(properties) ) )
{
result += <cflags>-ftrapv ;
}
2012-01-26 11:33:39 +01:00
if ( <variant>debug in $(properties)
|| <asserts>on in $(properties) )
2007-09-01 06:08:39 +02:00
{
result += <source>src/assert.cpp ;
}
if <crypto>openssl in $(properties)
2012-03-16 08:45:27 +01:00
{
result += <source>src/asio_ssl.cpp ;
}
if <encryption>on in $(properties)
{
result += <source>src/mpi.c ;
result += <source>src/pe_crypto.cpp ;
}
if <crypo>built-in in $(properties)
{
result += <source>src/sha1.cpp ;
}
if ( <toolset>darwin in $(properties)
|| <toolset>gcc in $(properties)
2013-04-27 21:35:41 +02:00
|| <toolset>clang in $(propertoes)
|| <toolset>clang-darwin in $(propertoes) )
&& <link>shared in $(properties)
2012-03-21 17:34:41 +01:00
# 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
2012-12-15 06:09:11 +01:00
&& ! <debug-iterators>on in $(properties)
{
# hide non-external symbols
# use ms-compat because boost.asio (as of 1.47.0
2013-05-02 07:36:08 +02:00
# appears to have some types not fully exported)
result += <cflags>-fvisibility=hidden ;
result += <cxxflags>-fvisibility-inlines-hidden ;
if ( <toolset>gcc in $(properties) )
{
result += <linkflags>-Wl,-Bsymbolic ;
}
}
return $(result) ;
}
2004-03-17 13:14:44 +01:00
rule tag ( name : type ? : property-set )
{
name = [ virtual-target.add-prefix-and-suffix $(name) : $(type) : $(property-set) ] ;
if $(type) = SHARED_LIB &&
( ! ( [ $(property-set).get <target-os> ] in windows cygwin ) )
{
name = $(name).$(VERSION) ;
}
return $(name) ;
}
feature tcmalloc : no yes : composite propagated link-incompatible ;
2009-11-27 19:46:29 +01:00
feature ipv6 : on off : composite propagated link-incompatible ;
feature.compose <ipv6>off : <define>TORRENT_USE_IPV6=0 ;
2014-12-17 03:45:32 +01:00
feature sanitize : off bounds undefined thread rtc : composite propagated link-incompatible ;
# sanitize is a clang and GCC feature
2014-12-17 03:45:32 +01:00
feature.compose <sanitize>bounds : <cflags>-fsanitize=bounds <cflags>-fsanitize-undefined-trap-on-error <linkflags>-fsanitize=bounds <linkflags>-fsanitize-undefined-trap-on-error ;
feature.compose <sanitize>undefined : <cflags>-fsanitize=undefined <linkflags>-fsanitize=undefined ;
feature.compose <sanitize>thread : <cflags>-fsanitize=thread <linkflags>-fsanitize=thread ;
# RTC (runtime check) is an msvc feature
feature.compose <sanitize>rtc : <cflags>/RTCc <cflags>/RTCsu ;
feature need-librt : no yes : composite propagated link-incompatible ;
feature fiemap : off on : composite propagated ;
feature.compose <fiemap>on : <define>HAVE_LINUX_FIEMAP_H ;
2014-07-06 21:18:00 +02:00
feature file-leak-logging : off on : composite propagated ;
feature.compose <file-leak-logging>on : <define>TORRENT_DEBUG_FILE_LEAKS=1 ;
2012-07-31 18:53:37 +02:00
feature i2p : on off : composite propagated ;
feature.compose <i2p>on : <define>TORRENT_USE_I2P=1 ;
feature.compose <i2p>off : <define>TORRENT_USE_I2P=0 ;
2011-02-09 10:54:45 +01:00
feature iconv : auto on off : composite propagated ;
feature.compose <iconv>on : <define>TORRENT_USE_ICONV=1 ;
feature.compose <iconv>off : <define>TORRENT_USE_ICONV=0 ;
2014-11-09 12:17:13 +01:00
feature use-valgrind : off on : composite propagated link-incompatible ;
feature.compose <use-valgrind>on : <define>TORRENT_USE_VALGRIND=1 ;
2014-07-06 21:18:00 +02:00
feature memory-optimization : off on : composite propagated link-incompatible ;
feature.compose <memory-optimization>on : <define>TORRENT_OPTIMIZE_MEMORY_USAGE ;
feature asserts : auto on off production system : composite propagated ;
feature.compose <asserts>on : <define>TORRENT_RELEASE_ASSERTS=1 ;
2011-08-15 01:30:40 +02:00
feature.compose <asserts>production : <define>TORRENT_PRODUCTION_ASSERTS=1 <define>TORRENT_RELEASE_ASSERTS=1 ;
feature.compose <asserts>off : <define>TORRENT_USE_ASSERTS=0 ;
feature.compose <asserts>system : <define>TORRENT_USE_SYSTEM_ASSERTS=1 ;
2010-05-06 04:18:08 +02:00
feature windows-version : xp vista win7 : composite propagated link-incompatible ;
2010-12-01 06:47:18 +01:00
feature.compose <windows-version>xp : <define>_WIN32_WINNT=0x0501 ;
feature.compose <windows-version>vista : <define>_WIN32_WINNT=0x0600 ;
feature.compose <windows-version>win7 : <define>_WIN32_WINNT=0x0601 ;
feature extensions : on off : composite propagated link-incompatible ;
feature.compose <extensions>off : <define>TORRENT_DISABLE_EXTENSIONS ;
feature asio-debugging : off on : composite propagated link-incompatible ;
feature.compose <asio-debugging>on : <define>TORRENT_ASIO_DEBUGGING ;
2014-07-06 21:18:00 +02:00
feature picker-debugging : off on : composite propagated link-incompatible ;
feature.compose <picker-debugging>on : <define>TORRENT_DEBUG_REFCOUNTS ;
# deprecated use allocator=pool instead
2014-07-06 21:18:00 +02:00
feature pool-allocators : on off debug : composite propagated link-incompatible ;
feature.compose <pool-allocators>off : <define>TORRENT_DISABLE_POOL_ALLOCATOR ;
2014-07-06 21:18:00 +02:00
feature.compose <pool-allocators>debug : <define>TORRENT_DISABLE_POOL_ALLOCATOR <define>TORRENT_DEBUG_BUFFERS ;
feature allocator : pool system debug : composite propagated ;
feature.compose <allocator>system : <define>TORRENT_DISABLE_POOL_ALLOCATOR ;
feature.compose <allocator>debug : <define>TORRENT_DISABLE_POOL_ALLOCATOR <define>TORRENT_DEBUG_BUFFERS ;
feature piece-allocator : valloc memalign posix_memalign : composite propagated ;
feature.compose <piece-allocator>memalign : <define>TORRENT_USE_MEMALIGN=1 ;
feature.compose <piece-allocator>posix_memalign : <define>TORRENT_USE_POSIX_MEMALIGN=1 ;
feature bandwidth-limit-logging : off on : composite propagated link-incompatible ;
feature.compose <bandwidth-limit-logging>on : <define>TORRENT_VERBOSE_BANDWIDTH_LIMIT ;
feature invariant-checks : on off full : composite propagated link-incompatible ;
feature.compose <invariant-checks>off : <define>TORRENT_DISABLE_INVARIANT_CHECKS ;
feature.compose <invariant-checks>full : <define>TORRENT_EXPENSIVE_INVARIANT_CHECKS ;
feature request-log : off on : composite propagated link-incompatible ;
feature.compose <request-log>on : <define>TORRENT_REQUEST_LOGGING ;
feature disk-stats : off on : composite propagated link-incompatible ;
feature.compose <disk-stats>on : <define>TORRENT_DISK_STATS ;
feature simulate-slow-read : off on : composite propagated ;
feature.compose <simulate-slow-read>on : <define>TORRENT_SIMULATE_SLOW_READ ;
feature logging : off on : composite propagated link-incompatible ;
feature.compose <logging>on : <define>TORRENT_LOGGING ;
2004-11-01 00:16:08 +01:00
feature dht : on off logging : composite propagated link-incompatible ;
feature.compose <dht>off : <define>TORRENT_DISABLE_DHT ;
feature.compose <dht>logging : <define>TORRENT_DHT_VERBOSE_LOGGING ;
2004-02-04 12:00:29 +01:00
feature encryption : on off : composite propagated link-incompatible ;
2009-11-08 04:09:19 +01:00
feature.compose <encryption>off : <define>TORRENT_DISABLE_ENCRYPTION ;
2015-01-04 02:04:56 +01:00
feature crypto : built-in openssl gcrypt : composite propagated ;
feature.compose <crypto>openssl : <define>TORRENT_USE_OPENSSL ;
feature.compose <crypto>gcrypt : <define>TORRENT_USE_GCRYPT ;
feature resolve-countries : on off : composite propagated link-incompatible ;
feature.compose <resolve-countries>off : <define>TORRENT_DISABLE_RESOLVE_COUNTRIES ;
2008-07-20 13:53:21 +02:00
feature character-set : unicode ansi : composite propagated link-incompatible ;
feature.compose <character-set>unicode : <define>_UNICODE <define>UNICODE ;
feature deprecated-functions : on off : composite propagated link-incompatible ;
feature.compose <deprecated-functions>off : <define>TORRENT_NO_DEPRECATE ;
2007-05-14 09:31:01 +02:00
feature upnp-logging : off on : composite propagated link-incompatible ;
feature.compose <upnp-logging>on : <define>TORRENT_UPNP_LOGGING ;
feature boost : system source : link-incompatible propagated ;
feature boost-link : static shared : propagated composite ;
feature debug-iterators : off on : composite propagated link-incompatible ;
feature.compose <debug-iterators>on : <define>_SCL_SECURE=1 <define>_GLIBCXX_DEBUG ;
2015-02-10 05:00:44 +01:00
feature test-coverage : off on : composite propagated link-incompatible ;
feature fpic : off on : composite propagated link-incompatible ;
feature.compose <fpic>on : <cflags>-fPIC ;
2008-12-21 03:38:37 +01:00
feature.compose <fpic>off : <toolset>darwin:<cflags>-mdynamic-no-pic ;
2014-07-06 21:18:00 +02:00
feature profile-calls : off on : composite propagated link-incompatible ;
feature.compose <profile-calls>on : <define>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 ;
2014-11-30 11:07:19 +01:00
# this is a trick to get filename paths to targets to become shorter
# making it possible to build on windows, especially mingw seems particular
variant test_release
: release : <asserts>production <debug-symbols>on
<invariant-checks>full <boost-link>shared
<export-extra>on <debug-iterators>on <boost>source <threading>multi
;
variant test_debug : debug
: <crypto>openssl <logging>on <disk-stats>on
2014-11-30 11:07:19 +01:00
<dht>logging <request-log>on <allocator>debug <debug-iterators>on
<invariant-checks>full <boost-link>shared
<export-extra>on <debug-iterators>on <boost>source <threading>multi
;
variant test_barebones : debug
: <ipv6>off <dht>off <extensions>off <logging>off <boost-link>shared
2014-11-30 11:07:19 +01:00
<deprecated-functions>off <invariant-checks>off
<export-extra>on <debug-iterators>on <boost>source <threading>multi
;
# required for openssl on windows
lib ssleay32 : : <name>ssleay32 ;
lib libeay32 : : <name>libeay32 ;
lib advapi32 : : <name>Advapi32 ;
lib user32 : : <name>User32 ;
lib shell32 : : <name>shell32 ;
lib gdi32 : : <name>gdi32 ;
2012-01-26 11:33:39 +01:00
lib dbghelp : : <name>dbghelp ;
# required for networking on beos
lib netkit : : <name>net <search>/boot/system/lib <link>shared ;
2011-07-20 07:14:25 +02:00
lib gcc : : <name>gcc <link>static ;
2011-02-09 10:54:45 +01:00
# when using iconv
2012-05-13 06:40:21 +02:00
lib libiconv : : <name>iconv <link>shared <search>/usr/local/lib ;
2011-02-09 10:54:45 +01:00
2009-03-02 06:43:56 +01:00
local boost-library-search-path =
<search>/opt/local/lib
<search>/usr/lib
<search>/usr/local/lib
<search>/sw/lib
2011-09-05 01:29:47 +02:00
<search>/usr/g++/lib
2009-03-02 06:43:56 +01:00
;
2009-03-02 06:43:56 +01:00
lib boost_system : : <target-os>darwin <name>boost_system-mt $(boost-library-search-path) ;
2011-09-05 01:29:47 +02:00
lib boost_system : : <target-os>solaris <name>boost_system $(boost-library-search-path) ;
2009-03-02 06:43:56 +01:00
lib boost_system : : <name>boost_system ;
2014-07-06 21:18:00 +02:00
lib boost_chrono : : <target-os>darwin <name>boost_chrono-mt $(boost-library-search-path) ;
lib boost_chrono : : <target-os>solaris <name>boost_chrono $(boost-library-search-path) ;
lib boost_chrono : : <name>boost_chrono ;
2012-07-23 18:10:34 +02:00
lib boost_random : : <target-os>darwin <name>boost_random-mt $(boost-library-search-path) ;
lib boost_random : : <target-os>solaris <name>boost_random $(boost-library-search-path) ;
lib boost_random : : <name>boost_random ;
# openssl on linux/bsd/macos etc.
2009-11-08 04:09:19 +01:00
lib gcrypt : : <name>gcrypt <link>shared <search>/opt/local/lib ;
2013-09-01 19:39:40 +02:00
lib z : : <link>shared <name>z <search>/usr/lib ;
lib crypto : : <name>crypto <search>/usr/lib <use>z ;
2012-01-14 17:04:25 +01:00
lib ssl : : <name>ssl <link>shared <use>crypto <search>/opt/local/lib ;
2011-02-14 05:12:26 +01:00
lib dl : : <link>shared <name>dl ;
2014-07-06 21:18:00 +02:00
lib aio : : <link>shared <name>aio ;
# time functions used on linux require librt
lib librt : : <name>rt <link>shared ;
lib libsocket : : <use>libnsl <name>socket <link>shared <search>/usr/sfw/lib <link>shared ;
lib libnsl : : <name>nsl <link>shared <search>/usr/sfw/lib <link>shared ;
2009-01-27 09:24:48 +01:00
lib tcmalloc : : <name>tcmalloc <link>shared ;
2008-11-23 21:40:08 +01:00
# GeoIP shared library
lib GeoIP : : <name>GeoIP <link>shared ;
2008-11-23 21:40:08 +01:00
# socket libraries on windows
lib wsock32 : : <name>wsock32 <link>shared ;
lib ws2_32 : : <name>ws2_32 <link>shared ;
2010-11-29 02:33:05 +01:00
lib iphlpapi : : <name>iphlpapi <link>shared ;
SOURCES =
alert
alert_manager
allocator
asio
assert
bandwidth_limit
bandwidth_manager
bandwidth_queue_entry
bdecode
2014-07-06 21:18:00 +02:00
block_cache
bloom_filter
chained_buffer
choker
close_reason
2014-07-06 21:18:00 +02:00
crc32c
create_torrent
disk_buffer_holder
2014-07-06 21:18:00 +02:00
disk_buffer_pool
disk_io_job
disk_job_pool
entry
error_code
file_storage
2008-04-11 05:41:09 +02:00
lazy_bdecode
escape_string
string_util
file
gzip
hasher
http_connection
http_stream
2008-01-12 10:36:03 +01:00
http_parser
identify_client
ip_filter
ip_voter
peer_connection
2014-07-06 21:18:00 +02:00
platform_util
bt_peer_connection
web_connection_base
web_peer_connection
2008-12-30 04:54:07 +01:00
http_seed_connection
2009-08-20 05:19:12 +02:00
i2p_stream
instantiate_connection
natpmp
2010-11-29 02:33:05 +01:00
packet_buffer
piece_picker
2014-10-26 08:34:31 +01:00
peer_list
2014-07-06 21:18:00 +02:00
proxy_base
2010-03-16 07:14:22 +01:00
puff
random
receive_buffer
2011-01-18 04:41:54 +01:00
rss
session
session_impl
session_call
2014-07-06 21:18:00 +02:00
settings_pack
socket_io
socket_type
socks5_stream
stat
storage
torrent
torrent_handle
torrent_info
2014-07-06 21:18:00 +02:00
torrent_peer
torrent_peer_allocator
2009-11-25 07:55:34 +01:00
time
tracker_manager
http_tracker_connection
udp_tracker_connection
sha1
2014-07-06 21:18:00 +02:00
tailqueue
2010-11-29 02:33:05 +01:00
timestamp_history
2007-12-09 05:15:24 +01:00
udp_socket
upnp
utf8
2010-11-29 02:33:05 +01:00
utp_socket_manager
utp_stream
file_pool
lsd
disk_buffer_pool
2007-06-10 22:46:09 +02:00
disk_io_thread
enum_net
broadcast_socket
magnet_uri
parse_url
ConvertUTF
thread
2014-05-03 23:10:44 +02:00
xml_parse
2014-07-06 21:18:00 +02:00
peer_class
peer_class_set
part_file
stat_cache
request_blocks
session_stats
performance_counters
resolver
session_settings
# -- extensions --
metadata_transfer
ut_pex
ut_metadata
2008-11-27 21:51:59 +01:00
lt_trackers
smart_ban
;
KADEMLIA_SOURCES =
dht_tracker
node
refresh
rpc_manager
find_data
node_id
routing_table
traversal_algorithm
logging
2014-07-06 21:18:00 +02:00
dos_blocker
get_peers
item
get_item
2004-02-21 12:52:21 +01:00
;
2004-02-08 17:04:50 +01:00
ED25519_SOURCES =
add_scalar
fe
ge
key_exchange
keypair
sc
seed
sha512
sign
verify
;
local usage-requirements =
<include>./include
2008-05-20 11:45:55 +02:00
<include>./include/libtorrent
2009-01-27 09:24:48 +01:00
<include>/usr/sfw/include
2012-05-13 06:40:21 +02:00
# freebsd doesn't seem to include this automatically
# and iconv.h is installed there
<include>/usr/local/include
<variant>release:<define>NDEBUG
<variant>debug:<define>TORRENT_DEBUG
<define>_FILE_OFFSET_BITS=64
<define>BOOST_EXCEPTION_DISABLE
2010-11-29 02:33:05 +01:00
# enable cancel support in asio
<define>BOOST_ASIO_ENABLE_CANCELIO
<conditional>@linking
2015-02-10 05:00:44 +01:00
<conditional>@coverage
# these compiler settings just makes the compiler standard conforming
<toolset>msvc:<cflags>/Zc:wchar_t
<toolset>msvc:<cflags>/Zc:forScope
# disable bogus deprecation warnings on msvc8
<toolset>msvc:<define>_SCL_SECURE_NO_DEPRECATE
<toolset>msvc:<define>_CRT_SECURE_NO_DEPRECATE
2007-09-01 06:08:39 +02:00
# msvc optimizations
<toolset>msvc,<variant>release:<linkflags>/OPT:ICF=5
<toolset>msvc,<variant>release:<linkflags>/OPT:REF
# disable warning C4503: decorated name length exceeded, name was truncated
<toolset>msvc:<cxxflags>/wd4503
# disable warning C4275: non-dll interface class 'x' used as base for dll-interface struct 'y'
<toolset>msvc:<cxxflags>/wd4275
# disable warning C4251: 'x' needs to have dll-interface to be used by clients of class 'y'
<toolset>msvc:<cxxflags>/wd4251
2007-09-10 09:51:58 +02:00
# disable some warnings for gcc
<toolset>gcc:<cflags>-fno-strict-aliasing
<toolset>gcc:<cflags>-Wno-missing-braces
2015-01-20 18:05:45 +01:00
<toolset>gcc:<cflags>-Wno-unused-local-typedefs
# suppress warnings caused by boost using c++11 features even when not
# in c++11 mode
<toolset>darwin:<cxxflags>-Wno-c++11-extensions
# assert on integer overflow
<boost>system:<cxxflags>$(CXXFLAGS)
<boost>system:<linkflags>$(LDFLAGS)
2009-06-27 21:30:15 +02:00
# this works around a bug in asio in boost-1.39
<define>BOOST_ASIO_HASH_MAP_BUCKETS=1021
# make sure asio symbols are properly exported
# and imported
<link>shared:<define>BOOST_ASIO_DYN_LINK
2012-06-03 07:13:08 +02:00
<define>BOOST_ASIO_SEPARATE_COMPILATION
<tag>@tag
;
2008-06-23 15:17:15 +02:00
project torrent ;
2008-06-23 15:17:15 +02:00
lib torrent
: # sources
src/$(SOURCES).cpp
: # requirements
<include>./ed25519/src
<threading>multi
<link>shared:<define>TORRENT_BUILDING_SHARED
2014-07-06 21:18:00 +02:00
<define>BOOST_NO_DEPRECATED
2012-04-15 06:00:58 +02:00
# on windows, when linking statically against asio
# but producing a DLL, everything inside the DLL needs
# to declare the symbol as being exported
2012-06-12 18:38:15 +02:00
<link>shared:<define>BOOST_ASIO_SOURCE
<link>shared:<define>BOOST_SYSTEM_SOURCE
2012-04-15 06:00:58 +02:00
<dht>on:<source>src/kademlia/$(KADEMLIA_SOURCES).cpp
<dht>logging:<source>src/kademlia/$(KADEMLIA_SOURCES).cpp
2014-07-12 08:20:16 +02:00
<dht>on:<source>ed25519/src/$(ED25519_SOURCES).cpp
<dht>logging:<source>ed25519/src/$(ED25519_SOURCES).cpp
<conditional>@building
<boost>system:<cxxflags>$(CXXFLAGS)
$(usage-requirements)
: # default build
<link>static
<threading>multi
: # usage requirements
$(usage-requirements)
2012-06-03 07:13:08 +02:00
<link>shared:<define>TORRENT_LINKING_SHARED
2014-07-06 21:18:00 +02:00
;
headers = [ path.glob-tree include/libtorrent : *.hpp ] ;
package.install install
2012-06-14 07:49:39 +02:00
: <install-source-root>libtorrent
<install-no-version-symlinks>on
:
: torrent
: $(headers)
;