gmp: disable stripping when cross-compiling
This commit is contained in:
parent
1fdd780e2c
commit
653ad8ec2f
@ -23,6 +23,13 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
enableParallelBuilding = true;
|
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 = {
|
meta = {
|
||||||
description = "GMP, the GNU multiple precision arithmetic library";
|
description = "GMP, the GNU multiple precision arithmetic library";
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user