Skip to content

Commit

Permalink
Expand the cxxstring ABIs, and exclude powerpc64le for now
Browse files Browse the repository at this point in the history
  • Loading branch information
staticfloat committed Jun 19, 2019
1 parent 36c8d10 commit 35ecf31
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion XGBoost/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,11 @@ fi

# These are the platforms we will build for by default, unless further
# platforms are passed in on the command line
platforms = supported_platforms()
platforms = expand_cxxstring_abis(supported_platforms())

# Disable FreeBSD for now, because freebsd doesn't have backtrace()
platforms = [p for p in platforms if !(typeof(p) <: FreeBSD)]
platforms = [p for p in platforms if !(arch(p) == :powerpc64le)]

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

0 comments on commit 35ecf31

Please sign in to comment.