2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, icu, expat, zlib, bzip2, python, fixDarwinDylibNames, libiconv
|
2017-07-09 18:37:14 +01:00
|
|
|
, which
|
2018-08-20 19:43:41 +01:00
|
|
|
, buildPackages
|
2018-06-24 03:43:05 +01:00
|
|
|
, toolset ? /**/ if stdenv.cc.isClang then "clang"
|
2017-07-09 18:37:14 +01:00
|
|
|
else null
|
2014-10-29 21:37:37 +00:00
|
|
|
, enableRelease ? true
|
|
|
|
, enableDebug ? false
|
|
|
|
, enableSingleThreaded ? false
|
|
|
|
, enableMultiThreaded ? true
|
2018-08-20 19:43:41 +01:00
|
|
|
, enableShared ? !(stdenv.hostPlatform.libc == "msvcrt") # problems for now
|
2016-02-16 19:36:51 +00:00
|
|
|
, enableStatic ? !enableShared
|
2018-07-01 18:13:57 +01:00
|
|
|
, enablePython ? false
|
|
|
|
, enableNumpy ? false
|
2014-10-29 21:37:37 +00:00
|
|
|
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
|
2017-07-09 18:37:14 +01:00
|
|
|
, patches ? []
|
2014-11-05 09:37:11 +00:00
|
|
|
, mpi ? null
|
2019-11-29 18:17:59 +00:00
|
|
|
, extraB2Args ? []
|
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 18:37:14 +01:00
|
|
|
assert enableShared || enableStatic;
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-07-09 18:37:14 +01:00
|
|
|
# Python isn't supported when cross-compiling
|
2018-08-20 19:43:41 +01:00
|
|
|
assert enablePython -> stdenv.hostPlatform == stdenv.buildPlatform;
|
2017-09-23 07:54:46 +01:00
|
|
|
assert enableNumpy -> enablePython;
|
|
|
|
|
2020-04-13 12:17:53 +01:00
|
|
|
# Boost <1.69 can't be build with clang >8, because pth was removed
|
|
|
|
assert with stdenv.lib; ((toolset == "clang" && !(versionOlder stdenv.cc.version "8.0.0")) -> !(versionOlder version "1.69"));
|
|
|
|
|
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 17:21:16 +01: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 18:37:14 +01:00
|
|
|
b2Args = concatStringsSep " " ([
|
2014-10-29 21:37:37 +00:00
|
|
|
"--includedir=$dev/include"
|
2016-04-27 22:41:28 +01:00
|
|
|
"--libdir=$out/lib"
|
2018-09-24 17:21:16 +01:00
|
|
|
"-j${jobs}"
|
2014-10-29 21:37:37 +00:00
|
|
|
"--layout=${layout}"
|
|
|
|
"variant=${variant}"
|
|
|
|
"threading=${threading}"
|
|
|
|
"link=${link}"
|
2015-10-15 12:57:38 +01:00
|
|
|
"-sEXPAT_INCLUDE=${expat.dev}/include"
|
|
|
|
"-sEXPAT_LIBPATH=${expat.out}/lib"
|
2018-06-24 03:43:05 +01:00
|
|
|
|
|
|
|
# TODO: make this unconditional
|
2018-08-20 19:43:41 +01: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 03:43:05 +01: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 19:43:41 +01: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 03:43:05 +01: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 18:37:14 +01:00
|
|
|
++ optional (toolset != null) "toolset=${toolset}"
|
2018-08-27 19:44:07 +01:00
|
|
|
++ optional (!enablePython) "--without-python"
|
2018-08-20 19:43:41 +01:00
|
|
|
++ optional (mpi != null || stdenv.hostPlatform != stdenv.buildPlatform) "--user-config=user-config.jam"
|
|
|
|
++ optionals (stdenv.hostPlatform.libc == "msvcrt") [
|
2015-04-12 09:32:18 +01:00
|
|
|
"threadapi=win32"
|
2019-11-29 18:17:59 +00:00
|
|
|
] ++ extraB2Args
|
|
|
|
);
|
2014-10-30 21:43:37 +00:00
|
|
|
|
2014-10-29 21:37:37 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2019-05-24 22:40:37 +01:00
|
|
|
pname = "boost";
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2019-05-24 22:40:37 +01:00
|
|
|
inherit src version;
|
2017-07-09 18:37:14 +01:00
|
|
|
|
2019-10-26 16:39:27 +01:00
|
|
|
patchFlags = [];
|
2018-10-17 05:19:34 +01:00
|
|
|
|
2018-07-03 20:08:46 +01:00
|
|
|
patches = patches
|
2019-04-16 08:11:01 +01:00
|
|
|
++ optional stdenv.isDarwin (
|
|
|
|
if version == "1.55.0"
|
|
|
|
then ./darwin-1.55-no-system-python.patch
|
2020-04-14 21:53:32 +01:00
|
|
|
else ./darwin-no-system-python.patch)
|
2020-10-11 09:01:45 +01:00
|
|
|
++ optional (and (versionAtLeast version "1.70") (!versionAtLeast version "1.73")) ./cmake-paths.patch
|
|
|
|
++ optional (versionAtLeast version "1.73") ./cmake-paths-173.patch;
|
2014-10-29 21:37:37 +00:00
|
|
|
|
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://boost.org/";
|
2014-10-29 21:37:37 +00:00
|
|
|
description = "Collection of C++ libraries";
|
2019-05-24 22:40:37 +01:00
|
|
|
license = licenses.boost;
|
2019-04-25 01:11:07 +01:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2019-05-24 22:40:37 +01:00
|
|
|
badPlatforms = optional (versionOlder version "1.59") "aarch64-linux"
|
|
|
|
++ optional ((versionOlder version "1.57") || version == "1.58") "x86_64-darwin";
|
2019-01-26 10:01:09 +00:00
|
|
|
maintainers = with maintainers; [ peti ];
|
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 22:41:28 +01: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 18:37:14 +01:00
|
|
|
cat << EOF >> user-config.jam
|
2014-11-05 09:37:11 +00:00
|
|
|
using mpi : ${mpi}/bin/mpiCC ;
|
|
|
|
EOF
|
2018-08-20 19:43:41 +01:00
|
|
|
'' + optionalString (stdenv.hostPlatform != stdenv.buildPlatform) ''
|
2017-07-09 18:37:14 +01: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;
|
|
|
|
|
2020-10-26 07:17:14 +00:00
|
|
|
nativeBuildInputs = [ which ]
|
|
|
|
++ optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
|
2018-10-17 20:10:49 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2016-02-16 19:44:54 +00:00
|
|
|
buildInputs = [ expat zlib bzip2 libiconv ]
|
2018-08-20 19:43:41 +01:00
|
|
|
++ optional (stdenv.hostPlatform == stdenv.buildPlatform) icu
|
2017-09-23 07:54:46 +01:00
|
|
|
++ 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 18:37:14 +01: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 19:43:41 +01: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 18:37:14 +01:00
|
|
|
buildPhase = ''
|
2019-05-24 22:40:37 +01:00
|
|
|
runHook preBuild
|
2017-07-09 18:37:14 +01:00
|
|
|
./b2 ${b2Args}
|
2019-05-24 22:40:37 +01:00
|
|
|
runHook postBuild
|
2017-07-09 18:37:14 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
2019-05-24 22:40:37 +01:00
|
|
|
runHook preInstall
|
|
|
|
|
2017-07-09 18:37:14 +01:00
|
|
|
# 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 18:37:14 +01:00
|
|
|
# Let boost install everything else
|
|
|
|
./b2 ${b2Args} install
|
2019-05-24 22:40:37 +01:00
|
|
|
|
|
|
|
runHook postInstall
|
2017-07-09 18:37:14 +01:00
|
|
|
'';
|
2014-10-29 21:37:37 +00:00
|
|
|
|
2017-07-09 18:37:14 +01: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 22:10:23 +01:00
|
|
|
-exec sed '1s/^\xef\xbb\xbf//;1i#line 1 "{}"' -i '{}' \;
|
2018-08-20 19:43:41 +01:00
|
|
|
'' + optionalString (stdenv.hostPlatform.libc == "msvcrt") ''
|
2017-07-09 18:37:14 +01:00
|
|
|
$RANLIB "$out/lib/"*.a
|
|
|
|
'';
|
2014-11-10 19:31:56 +00:00
|
|
|
|
2016-08-29 01:30:01 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
2015-04-19 13:43:06 +01:00
|
|
|
setOutputFlags = false;
|
2014-10-29 21:37:37 +00:00
|
|
|
}
|