compcert: build with 64-bit compiler, add darwin support
This commit is contained in:
parent
b8cb960a58
commit
8d5c4e8b4b
@ -12,13 +12,16 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [ coq ocaml ocamlPackages.menhir ];
|
buildInputs = [ coq ocaml ocamlPackages.menhir ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
configurePhase = "./configure -prefix $out -toolprefix ${gcc}/bin/ ia32-linux";
|
configurePhase = "./configure -prefix $out -toolprefix ${gcc}/bin/ " +
|
||||||
|
(if stdenv.isDarwin then "ia32-macosx" else "ia32-linux");
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "Formally verified C compiler";
|
description = "Formally verified C compiler";
|
||||||
homepage = "http://compcert.inria.fr";
|
homepage = "http://compcert.inria.fr";
|
||||||
license = stdenv.lib.licenses.inria;
|
license = stdenv.lib.licenses.inria;
|
||||||
platforms = [ "i686-linux" ];
|
platforms = [ stdenv.lib.platforms.linux
|
||||||
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
|
stdenv.lib.platforms.darwin ];
|
||||||
|
maintainers = [ stdenv.lib.maintainers.thoughtpolice
|
||||||
|
stdenv.lib.maintainers.jwiegley ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -2568,7 +2568,7 @@ let
|
|||||||
|
|
||||||
cmucl_binary = callPackage ../development/compilers/cmucl/binary.nix { };
|
cmucl_binary = callPackage ../development/compilers/cmucl/binary.nix { };
|
||||||
|
|
||||||
compcert = callPackage_i686 ../development/compilers/compcert {};
|
compcert = callPackage ../development/compilers/compcert {}
|
||||||
|
|
||||||
cryptol1 = lowPrio (callPackage ../development/compilers/cryptol/1.8.x.nix {});
|
cryptol1 = lowPrio (callPackage ../development/compilers/cryptol/1.8.x.nix {});
|
||||||
cryptol2 = haskellPackages.cryptol;
|
cryptol2 = haskellPackages.cryptol;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user