From 8d7d4525349cd3d8ddfcf1235b9e6c9e854e9534 Mon Sep 17 00:00:00 2001 From: Tim Allen Date: Sat, 11 Nov 2017 22:21:31 +1100 Subject: [PATCH] We don't need to override `compiler` when building. It seems on Windows, `compiler` has defaulted to `g++` for a while now, so we didn't need to override it in the `make` invocation. Since v105r01, `compiler` defaults to `g++` on Linux too, so we don't need to override it there either. --- docs/install/linux.md | 4 ++-- docs/install/windows.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/install/linux.md b/docs/install/linux.md index ef25e7c2..f27ee227 100644 --- a/docs/install/linux.md +++ b/docs/install/linux.md @@ -53,9 +53,9 @@ being installed system-wide. 3. Type `cd ~/higan-src` (or wherever you put the higan source) and press Enter - 4. Type `make -C higan compiler=g++` and press Enter + 4. Type `make -C higan` and press Enter to build the main higan executable - 5. Type `make -C icarus compiler=g++` and press Enter + 5. Type `make -C icarus` and press Enter to build the icarus import tool Installing a compiled build on Linux diff --git a/docs/install/windows.md b/docs/install/windows.md index 23f04647..783cbf63 100644 --- a/docs/install/windows.md +++ b/docs/install/windows.md @@ -103,9 +103,9 @@ Once mingw is installed and available from the command prompt: 3. Type `cd C:\higan-src` (or wherever you put the higan source) and press Enter - 4. Type `mingw32-make -C icarus compiler=g++` and press Enter + 4. Type `mingw32-make -C icarus` and press Enter to build the icarus import tool - 5. Type `mingw32-make -C higan compiler=g++` and press Enter + 5. Type `mingw32-make -C higan` and press Enter to build the main higan executable [tdm]: http://tdm-gcc.tdragon.net/download