From ef2f8724fe9609c831abc20be98434aae22947b9 Mon Sep 17 00:00:00 2001 From: kanjitalk755 <33744007+kanjitalk755@users.noreply.github.com> Date: Sun, 13 Jun 2021 23:57:02 +0900 Subject: [PATCH] Update README.md --- README.md | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2ebac05f..6156fd01 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,26 @@ These builds need to be installed SDL2.0.10+ framework/library. BasiliskII for macOS can be built with Apple Silicon Mac. preparation: + +Download gmp-6.2.1.tar.xz from https://gmplib.org. ``` -$ brew install mpfr +$ cd ~/Downloads +$ tar xf gmp-6.2.1.tar.xz +$ cd gmp-6.2.1 +$ ./configure --disable-shared +$ make +$ make check +$ sudo make install +``` +Download mpfr-4.1.0.tar.xz from https://www.mpfr.org. +``` +$ cd ~/Downloads +$ tar xf mpfr-4.1.0.tar.xz +$ cd mpfr-4.1.0 +$ ./configure --disable-shared +$ make +$ make check +$ sudo make install ``` For Intel Mac, checkout `has_fpu_bug` branch. But it has FPU issue if the binary runs on Apple Silicon Mac.