mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Merge pull request #11566 from Bevaz/ccache-links
ccache: create symlinks to gcc lib & include in ccache-links directory
This commit is contained in:
commit
c5f28c305a
@ -49,6 +49,9 @@ stdenv.mkDerivation {
|
|||||||
ln -s ${gcc.cc}/bin/$executable $out/bin/$executable
|
ln -s ${gcc.cc}/bin/$executable $out/bin/$executable
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
for file in $(ls ${gcc.cc} | grep -vw bin); do
|
||||||
|
ln -s ${gcc.cc}/$file $out/$file
|
||||||
|
done
|
||||||
'');
|
'');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user