chromium: fix build on i686 (#100512)

ld.gold runs out of memory on i686.
gstqt5
conferno 2020-10-16 17:37:28 +00:00 committed by GitHub
parent 175fe4992d
commit c557c27ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -243,7 +243,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;