1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-18 10:56:53 +00:00
nixpkgs/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh

7 lines
151 B
Bash
Raw Normal View History

source $stdenv/setup
ensureDir $out/bin
for i in ar as c++filt gprof ld nm nmedit ranlib size strings strip; do
ln -s /usr/bin/$i $out/bin/
done