chromium: fix build on i686 (#100512)

ld.gold runs out of memory on i686.

(cherry picked from commit c557c27ac3)
This commit is contained in:
conferno
2020-10-16 17:37:28 +00:00
committed by Michael Weiss
parent a8287a0136
commit 9e47bd3de5

View File

@@ -238,7 +238,7 @@ let
gnFlags = mkGnFlags ({
use_lld = false;
use_gold = true;
use_gold = stdenv.buildPlatform.is64bit; # ld.gold outs-of-memory on i686
gold_path = "${stdenv.cc}/bin";
is_debug = false;