Skip to content

Commit

Permalink
icu: build with gcc6 on i686
Browse files Browse the repository at this point in the history
  • Loading branch information
vcunat committed Feb 18, 2018
1 parent 64db4f7 commit 9a2914a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -9126,8 +9126,14 @@ with pkgs;

hyena = callPackage ../development/libraries/hyena { };

icu58 = callPackage ../development/libraries/icu/58.nix { };
icu59 = callPackage ../development/libraries/icu/59.nix { };
icu58 = callPackage ../development/libraries/icu/58.nix
(stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) {
stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4'
});
icu59 = callPackage ../development/libraries/icu/59.nix
(stdenv.lib.optionalAttrs (stdenv.cc.isGNU && stdenv.hostPlatform.isi686) {
stdenv = overrideCC stdenv gcc6; # with gcc-7: undefined reference to `__divmoddi4'
});

icu = icu59;

Expand Down

0 comments on commit 9a2914a

Please sign in to comment.