forked from mirrors/nixpkgs
exempi: fix i686 build (#46884)
failed with `unknown symbol __divmoddi4`. Standard fix is to use gcc6.
This commit is contained in:
parent
beb8ca2887
commit
d57c9ec407
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in a new issue