The makefile for macOS (src/makefile.osx) does not work on current systems since it forces the compiler to target PowerPC CPU (which is not supported anymore). The following line:
ARCHFLGS= -mcpu=powerpc
should be replaced by:
ARCHFLGS=
to allow compilation.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The makefile for macOS (src/makefile.osx) does not work on current systems since it forces the compiler to target PowerPC CPU (which is not supported anymore). The following line:
should be replaced by:
to allow compilation.