[cfarm-users] What are the dev tools path(s) on cfarm119?
Bruno Haible
bruno at clisp.org
Mon May 25 00:58:22 CEST 2026
Peter Gutmann wrote:
> I've been trying to build my code on cfarm119 but neither cc, xlc, gcc, or
> clang are in the default path.
The following config for gcc works fine for me:
32-bit:
CC="/opt/freeware/bin/gcc"; CXX="/opt/freeware/bin/g++"; export CC CXX
unset AR NM
64-bit:
CC="/opt/freeware/bin/gcc -maix64"; CXX="/opt/freeware/bin/g++ -maix64";
AR="ar -X 64"; NM="nm -X 64 -B";
export CC CXX AR NM
A while ago I also used xlc:
32-bit:
PATH=/opt/IBM/openxlC/17.1.1/bin:$PATH
CC="ibm-clang"; CXX="ibm-clang++"; export CC CXX
unset AR NM
64-bit:
PATH=/opt/IBM/openxlC/17.1.1/bin:$PATH
CC="ibm-clang -m64"; CXX="ibm-clang++ -m64";
AR="ar -X 64"; NM="nm -X 64 -B";
export CC CXX AR NM
but I stopped using it when I encountered compiler bugs.
Bruno
More information about the cfarm-users
mailing list