Skip to content
tech234a edited this page Mar 28, 2020 · 7 revisions

Compiling on Linux

On Ubuntu-based system

Use the following command to install the needed prerequisites for compiling:

sudo apt-get install gcc g++ autoconf automake build-essential libxext-dev byacc flex -y

After installing type the following commands:

./autogen.sh
./configure
make

If no error occurs you will get ppc binary in src directory

Compiling on OS X

On El Capitan 10.11

If you haven't already, install XQuartz.

In Terminal, run the following commands:

./autogen.sh
./configure
make
Clone this wiki locally