mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 18:03:04 +00:00
gmp: disable stripping when cross-compiling
This commit is contained in:
parent
1fdd780e2c
commit
653ad8ec2f
@ -23,6 +23,13 @@ stdenv.mkDerivation rec {
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
crossAttrs = {
|
||||
# Disable stripping to avoid "libgmp.a: Archive has no index"
|
||||
# (see <http://hydra.nixos.org/build/4268666>.)
|
||||
dontStrip = true;
|
||||
dontCrossStrip = true;
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "GMP, the GNU multiple precision arithmetic library";
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user