2017-06-28 22:01:43 +02:00
|
|
|
{ lib, stdenv, fetchurl, pkgconfig, libatomic_ops, enableLargeConfig ? false
|
|
|
|
, buildPlatform, hostPlatform
|
|
|
|
}:
|
2004-11-19 15:57:43 +01:00
|
|
|
|
2012-10-03 20:06:53 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2016-12-03 23:04:21 +01:00
|
|
|
name = "boehm-gc-7.6.0";
|
2008-09-05 10:03:44 +02:00
|
|
|
|
2011-02-02 13:17:29 +01:00
|
|
|
src = fetchurl {
|
2016-12-03 23:04:21 +01:00
|
|
|
url = http://www.hboehm.info/gc/gc_source/gc-7.6.0.tar.gz;
|
|
|
|
sha256 = "143x7g0d0k6250ai6m2x3l4y352mzizi4wbgrmahxscv2aqjhjm1";
|
2011-02-02 13:17:29 +01:00
|
|
|
};
|
2016-12-03 23:04:21 +01:00
|
|
|
|
|
|
|
buildInputs = [ libatomic_ops ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2009-09-18 16:30:10 +02:00
|
|
|
|
2016-08-29 02:30:01 +02:00
|
|
|
outputs = [ "out" "dev" "doc" ];
|
2017-07-05 16:04:54 +02:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2013-08-26 12:04:19 +02:00
|
|
|
|
2014-09-18 12:16:12 +02:00
|
|
|
configureFlags =
|
|
|
|
[ "--enable-cplusplus" ]
|
|
|
|
++ lib.optional enableLargeConfig "--enable-large-config";
|
2012-10-03 20:06:53 +02:00
|
|
|
|
2017-10-15 21:36:30 +02:00
|
|
|
doCheck = stdenv.buildPlatform == stdenv.hostPlatform;
|
2008-09-05 10:03:44 +02:00
|
|
|
|
2012-10-03 20:06:53 +02:00
|
|
|
# Don't run the native `strip' when cross-compiling.
|
2017-06-28 22:01:43 +02:00
|
|
|
dontStrip = hostPlatform != buildPlatform;
|
2012-10-03 20:06:53 +02:00
|
|
|
|
2013-08-26 12:04:19 +02:00
|
|
|
postInstall =
|
|
|
|
''
|
|
|
|
mkdir -p $out/share/doc
|
|
|
|
mv $out/share/gc $out/share/doc/gc
|
|
|
|
'';
|
|
|
|
|
2017-11-21 18:58:48 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2008-01-06 01:12:25 +01:00
|
|
|
meta = {
|
2009-09-16 14:39:57 +02:00
|
|
|
description = "The 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.
|
|
|
|
'';
|
|
|
|
|
2014-11-18 01:47:23 +01:00
|
|
|
homepage = http://hboehm.info/gc/;
|
2009-09-16 14:39:57 +02:00
|
|
|
|
|
|
|
# non-copyleft, X11-style license
|
2014-11-18 01:47:23 +01:00
|
|
|
license = http://hboehm.info/gc/license.txt;
|
2009-09-16 14:39:57 +02:00
|
|
|
|
2015-01-13 22:33:24 +01:00
|
|
|
maintainers = [ ];
|
2010-02-12 15:14:40 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
2004-11-19 15:57:43 +01:00
|
|
|
};
|
|
|
|
}
|