ccache: create symlinks to gcc utils in ccache-links bin directory
This commit is contained in:
parent
5945655fd6
commit
16aadf2d79
@ -42,6 +42,11 @@ stdenv.mkDerivation {
|
|||||||
EOF
|
EOF
|
||||||
chmod +x $out/bin/g++
|
chmod +x $out/bin/g++
|
||||||
fi
|
fi
|
||||||
|
for executable in $(ls ${gcc.cc}/bin); do
|
||||||
|
if [ ! -x "$out/bin/$executable" ]; then
|
||||||
|
ln -s ${gcc.cc}/bin/$executable $out/bin/$executable
|
||||||
|
fi
|
||||||
|
done
|
||||||
'');
|
'');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user