2017-04-24 20:00:11 +00:00
|
|
|
{ stdenv, binutils-raw, cctools
|
|
|
|
, hostPlatform, targetPlatform
|
|
|
|
}:
|
2015-06-12 00:58:26 +00:00
|
|
|
|
2017-04-24 20:00:11 +00:00
|
|
|
let
|
|
|
|
prefix = stdenv.lib.optionalString
|
|
|
|
(targetPlatform != hostPlatform)
|
|
|
|
"${targetPlatform.config}-";
|
|
|
|
|
|
|
|
cmds = [
|
|
|
|
"ar" "ranlib" "as" "dsymutil" "install_name_tool"
|
|
|
|
"ld" "strip" "otool" "lipo" "nm" "strings" "size"
|
|
|
|
];
|
|
|
|
in
|
|
|
|
|
|
|
|
# TODO loop over prefixed binaries too
|
2015-06-12 00:58:26 +00:00
|
|
|
stdenv.mkDerivation {
|
2017-04-24 20:00:11 +00:00
|
|
|
name = "${prefix}cctools-binutils-darwin";
|
2015-06-12 00:58:26 +00:00
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out/bin $out/include
|
|
|
|
|
2017-04-24 20:00:11 +00:00
|
|
|
ln -s ${binutils-raw.out}/bin/${prefix}c++filt $out/bin/${prefix}c++filt
|
2015-06-12 00:58:26 +00:00
|
|
|
|
|
|
|
# We specifically need:
|
|
|
|
# - ld: binutils doesn't provide it on darwin
|
|
|
|
# - as: as above
|
|
|
|
# - ar: the binutils one prodices .a files that the cctools ld doesn't like
|
|
|
|
# - ranlib: for compatibility with ar
|
|
|
|
# - dsymutil: soon going away once it goes into LLVM (this one is fake anyway)
|
|
|
|
# - otool: we use it for some of our name mangling
|
|
|
|
# - install_name_tool: we use it to rewrite stuff in our bootstrap tools
|
|
|
|
# - strip: the binutils one seems to break mach-o files
|
|
|
|
# - lipo: gcc build assumes it exists
|
|
|
|
# - nm: the gnu one doesn't understand many new load commands
|
2017-04-24 20:00:11 +00:00
|
|
|
for i in ${stdenv.lib.concatStringsSep " " (builtins.map (e: prefix + e) cmds)}; do
|
2015-06-12 00:58:26 +00:00
|
|
|
ln -sf "${cctools}/bin/$i" "$out/bin/$i"
|
|
|
|
done
|
|
|
|
|
2017-04-24 20:00:11 +00:00
|
|
|
for i in ${binutils-raw.dev or binutils-raw.out}/include/*.h; do
|
2015-06-12 00:58:26 +00:00
|
|
|
ln -s "$i" "$out/include/$(basename $i)"
|
|
|
|
done
|
|
|
|
|
|
|
|
for i in ${cctools}/include/*; do
|
|
|
|
ln -s "$i" "$out/include/$(basename $i)"
|
|
|
|
done
|
|
|
|
|
|
|
|
# FIXME: this will give us incorrect man pages for bits of cctools
|
2016-08-29 19:05:46 +00:00
|
|
|
ln -s ${binutils-raw.out}/share $out/share
|
2016-01-24 07:28:58 +00:00
|
|
|
ln -s ${binutils-raw.out}/lib $out/lib
|
2015-06-12 00:58:26 +00:00
|
|
|
|
|
|
|
ln -s ${cctools}/libexec $out/libexec
|
|
|
|
'';
|
|
|
|
}
|