2023-11-21 01:05:15 +01:00
|
|
|
{ lib, stdenv, llvm_meta, version, fetch, cmake, enableShared ? !stdenv.hostPlatform.isStatic
|
2020-12-20 07:11:26 +01:00
|
|
|
}:
|
2020-01-25 00:17:00 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libunwind";
|
|
|
|
inherit version;
|
|
|
|
|
2020-05-20 07:29:24 +02:00
|
|
|
src = fetch pname "09syx66idnm2pr46x2vmk0jn3iwdv0lkd04xy4zjbwmz3vn066bl";
|
2020-01-25 00:17:00 +01:00
|
|
|
|
llvmPackages: Multuple outputs for everythting
Also begin to start work on cross compilation, though that will have to
be finished later.
The patches are based on the first version of
https://reviews.llvm.org/D99484. It's very annoying to do the
back-porting but the review has uncovered nothing super major so I'm
fine sticking with what I've got.
Beyond making the outputs work, I also strove to re-sync the packages,
as they have been drifting pointlessly apart for some time.
----
Other misc notes, highly incomplete
- lvm-config-native and llvm-config are put in `dev` because they are
tools just for build time.
- Clang no longer has an lld dep. That was introduced in
db29857eb391ed002046090851a44c452b80bdbd, but if clang needs help
finding lld when it is used we should just pass it flags / put in the
resource dir. Providing it at build time increases critical path
length for no good reason.
----
A note on `nativeCC`:
`stdenv` takes tools from the previous stage, so:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.stdenv.cc`: `(?0, ?1, x)`
while:
1. `pkgsBuildBuild`: `(?1, x, x)`
2. `pkgsBuildBuild.targetPackages`: `(x, x, ?2)`
3. `pkgsBuildBuild.targetPackages.stdenv.cc`: `(?1, x, x)`
2020-10-15 10:23:57 +02:00
|
|
|
patches = [
|
|
|
|
./gnu-install-dirs.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2020-01-25 00:17:00 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
cmakeFlags = lib.optional (!enableShared) "-DLIBUNWIND_ENABLE_SHARED=OFF";
|
2021-05-11 23:12:04 +02:00
|
|
|
|
|
|
|
meta = llvm_meta // {
|
|
|
|
# Details: https://github.com/llvm/llvm-project/blob/main/libunwind/docs/index.rst
|
|
|
|
homepage = "https://clang.llvm.org/docs/Toolchain.html#unwind-library";
|
|
|
|
description = "LLVM's unwinder library";
|
|
|
|
longDescription = ''
|
|
|
|
The unwind library provides a family of _Unwind_* functions implementing
|
|
|
|
the language-neutral stack unwinding portion of the Itanium C++ ABI (Level
|
|
|
|
I). It is a dependency of the C++ ABI library, and sometimes is a
|
|
|
|
dependency of other runtimes.
|
|
|
|
'';
|
|
|
|
};
|
2020-01-25 00:17:00 +01:00
|
|
|
}
|