* Streamline the stdenv bootstrap and resulting closure by removing
some redundant builds (e.g., GMP was built three times). * Updated GMP to 5.0.2. * Updated PPL to 0.11.2. * Remove ad hoc flags to build GCC's dependencies statically. Instead, use the ‘makeStaticLibraries’ stdenv adapter. * Build GMP with C++ support by default. svn path=/nixpkgs/branches/stdenv-updates/; revision=30891
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{stdenv, fetchurl, gmp, static ? false}:
|
||||
{ stdenv, fetchurl, gmp }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "isl-0.07"; # CLooG 0.16.3 fails to build with ISL 0.08.
|
||||
name = "isl-0.07"; # CLooG 0.16.3 fails to build with ISL 0.08.
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.kotnet.org/~skimo/isl/${name}.tar.bz2";
|
||||
@@ -10,10 +10,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [ gmp ];
|
||||
|
||||
dontDisableStatic = static;
|
||||
configureFlags =
|
||||
stdenv.lib.optionals static [ " --enable-static" "--disable-shared" ];
|
||||
|
||||
meta = {
|
||||
homepage = http://www.kotnet.org/~skimo/isl/;
|
||||
license = "LGPLv2.1";
|
||||
|
||||
Reference in New Issue
Block a user