Skip to content

Commit

Permalink
[Objconv] rebuild with FreeBSD aarch64 support (#9668)
Browse files Browse the repository at this point in the history
* [Objconv] rebuild with FreeBSD aarch64 support

* Update build_tarballs.jl

---------

Co-authored-by: Mosè Giordano <[email protected]>
  • Loading branch information
fingolfin and giordano authored Oct 23, 2024
1 parent 97dc75c commit 6bd4ab3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions O/Objconv/build_tarballs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,23 +15,23 @@ sources = [
script = raw"""
cd $WORKSPACE/srcdir/objconv*/
mkdir -p ${prefix}/bin
${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -O2 -o ${prefix}/bin/objconv${exeext} src/*.cpp
mkdir -p "${bindir}"
${CXX} ${CPPFLAGS} ${CXXFLAGS} ${LDFLAGS} -O2 -o "${bindir}/objconv${exeext}" src/*.cpp
install_license /usr/share/licenses/GPL-3.0+
"""

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

# The products that we will ensure are always built
products = [
ExecutableProduct("objconv", :objconv),
]

# Dependencies that must be installed before this package can be built
dependencies = [
dependencies = Dependency[
]

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

0 comments on commit 6bd4ab3

Please sign in to comment.