exempi: fix i686 build (#46884)

failed with `unknown symbol __divmoddi4`.
Standard fix is to use gcc6.
This commit is contained in:
xeji 2018-09-19 16:20:00 +02:00 committed by GitHub
parent beb8ca2887
commit d57c9ec407
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;