Stream: helpdesk (published)

Topic: ✔ BinaryBuilder not finding file on Windows


view this post on Zulip Leandro Martínez (Jul 12 2023 at 09:33):

So, finally, with all the help from Mosè, this is what made all work, correctly:

  1. Replace the Makefile by a CMakeLists.txt and use cmake to build the software.
  2. Use the flags for cmake as indicated in the documentation
  3. Use make install instead of install -Dvm ... .

The final file resulted to be:

# Note that this script can accept some limited command-line arguments, run
# `julia build_tarballs.jl --help` to see a usage message.
using BinaryBuilder, Pkg

name = "MDLovoFit"
version = v"20.0.4"

# Collection of sources required to complete build
sources = [
    GitSource("https://github.com/m3g/MDLovoFit.git", "e320c2a503c9bd88fe2dc102f2abfd0b2f5d4cce")
]

# Bash recipe for building across all platforms
script = raw"""
cd ${WORKSPACE}/srcdir/MDLovoFit
install_license LICENSE
mkdir build && cd build
cmake .. \
    -DCMAKE_INSTALL_PREFIX=${prefix} \
    -DCMAKE_TOOLCHAIN_FILE=${CMAKE_TARGET_TOOLCHAIN} \
    -DCMAKE_BUILD_TYPE=Release
make -j${nproc}
make install
"""

# 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_gfortran_versions(platforms)

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

# Dependencies that must be installed before this package can be built
dependencies = Dependency[
    Dependency(PackageSpec(name="CompilerSupportLibraries_jll", uuid="e66e0078-7015-5450-92f7-15fbd957f2ae")),
]

# Build the tarballs, and possibly a `build.jl` as well.
build_tarballs(ARGS, name, version, sources, script, platforms, products, dependencies; julia_compat="1.6")

view this post on Zulip Notification Bot (Jul 12 2023 at 09:33):

Leandro Martínez has marked this topic as resolved.

view this post on Zulip Notification Bot (Jul 13 2023 at 10:38):

Francois Van Zyl has marked this topic as unresolved.

view this post on Zulip Notification Bot (Jul 13 2023 at 10:39):

Francois Van Zyl has marked this topic as resolved.


Last updated: Oct 02 2023 at 04:34 UTC