I'm aiming to compile native binaries for the 'facil' program across all platforms: Linux, Mac, and Windows. However, I'm uncertain about how to proceed due to my limited familiarity with C build systems.
Currently, I am using the platform provided by https://binarybuilder.org/.
As an example, this site(video) illustrates how to create native binaries for libsodium. The instructions provided were as follows:
./autogen.sh
./configure --prefix=${prefix} --build=${MACHTYPE} --host=${target}
make -j${nproc}
make install
Following these steps led to the creation of this build_tarballs.jl file: https://github.com/JuliaPackaging/Yggdrasil/blob/master/L/libsodium/build_tarballs.jl
Could you help me understand what the appropriate steps or 'recipe' would be to accomplish the same objective with facil? So I can generate build_tarballs.jl for facil
Thanks in advance
I'm aiming to compile native binaries for the 'facil' program across all platforms: Linux, Mac, and Windows. However, I'm uncertain about how to proceed due to my limited familiarity with C build systems.
Currently, I am using the platform provided by https://binarybuilder.org/.
As an example, this site(video) illustrates how to create native binaries for
libsodium. The instructions provided were as follows:Following these steps led to the creation of this
build_tarballs.jlfile: https://github.com/JuliaPackaging/Yggdrasil/blob/master/L/libsodium/build_tarballs.jlCould you help me understand what the appropriate steps or 'recipe' would be to accomplish the same objective with
facil? So I can generatebuild_tarballs.jlfor facilThanks in advance