From ca05b2e32dec656d7d5c9e89423f44de2bd6171b Mon Sep 17 00:00:00 2001 From: Anders Jenbo Date: Sun, 6 Oct 2019 19:35:15 +0200 Subject: [PATCH] Promote FreeBSD to 64bit and default compiler --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 78bb3577d..1b5126226 100644 --- a/README.md +++ b/README.md @@ -48,16 +48,15 @@ cmake --build . -j $(sysctl -n hw.physicalcpu) ```
FreeBSD -*Note: At the moment this only appears to work from a 32bit system.* ### Installing dependencies ``` -pkg install cmake gcc8 sdl2_mixer sdl2_ttf libsodium +pkg install cmake sdl2_mixer sdl2_ttf libsodium ``` ### Compiling ``` cd build -cmake -DCMAKE_C_COMPILER=/usr/local/bin/gcc8 -DCMAKE_CXX_COMPILER=/usr/local/bin/g++8 .. +cmake .. cmake --build . -j $(sysctl -n hw.ncpu) ```