2016-02-16 19:44:54 +00:00
|
|
|
{ stdenv, fetchurl, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, libiconv
|
2017-07-09 17:37:14 +00:00
|
|
|
, which
|
2018-08-20 18:43:41 +00:00
|
|
|
, buildPackages
|
2018-06-24 02:43:05 +00:00
|
|
|
, toolset ? /**/ if stdenv.cc.isClang then "clang"
|
2017-07-09 17:37:14 +00:00
|
|
|
else null
|
2014-10-29 21:37:37 +00:00
|
|
|
, enableRelease ? true
|
|
|
|
, enableDebug ? false
|
|
|
|
, enableSingleThreaded ? false
|
|
|
|
, enableMultiThreaded ? true
|
2018-08-20 18:43:41 +00:00
|
|
|
, enableShared ? !(stdenv.hostPlatform.libc == "msvcrt") # problems for now
|
2016-02-16 19:36:51 +00:00
|
|
|
, enableStatic ? !enableShared
|
2018-07-01 17:13:57 +00:00
|
|
|
, enablePython ? false
|
|
|
|
, enableNumpy ? false
|
2014-10-29 21:37:37 +00:00
|
|
|
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
|
2017-07-09 17:37:14 +00:00
|
|
|
, patches ? []
|
2014-11-05 09:37:11 +00:00
|
|
|
, mpi ? null
|
2014-10-29 21:37:37 +00:00
|
|
|
|
|
|
|
# Attributes inherit from specific versions
|
|
|
|
, version, src
|
2014-11-03 19:14:08 +00:00
|
|
|
, ...
|
2014-10-29 21:37:37 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
# We must build at least one type of libraries
|
2017-07-09 17:37:14 +00:00
|
|
|
assert enableShared || enableStatic;
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
# Python isn't supported when cross-compiling
|
2018-08-20 18:43:41 +00:00
|
|
|
assert enablePython -> stdenv.hostPlatform == stdenv.buildPlatform;
|
2017-09-23 06:54:46 +00:00
|
|
|
assert enableNumpy -> enablePython;
|
|
|
|
|
2014-10-29 21:37:37 +00:00
|
|
|
with stdenv.lib;
|
|
|
|
let
|
|
|
|
|
|
|
|
variant = concatStringsSep ","
|
|
|
|
(optional enableRelease "release" ++
|
|
|
|
optional enableDebug "debug");
|
|
|
|
|
|
|
|
threading = concatStringsSep ","
|
|
|
|
(optional enableSingleThreaded "single" ++
|
|
|
|
optional enableMultiThreaded "multi");
|
|
|
|
|
|
|
|
link = concatStringsSep ","
|
|
|
|
(optional enableShared "shared" ++
|
|
|
|
optional enableStatic "static");
|
|
|
|
|
|
|
|
runtime-link = if enableShared then "shared" else "static";
|
|
|
|
|
|
|
|
# To avoid library name collisions
|
|
|
|
layout = if taggedLayout then "tagged" else "system";
|
|
|
|
|
2018-09-24 16:21:16 +00:00
|
|
|
# Versions of b2 before 1.65 have job limits; specifically:
|
|
|
|
# - Versions before 1.58 support up to 64 jobs[0]
|
|
|
|
# - Versions before 1.65 support up to 256 jobs[1]
|
|
|
|
#
|
|
|
|
# [0]: https://github.com/boostorg/build/commit/0ef40cb86728f1cd804830fef89a6d39153ff632
|
|
|
|
# [1]: https://github.com/boostorg/build/commit/316e26ca718afc65d6170029284521392524e4f8
|
|
|
|
jobs =
|
|
|
|
if versionOlder version "1.58" then
|
|
|
|
"$(($NIX_BUILD_CORES<=64 ? $NIX_BUILD_CORES : 64))"
|
|
|
|
else if versionOlder version "1.65" then
|
|
|
|
"$(($NIX_BUILD_CORES<=256 ? $NIX_BUILD_CORES : 256))"
|
|
|
|
else
|
|
|
|
"$NIX_BUILD_CORES";
|
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
b2Args = concatStringsSep " " ([
|
2014-10-29 21:37:37 +00:00
|
|
|
"--includedir=$dev/include"
|
2016-04-27 21:41:28 +00:00
|
|
|
"--libdir=$out/lib"
|
2018-09-24 16:21:16 +00:00
|
|
|
"-j${jobs}"
|
2014-10-29 21:37:37 +00:00
|
|
|
"--layout=${layout}"
|
|
|
|
"variant=${variant}"
|
|
|
|
"threading=${threading}"
|
|
|
|
"link=${link}"
|
2015-10-15 11:57:38 +00:00
|
|
|
"-sEXPAT_INCLUDE=${expat.dev}/include"
|
|
|
|
"-sEXPAT_LIBPATH=${expat.out}/lib"
|
2018-06-24 02:43:05 +00:00
|
|
|
|
|
|
|
# TODO: make this unconditional
|
2018-08-20 18:43:41 +00:00
|
|
|
] ++ optionals (stdenv.hostPlatform != stdenv.buildPlatform) [
|
|
|
|
"address-model=${toString stdenv.hostPlatform.parsed.cpu.bits}"
|
|
|
|
"architecture=${toString stdenv.hostPlatform.parsed.cpu.family}"
|
|
|
|
"binary-format=${toString stdenv.hostPlatform.parsed.kernel.execFormat.name}"
|
|
|
|
"target-os=${toString stdenv.hostPlatform.parsed.kernel.name}"
|
2018-06-24 02:43:05 +00:00
|
|
|
|
|
|
|
# adapted from table in boost manual
|
|
|
|
# https://www.boost.org/doc/libs/1_66_0/libs/context/doc/html/context/architectures.html
|
2018-08-20 18:43:41 +00:00
|
|
|
"abi=${if stdenv.hostPlatform.parsed.cpu.family == "arm" then "aapcs"
|
|
|
|
else if stdenv.hostPlatform.isWindows then "ms"
|
|
|
|
else if stdenv.hostPlatform.isMips then "o32"
|
2018-06-24 02:43:05 +00:00
|
|
|
else "sysv"}"
|
2018-03-22 12:45:39 +00:00
|
|
|
] ++ optional (link != "static") "runtime-link=${runtime-link}"
|
|
|
|
++ optional (variant == "release") "debug-symbols=off"
|
2017-07-09 17:37:14 +00:00
|
|
|
++ optional (toolset != null) "toolset=${toolset}"
|
2018-08-27 18:44:07 +00:00
|
|
|
++ optional (!enablePython) "--without-python"
|
2018-08-20 18:43:41 +00:00
|
|
|
++ optional (mpi != null || stdenv.hostPlatform != stdenv.buildPlatform) "--user-config=user-config.jam"
|
|
|
|
++ optionals (stdenv.hostPlatform.libc == "msvcrt") [
|
2015-04-12 08:32:18 +00:00
|
|
|
"threadapi=win32"
|
2017-07-09 17:37:14 +00:00
|
|
|
]);
|
2014-10-30 21:43:37 +00:00
|
|
|
|
2014-10-29 21:37:37 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "boost-${version}";
|
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
inherit src;
|
|
|
|
|
2018-08-20 18:43:41 +00:00
|
|
|
patchFlags = optionalString (stdenv.hostPlatform.libc == "msvcrt") "-p0";
|
2018-07-03 19:08:46 +00:00
|
|
|
patches = patches
|
|
|
|
++ optional stdenv.isDarwin ./darwin-no-system-python.patch
|
2018-08-20 18:43:41 +00:00
|
|
|
++ optional (stdenv.hostPlatform.libc == "msvcrt") (fetchurl {
|
2018-07-03 19:08:46 +00:00
|
|
|
url = "https://svn.boost.org/trac/boost/raw-attachment/tickaet/7262/"
|
|
|
|
+ "boost-mingw.patch";
|
|
|
|
sha256 = "0s32kwll66k50w6r5np1y5g907b7lcpsjhfgr7rsw7q5syhzddyj";
|
|
|
|
});
|
2014-10-29 21:37:37 +00:00
|
|
|
|
|
|
|
meta = {
|
2017-08-01 20:03:30 +00:00
|
|
|
homepage = http://boost.org/;
|
2014-10-29 21:37:37 +00:00
|
|
|
description = "Collection of C++ libraries";
|
2014-11-06 00:44:33 +00:00
|
|
|
license = stdenv.lib.licenses.boost;
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-03-10 18:06:03 +00:00
|
|
|
platforms = (if versionOlder version "1.59" then remove "aarch64-linux" else id) platforms.unix;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = with maintainers; [ peti wkennington ];
|
2014-10-29 21:37:37 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
preConfigure = ''
|
2014-11-04 12:21:33 +00:00
|
|
|
if test -f tools/build/src/tools/clang-darwin.jam ; then
|
|
|
|
substituteInPlace tools/build/src/tools/clang-darwin.jam \
|
2016-04-27 21:41:28 +00:00
|
|
|
--replace '@rpath/$(<[1]:D=)' "$out/lib/\$(<[1]:D=)";
|
2014-11-04 12:21:33 +00:00
|
|
|
fi;
|
2014-11-05 09:37:11 +00:00
|
|
|
'' + optionalString (mpi != null) ''
|
2017-07-09 17:37:14 +00:00
|
|
|
cat << EOF >> user-config.jam
|
2014-11-05 09:37:11 +00:00
|
|
|
using mpi : ${mpi}/bin/mpiCC ;
|
|
|
|
EOF
|
2018-08-20 18:43:41 +00:00
|
|
|
'' + optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2017-07-09 17:37:14 +00:00
|
|
|
cat << EOF >> user-config.jam
|
|
|
|
using gcc : cross : ${stdenv.cc.targetPrefix}c++ ;
|
|
|
|
EOF
|
2014-10-29 21:37:37 +00:00
|
|
|
'';
|
|
|
|
|
2014-11-04 08:28:03 +00:00
|
|
|
NIX_CFLAGS_LINK = stdenv.lib.optionalString stdenv.isDarwin
|
|
|
|
"-headerpad_max_install_names";
|
|
|
|
|
2014-10-29 21:37:37 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
nativeBuildInputs = [ which buildPackages.stdenv.cc ];
|
2016-02-16 19:44:54 +00:00
|
|
|
buildInputs = [ expat zlib bzip2 libiconv ]
|
2018-08-20 18:43:41 +00:00
|
|
|
++ optional (stdenv.hostPlatform == stdenv.buildPlatform) icu
|
2017-09-23 06:54:46 +00:00
|
|
|
++ optional stdenv.isDarwin fixDarwinDylibNames
|
|
|
|
++ optional enablePython python
|
2017-12-07 14:32:07 +00:00
|
|
|
++ optional enableNumpy python.pkgs.numpy;
|
2014-10-29 21:37:37 +00:00
|
|
|
|
|
|
|
configureScript = "./bootstrap.sh";
|
2017-07-09 17:37:14 +00:00
|
|
|
configurePlatforms = [];
|
|
|
|
configureFlags = [
|
|
|
|
"--includedir=$(dev)/include"
|
|
|
|
"--libdir=$(out)/lib"
|
2018-01-03 19:26:16 +00:00
|
|
|
] ++ optional enablePython "--with-python=${python.interpreter}"
|
2018-08-20 18:43:41 +00:00
|
|
|
++ [ (if stdenv.hostPlatform == stdenv.buildPlatform then "--with-icu=${icu.dev}" else "--without-icu") ]
|
2018-01-03 19:26:16 +00:00
|
|
|
++ optional (toolset != null) "--with-toolset=${toolset}";
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
buildPhase = ''
|
|
|
|
./b2 ${b2Args}
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
# boostbook is needed by some applications
|
|
|
|
mkdir -p $dev/share/boostbook
|
|
|
|
cp -a tools/boostbook/{xsl,dtd} $dev/share/boostbook/
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
# Let boost install everything else
|
|
|
|
./b2 ${b2Args} install
|
|
|
|
'';
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-07-09 17:37:14 +00:00
|
|
|
postFixup = ''
|
|
|
|
# Make boost header paths relative so that they are not runtime dependencies
|
2018-02-05 20:56:43 +00:00
|
|
|
cd "$dev" && find include \( -name '*.hpp' -or -name '*.h' -or -name '*.ipp' \) \
|
2018-09-29 21:10:23 +00:00
|
|
|
-exec sed '1s/^\xef\xbb\xbf//;1i#line 1 "{}"' -i '{}' \;
|
2018-08-20 18:43:41 +00:00
|
|
|
'' + optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
|
2017-07-09 17:37:14 +00:00
|
|
|
$RANLIB "$out/lib/"*.a
|
|
|
|
'';
|
2014-11-10 19:31:56 +00:00
|
|
|
|
2016-08-29 00:30:01 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-04-19 12:43:06 +00:00
|
|
|
setOutputFlags = false;
|
2014-10-29 21:37:37 +00:00
|
|
|
}
|