This repository is for testing and tracking changes in the recipe needed to build DynarePreprocessor_jll
When a new version is ready, copy build_tarballs.jl to Yggdrasil.jl/D/DynarePreprocessor in your own fork of Yggdrasil and open a PR
The current version uses https://git.dynare.org/Dynare/preprocessor#julia as the upstream source. This is a fork of the master branch with a few Julia-specific changes, among them:
- improvements in the writing of
modfile.jsonwhen the preprocessor is called with optionlanguage=julia - relaxing the requirement that all endogenous variables appear in
steady_state_modelblock so as to permit to communicate only a partial solution for the steady state
- Make sure that
BinaryBuilder.jlis added to Julia default environment - To (cross-)compile and build for a basic Linux installation on a x86_64 machine, run from the terminal command line
julia --color=yes build_tarballs.jl x86_64-linux-gnu --debug --verbose
- To cross-compile and build for a x86_64 MacOS installation, run from the terminal command line
julia --color=yes build_tarballs.jl x86_64-apple-darwin --debug --verbose
- To cross-compile and build for all plateforms supported by Julia, run from the terminal command line
julia --color=yes build_tarballs.jl --debug --verbose
See the BinaryBuilder documentation
The above procedure creates the build and products directories that you can remove after having verified them if necessary.
- See if some of the changes made for Julia should be ported to
master.