mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
d90fb1c038
LLVM 11 libcxxabi has some flags to support usage in the Darwin stdenv, in particular, `standalone` and `withLibunwind`. Darwin stdenv needs the `standalone` flag because its `hostPlatform` set doesn't have `useLLVM` set to true. And it needs `withLibunwind` to explicitly disable including `libunwind` as a build input. We also prefix `install_name_tool` in case we're cross-compiling.
80 lines
2.7 KiB
Nix
80 lines
2.7 KiB
Nix
{ lib, stdenv, llvm_meta, cmake, python3, fetch, libcxx, libunwind, llvm, version
|
|
, enableShared ? !stdenv.hostPlatform.isStatic
|
|
, standalone ? stdenv.hostPlatform.useLLVM or false
|
|
, withLibunwind ? !stdenv.isDarwin && !stdenv.isFreeBSD && !stdenv.hostPlatform.isWasm
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "libcxxabi";
|
|
inherit version;
|
|
|
|
src = fetch "libcxxabi" "1l4idd8npbkm168d26kqn529yv3npsd8f2dm8a7iwyknj7iyivw8";
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
postUnpack = ''
|
|
unpackFile ${libcxx.src}
|
|
mv libcxx-* libcxx
|
|
unpackFile ${llvm.src}
|
|
mv llvm-* llvm
|
|
'' + lib.optionalString stdenv.isDarwin ''
|
|
export TRIPLE=x86_64-apple-darwin
|
|
'' + lib.optionalString stdenv.hostPlatform.isMusl ''
|
|
patch -p1 -d libcxx -i ${../../libcxx-0001-musl-hacks.patch}
|
|
'' + lib.optionalString stdenv.hostPlatform.isWasm ''
|
|
patch -p1 -d llvm -i ${./wasm.patch}
|
|
'';
|
|
|
|
patches = [
|
|
./gnu-install-dirs.patch
|
|
];
|
|
|
|
nativeBuildInputs = [ cmake python3 ];
|
|
buildInputs = lib.optional withLibunwind libunwind;
|
|
|
|
cmakeFlags = lib.optionals standalone [
|
|
"-DLLVM_ENABLE_LIBCXX=ON"
|
|
"-DLIBCXXABI_USE_LLVM_UNWINDER=ON"
|
|
] ++ lib.optionals stdenv.hostPlatform.isWasm [
|
|
"-DLIBCXXABI_ENABLE_THREADS=OFF"
|
|
"-DLIBCXXABI_ENABLE_EXCEPTIONS=OFF"
|
|
] ++ lib.optionals (!enableShared) [
|
|
"-DLIBCXXABI_ENABLE_SHARED=OFF"
|
|
];
|
|
|
|
installPhase = if stdenv.isDarwin
|
|
then ''
|
|
for file in lib/*.dylib; do
|
|
# this should be done in CMake, but having trouble figuring out
|
|
# the magic combination of necessary CMake variables
|
|
# if you fancy a try, take a look at
|
|
# https://gitlab.kitware.com/cmake/community/-/wikis/doc/cmake/RPATH-handling
|
|
${stdenv.cc.targetPrefix}install_name_tool -id $out/$file $file
|
|
done
|
|
make install
|
|
install -d 755 $out/include
|
|
install -m 644 ../include/*.h $out/include
|
|
''
|
|
else ''
|
|
install -d -m 755 $out/include $out/lib
|
|
install -m 644 lib/libc++abi.a $out/lib
|
|
install -m 644 ../include/cxxabi.h $out/include
|
|
'' + lib.optionalString enableShared ''
|
|
install -m 644 lib/libc++abi.so.1.0 $out/lib
|
|
ln -s libc++abi.so.1.0 $out/lib/libc++abi.so
|
|
ln -s libc++abi.so.1.0 $out/lib/libc++abi.so.1
|
|
'';
|
|
|
|
meta = llvm_meta // {
|
|
homepage = "https://libcxxabi.llvm.org/";
|
|
description = "Provides C++ standard library support";
|
|
longDescription = ''
|
|
libc++abi is a new implementation of low level support for a standard C++ library.
|
|
'';
|
|
# "All of the code in libc++abi is dual licensed under the MIT license and
|
|
# the UIUC License (a BSD-like license)":
|
|
license = with lib.licenses; [ mit ncsa ];
|
|
maintainers = llvm_meta.maintainers ++ [ lib.maintainers.vlstill ];
|
|
};
|
|
}
|