useGoldLinker: Don't set dontStrip

Probably caused by a bad cut&paste...
This commit is contained in:
Eelco Dolstra 2014-11-12 15:04:28 +01:00
parent c5a7ff0afd
commit 7a05d33386

View file

@ -288,7 +288,6 @@ rec {
/* Modify a stdenv so that it uses the Gold linker. */
useGoldLinker = stdenv: stdenv //
{ mkDerivation = args: stdenv.mkDerivation (args // {
dontStrip = true;
NIX_CFLAGS_LINK = toString (args.NIX_CFLAGS_COMPILE or "") + " -fuse-ld=gold";
});
};