rust: disable stripping to prevent bad cross rlibs
This commit is contained in:
parent
54e9082375
commit
8391528096
1 changed files with 4 additions and 1 deletions
|
@ -33,7 +33,10 @@ in stdenv.mkDerivation rec {
|
||||||
# .rlib files in "lib/".
|
# .rlib files in "lib/".
|
||||||
#
|
#
|
||||||
# See https://github.com/NixOS/nixpkgs/pull/34227
|
# See https://github.com/NixOS/nixpkgs/pull/34227
|
||||||
stripDebugList = if stdenv.isDarwin then [ "bin" ] else null;
|
#
|
||||||
|
# Running `strip -S` when cross compiling can harm the cross rlibs.
|
||||||
|
# See: https://github.com/NixOS/nixpkgs/pull/56540#issuecomment-471624656
|
||||||
|
stripDebugList = [ "bin" ];
|
||||||
|
|
||||||
|
|
||||||
NIX_LDFLAGS =
|
NIX_LDFLAGS =
|
||||||
|
|
Loading…
Reference in a new issue