mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
chromium: fix build on i686 (#100512)
ld.gold runs out of memory on i686.
(cherry picked from commit c557c27ac3)
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user