mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-16 01:45:11 +00:00
4f0dadbf38
After final improvements to the official formatter implementation, this commit now performs the first treewide reformat of Nix files using it. This is part of the implementation of RFC 166. Only "inactive" files are reformatted, meaning only files that aren't being touched by any PR with activity in the past 2 months. This is to avoid conflicts for PRs that might soon be merged. Later we can do a full treewide reformat to get the rest, which should not cause as many conflicts. A CI check has already been running for some time to ensure that new and already-formatted files are formatted, so the files being reformatted here should also stay formatted. This commit was automatically created and can be verified using nix-builda08b3a4d19
.tar.gz \ --argstr baseRevb32a094368
result/bin/apply-formatting $NIXPKGS_PATH
94 lines
3.2 KiB
Nix
94 lines
3.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
# doc: https://github.com/ivmai/bdwgc/blob/v8.2.8/doc/README.macros (LARGE_CONFIG)
|
|
enableLargeConfig ? false,
|
|
enableMmap ? true,
|
|
enableStatic ? false,
|
|
nixVersions,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "boehm-gc";
|
|
version = "8.2.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ivmai";
|
|
repo = "bdwgc";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-UQSLK/05uPal6/m+HMz0QwXVII1leonlmtSZsXjJ+/c=";
|
|
};
|
|
|
|
outputs = [
|
|
"out"
|
|
"dev"
|
|
"doc"
|
|
];
|
|
separateDebugInfo = stdenv.hostPlatform.isLinux && stdenv.hostPlatform.libc != "musl";
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
];
|
|
|
|
configureFlags =
|
|
[
|
|
"--enable-cplusplus"
|
|
"--with-libatomic-ops=none"
|
|
]
|
|
++ lib.optional enableStatic "--enable-static"
|
|
++ lib.optional enableMmap "--enable-mmap"
|
|
++ lib.optional enableLargeConfig "--enable-large-config";
|
|
|
|
# This stanza can be dropped when a release fixes this issue:
|
|
# https://github.com/ivmai/bdwgc/issues/376
|
|
# The version is checked with == instead of versionAtLeast so we
|
|
# don't forget to disable the fix (and if the next release does
|
|
# not fix the problem the test failure will be a reminder to
|
|
# extend the set of versions requiring the workaround).
|
|
makeFlags = lib.optionals (stdenv.hostPlatform.isPower64 && finalAttrs.version == "8.2.8") [
|
|
# do not use /proc primitives to track dirty bits; see:
|
|
# https://github.com/ivmai/bdwgc/issues/479#issuecomment-1279687537
|
|
# https://github.com/ivmai/bdwgc/blob/54522af853de28f45195044dadfd795c4e5942aa/include/private/gcconfig.h#L741
|
|
"CFLAGS_EXTRA=-DNO_SOFT_VDB"
|
|
];
|
|
|
|
# `gctest` fails under x86_64 emulation on aarch64-darwin
|
|
# and also on aarch64-linux (qemu-user)
|
|
doCheck =
|
|
!(
|
|
(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64)
|
|
|| (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.isAarch64)
|
|
);
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
passthru.tests = nixVersions;
|
|
|
|
meta = {
|
|
homepage = "https://hboehm.info/gc/";
|
|
description = "Boehm-Demers-Weiser conservative garbage collector for C and C++";
|
|
longDescription = ''
|
|
The Boehm-Demers-Weiser conservative garbage collector can be used as a
|
|
garbage collecting replacement for C malloc or C++ new. It allows you
|
|
to allocate memory basically as you normally would, without explicitly
|
|
deallocating memory that is no longer useful. The collector
|
|
automatically recycles memory when it determines that it can no longer
|
|
be otherwise accessed.
|
|
|
|
The collector is also used by a number of programming language
|
|
implementations that either use C as intermediate code, want to
|
|
facilitate easier interoperation with C libraries, or just prefer the
|
|
simple collector interface.
|
|
|
|
Alternatively, the garbage collector may be used as a leak detector for
|
|
C or C++ programs, though that is not its primary goal.
|
|
'';
|
|
changelog = "https://github.com/ivmai/bdwgc/blob/v${finalAttrs.version}/ChangeLog";
|
|
license = "https://hboehm.info/gc/license.txt"; # non-copyleft, X11-style license
|
|
maintainers = with lib.maintainers; [ ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|