From dc371fb68295647923ce4f88a6ae202c2aa9822d Mon Sep 17 00:00:00 2001 From: isildur-g Date: Wed, 27 Mar 2024 16:35:21 +0200 Subject: [PATCH] also added note for CC/CXX vars in fbsd/ppc which are different. --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index 717888e0..f1622030 100644 --- a/README.md +++ b/README.md @@ -146,6 +146,15 @@ export CC="/usr/local/bin/gcc" export CXX="/usr/local/bin/g++" ``` +A further note in FreeBSD, on the PowerPC platform, for some reason, +the gcc12 package installs to a slightly different name, on FreeBSD/ppc, +gcc12 will be found using: +``` +export CC="/usr/local/bin/gcc12" +export CXX="/usr/local/bin/g++12" +``` + + Then continue with the build as below.