mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 10:43:27 +00:00
dmd: Fix bootstrap dmd compiler build. Doesn't work with gcc6.
This commit is contained in:
parent
227697bc67
commit
e17fdb9607
@ -1673,7 +1673,14 @@ with pkgs;
|
||||
|
||||
disper = callPackage ../tools/misc/disper { };
|
||||
|
||||
dmd_2_067_1 = callPackage ../development/compilers/dmd/2.067.1.nix { };
|
||||
dmd_2_067_1 = callPackage ../development/compilers/dmd/2.067.1.nix {
|
||||
stdenv = if stdenv.hostPlatform.isDarwin then
|
||||
stdenv
|
||||
else
|
||||
# Doesn't build with gcc6 on linux
|
||||
overrideCC stdenv gcc5;
|
||||
};
|
||||
|
||||
dmd = callPackage ../development/compilers/dmd {
|
||||
bootstrapDmd = dmd_2_067_1;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user