From: isildur-g Date: Wed, 27 Mar 2024 14:35:21 +0000 (+0200) Subject: also added note for CC/CXX vars in fbsd/ppc which are different. X-Git-Tag: vectorscan/5.4.12^2~68^2~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc371fb68295647923ce4f88a6ae202c2aa9822d;p=thirdparty%2Fvectorscan.git also added note for CC/CXX vars in fbsd/ppc which are different. --- 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.