tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
gcc_multi: prevent overwritten libs after 51f1b4ec48d
Vladimír Čunát
11 years ago
45785039
9073d554
+2
1 changed file
expand all
collapse all
unified
split
pkgs
development
compilers
gcc
4.8
default.nix
+2
pkgs/development/compilers/gcc/4.8/default.nix
···
526
526
527
527
# Strip kills static libs of other archs (hence cross != null)
528
528
// optionalAttrs (!stripped || cross != null) { dontStrip = true; NIX_STRIP_DEBUG = 0; }
529
529
+
530
530
+
// optionalAttrs (enableMultilib) { dontMoveLib64 = true; }
529
531
)