From aa6f09ec7acb9cb666c919129487d7e6019a8db3 Mon Sep 17 00:00:00 2001 From: kanjitalk755 <33744007+kanjitalk755@users.noreply.github.com> Date: Mon, 3 Apr 2023 18:03:57 +0900 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4531da7e..63f06d7c 100644 --- a/README.md +++ b/README.md @@ -28,11 +28,11 @@ $ make $ make check $ sudo make install ``` -Download mpfr-4.1.0.tar.xz from https://www.mpfr.org. +Download mpfr-4.2.0.tar.xz from https://www.mpfr.org. ``` $ cd ~/Downloads -$ tar xf mpfr-4.1.0.tar.xz -$ cd mpfr-4.1.0 +$ tar xf mpfr-4.2.0.tar.xz +$ cd mpfr-4.2.0 $ ./configure --disable-shared $ make $ make check @@ -40,7 +40,7 @@ $ sudo make install ``` On an Intel Mac, change the `configure` command for both GMP and MPFR as follows, and ignore the `make check` command: ``` -CFLAGS="-arch arm64" CXXFLAGS="$CFLAGS" ./configure -host=aarch64-apple-darwin --disable-shared +$ CFLAGS="-arch arm64" CXXFLAGS="$CFLAGS" ./configure -host=aarch64-apple-darwin --disable-shared ``` (from https://github.com/kanjitalk755/macemu/pull/96)