2015-09-12 09:38:32 +02:00
|
|
|
{ lib, stdenv, fetch, cmake, libcxxabi, fixDarwinDylibNames, version }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "libc++-${version}";
|
|
|
|
|
2016-01-07 06:16:47 +01:00
|
|
|
src = fetch "libcxx" "0i7iyzk024krda5spfpfi8jksh83yp3bxqkal0xp76ffi11bszrm";
|
2015-09-12 09:38:32 +02:00
|
|
|
|
|
|
|
postUnpack = ''
|
|
|
|
unpackFile ${libcxxabi.src}
|
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# Get headers from the cxxabi source so we can see private headers not installed by the cxxabi package
|
|
|
|
cmakeFlagsArray=($cmakeFlagsArray -DLIBCXX_CXX_ABI_INCLUDE_PATHS="$NIX_BUILD_TOP/libcxxabi-${version}.src/include")
|
|
|
|
'';
|
|
|
|
|
2016-12-30 21:58:03 +01:00
|
|
|
patches = [
|
|
|
|
./darwin.patch
|
|
|
|
./r242056.patch
|
2017-11-08 22:01:20 +01:00
|
|
|
# glibc 2.26 fix
|
|
|
|
./xlocale-glibc-2.26.patch
|
2016-12-30 21:58:03 +01:00
|
|
|
];
|
2015-09-12 09:38:32 +02:00
|
|
|
|
|
|
|
buildInputs = [ cmake libcxxabi ] ++ lib.optional stdenv.isDarwin fixDarwinDylibNames;
|
|
|
|
|
2016-08-25 23:11:27 +02:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DLIBCXX_LIBCXXABI_LIB_PATH=${libcxxabi}/lib"
|
|
|
|
"-DLIBCXX_LIBCPPABI_VERSION=2"
|
|
|
|
"-DLIBCXX_CXX_ABI=libcxxabi"
|
|
|
|
];
|
2015-09-12 09:38:32 +02:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
linkCxxAbi = stdenv.isLinux;
|
|
|
|
|
2018-05-07 19:07:19 +02:00
|
|
|
setupHooks = [
|
|
|
|
../../../../../build-support/setup-hooks/role.bash
|
|
|
|
./setup-hook.sh
|
|
|
|
];
|
2015-09-12 09:38:32 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://libcxx.llvm.org/;
|
|
|
|
description = "A new implementation of the C++ standard library, targeting C++11";
|
2017-02-11 23:13:29 +01:00
|
|
|
license = with stdenv.lib.licenses; [ ncsa mit ];
|
2015-09-12 09:38:32 +02:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
|
|
|
};
|
|
|
|
}
|