Skip to content

Commit

Permalink
add build for macos
Browse files Browse the repository at this point in the history
  • Loading branch information
LyKex committed Jan 31, 2025
1 parent 2bfd698 commit eed0284
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions A/autossh/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,8 @@ make install

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = [
Platform("i686", "linux"; libc = "glibc"),
Platform("x86_64", "linux"; libc = "glibc"),
Platform("aarch64", "linux"; libc = "glibc"),
Platform("armv6l", "linux"; call_abi = "eabihf", libc = "glibc"),
Platform("armv7l", "linux"; call_abi = "eabihf", libc = "glibc"),
Platform("powerpc64le", "linux"; libc = "glibc"),
Platform("i686", "linux"; libc = "musl"),
Platform("x86_64", "linux"; libc = "musl"),
Platform("aarch64", "linux"; libc = "musl"),
Platform("armv6l", "linux"; call_abi = "eabihf", libc = "musl"),
Platform("armv7l", "linux"; call_abi = "eabihf", libc = "musl")
]

platforms = supported_platforms()
filter!(p -> arch(p) != "riscv64" && (Sys.islinux(p) || Sys.isapple(p)), platforms)

# The products that we will ensure are always built
products = [
Expand Down

0 comments on commit eed0284

Please sign in to comment.