firefox: Fix build on 32-bit by using the gold linker
This commit is contained in:
parent
454590f884
commit
f4b5671b0d
2 changed files with 2 additions and 1 deletions
|
@ -66,7 +66,7 @@ stdenv.mkDerivation rec {
|
|||
]
|
||||
++ (if debugBuild then [ "--enable-debug" "--enable-profiling"]
|
||||
else [ "--disable-debug" "--enable-release"
|
||||
"--enable-optimize${lib.optionalString (stdenv.system == "i686-linux") "=-O3"}"
|
||||
"--enable-optimize${lib.optionalString (stdenv.system == "i686-linux") "=-O1"}"
|
||||
"--enable-strip" ])
|
||||
++ lib.optional enableOfficialBranding "--enable-official-branding";
|
||||
|
||||
|
|
|
@ -9286,6 +9286,7 @@ let
|
|||
firefox13Wrapper = wrapFirefox { browser = firefox13Pkgs.firefox; };
|
||||
|
||||
firefox = callPackage ../applications/networking/browsers/firefox {
|
||||
stdenv = useGoldLinker stdenv;
|
||||
inherit (gnome) libIDL;
|
||||
inherit (pythonPackages) pysqlite;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue