Skip to content

Commit

Permalink
exempi: fix i686 build (#46884)
Browse files Browse the repository at this point in the history
failed with `unknown symbol __divmoddi4`.
Standard fix is to use gcc6.
  • Loading branch information
xeji committed Sep 19, 2018
1 parent beb8ca2 commit d57c9ec
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/top-level/all-packages.nix
Expand Up @@ -2396,7 +2396,9 @@ with pkgs;

exa = callPackage ../tools/misc/exa { };

exempi = callPackage ../development/libraries/exempi { };
exempi = callPackage ../development/libraries/exempi {
stdenv = if stdenv.isi686 then overrideCC stdenv gcc6 else stdenv;
};

execline = skawarePackages.execline;

Expand Down

0 comments on commit d57c9ec

Please sign in to comment.