From d8e28375a2dcfd71eb38ecef8812703eb6239ec1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org> Date: Tue, 11 Mar 2025 16:49:37 +0100 Subject: [PATCH] README.md: fix compilation instructions under MSYS2 For some reason, the path expected by the -B option of gfortran should now be in Windows format (i.e. begin with the drive letter). [skip ci] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 381639a739..78be6642e7 100644 --- a/README.md +++ b/README.md @@ -362,7 +362,7 @@ cd dynare ``` - Configure Dynare from the source directory: ```sh -meson setup -Dmatlab_path=<…> --buildtype=debugoptimized --prefer-static -Dfortran_args="['-B','/usr/local/lib']" build-matlab +meson setup -Dmatlab_path=<…> --buildtype=debugoptimized --prefer-static -Dfortran_args="['-B','C:/msys64/usr/local/lib']" build-matlab ``` where the path of MATLAB is specified. Note that you should use the MSYS2 notation and not put spaces in the MATLAB path, so you probably want -- GitLab