Skip to content

Commit cd51543

Browse files
authored
[gitoxide] Use LLVMCompilerRT_jll to provide libclang_rt.osx.a (#4648)
1 parent 166080b commit cd51543

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

G/gitoxide/build_tarballs.jl

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Note that this script can accept some limited command-line arguments, run
22
# `julia build_tarballs.jl --help` to see a usage message.
3-
using BinaryBuilder
3+
using BinaryBuilder, Pkg
44

55
name = "gitoxide"
66
# Note: upstream doesn't seem to tag new versions of `gitoxide` recently, but
@@ -16,6 +16,10 @@ sources = [
1616
# Bash recipe for building across all platforms
1717
script = raw"""
1818
cd $WORKSPACE/srcdir/gitoxide*/
19+
if [[ "${target}" == *-apple-* ]]; then
20+
# Help the linker find `libclang_rt.osx.a`
21+
export RUSTFLAGS="-Clink-args=-L${libdir}/darwin"
22+
fi
1923
cargo build --release
2024
install -Dvm 755 "target/${rust_target}/release/ein${exeext}" "${bindir}/ein${exeext}"
2125
install -Dvm 755 "target/${rust_target}/release/gix${exeext}" "${bindir}/gix${exeext}"
@@ -25,8 +29,6 @@ install_license LICENSE-*
2529
# These are the platforms we will build for by default, unless further
2630
# platforms are passed in on the command line
2731
platforms = supported_platforms()
28-
# macOS builds require libclang_rt.osx.a static library, which isn't in the SDK
29-
filter!(!Sys.isapple, platforms)
3032
# PowerPC and 32-bit ARM not supported by sha1-asm
3133
filter!(p -> arch(p) ("powerpc64le", "armv6l", "armv7l"), platforms)
3234
# Rust toolchain for i686 Windows is unusable
@@ -39,7 +41,9 @@ products = [
3941
]
4042

4143
# Dependencies that must be installed before this package can be built
42-
dependencies = Dependency[
44+
dependencies = [
45+
# We need libclang_rt.osx.a for linking the program.
46+
BuildDependency(PackageSpec(name="LLVMCompilerRT_jll", uuid="4e17d02c-6bf5-513e-be62-445f41c75a11", version=v"12.0.0"); platforms=filter(Sys.isapple, platforms)),
4347
]
4448

4549
# Build the tarballs, and possibly a `build.jl` as well.

0 commit comments

Comments
 (0)