From b2a296b0cf731b5a26a784cefaed7f013ed3d6e7 Mon Sep 17 00:00:00 2001 From: Daniel Gustafsson Date: Fri, 19 Jan 2024 16:27:27 +0100 Subject: [PATCH] doc: Update compiler for FreeBSD specific instructions FreeBSD has since v13 switched to Clang from GCC, so update our instructions to cc instead of gcc to reflect that. Reported-by: digitaldog4@gmail.com Discussion: https://postgr.es/m/CAJR80-xzR49jEkAC98Yo-wuSdFDV2=2H4j9Z2AukSVU=-UpynA@mail.gmail.com --- doc/src/sgml/dfunc.sgml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/dfunc.sgml b/doc/src/sgml/dfunc.sgml index 7bdf7f6070..554f9fac4c 100644 --- a/doc/src/sgml/dfunc.sgml +++ b/doc/src/sgml/dfunc.sgml @@ -66,11 +66,12 @@ . To create shared libraries the compiler flag is . -gcc -fPIC -c foo.c -gcc -shared -o foo.so foo.o +cc -fPIC -c foo.c +cc -shared -o foo.so foo.o - This is applicable as of version 3.0 of - FreeBSD. + This is applicable as of version 13.0 of + FreeBSD, older versions used + the gcc compiler.