1
1
# Note that this script can accept some limited command-line arguments, run
2
2
# `julia build_tarballs.jl --help` to see a usage message.
3
- using BinaryBuilder
3
+ using BinaryBuilder, Pkg
4
4
5
5
name = " gitoxide"
6
6
# Note: upstream doesn't seem to tag new versions of `gitoxide` recently, but
@@ -16,6 +16,10 @@ sources = [
16
16
# Bash recipe for building across all platforms
17
17
script = raw """
18
18
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
19
23
cargo build --release
20
24
install -Dvm 755 "target/${rust_target}/release/ein${exeext}" "${bindir}/ein${exeext}"
21
25
install -Dvm 755 "target/${rust_target}/release/gix${exeext}" "${bindir}/gix${exeext}"
@@ -25,8 +29,6 @@ install_license LICENSE-*
25
29
# These are the platforms we will build for by default, unless further
26
30
# platforms are passed in on the command line
27
31
platforms = supported_platforms ()
28
- # macOS builds require libclang_rt.osx.a static library, which isn't in the SDK
29
- filter! (! Sys. isapple, platforms)
30
32
# PowerPC and 32-bit ARM not supported by sha1-asm
31
33
filter! (p -> arch (p) ∉ (" powerpc64le" , " armv6l" , " armv7l" ), platforms)
32
34
# Rust toolchain for i686 Windows is unusable
@@ -39,7 +41,9 @@ products = [
39
41
]
40
42
41
43
# 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)),
43
47
]
44
48
45
49
# Build the tarballs, and possibly a `build.jl` as well.
0 commit comments