firefox: fixup build on aarch64-linux

It's the issue with old libgcc_s propagated via our glibc package; e.g.
https://github.com/NixOS/nixpkgs/pull/209113
This commit is contained in:
Vladimír Čunát 2023-01-15 09:13:34 +01:00
parent fd82d2bf83
commit cdf02835eb
No known key found for this signature in database
GPG Key ID: E747DF1F9575A3AA

View File

@ -471,6 +471,8 @@ buildStdenv.mkDerivation ({
separateDebugInfo = enableDebugSymbols;
enableParallelBuilding = true;
NIX_LDFLAGS = if (with stdenv; isAarch64 && isLinux) then [ "-lgcc" ] else null;
# tests were disabled in configureFlags
doCheck = false;