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
1 changed files with 3 additions and 0 deletions
|
@ -49,6 +49,9 @@ stdenv.mkDerivation {
|
|||
ln -s ${gcc.cc}/bin/$executable $out/bin/$executable
|
||||
fi
|
||||
done
|
||||
for file in $(ls ${gcc.cc} | grep -vw bin); do
|
||||
ln -s ${gcc.cc}/$file $out/$file
|
||||
done
|
||||
'');
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue