boehm-gc: Update to 7.2d
This commit is contained in:
parent
114dc08026
commit
f9714ace11
@ -1,15 +1,20 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "boehm-gc-7.2alpha6";
|
name = "boehm-gc-7.2d";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2alpha6.tar.gz";
|
url = http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc-7.2d.tar.gz;
|
||||||
sha256 = "05jwadjbrv8pr7z9cb4miskicxqpxm0pca4h2rg5cgbpajr2bx7b";
|
sha256 = "0phwa5driahnpn79zqff14w9yc8sn3599cxz91m78hqdcpl0mznr";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
configureFlags = "--enable-cplusplus";
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
# Don't run the native `strip' when cross-compiling.
|
||||||
|
dontStrip = stdenv ? cross;
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "The Boehm-Demers-Weiser conservative garbage collector for C and C++";
|
description = "The Boehm-Demers-Weiser conservative garbage collector for C and C++";
|
||||||
|
|
||||||
@ -39,10 +44,3 @@ stdenv.mkDerivation (rec {
|
|||||||
platforms = stdenv.lib.platforms.all;
|
platforms = stdenv.lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
|
||||||
|
|
||||||
# Don't run the native `strip' when cross-compiling.
|
|
||||||
(if (stdenv ? cross)
|
|
||||||
then { dontStrip = true; }
|
|
||||||
else { }))
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user