Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

If you haven’t built Iguana before, first set up some environmental variables that the build system uses.

Okay so to build Iguana assuming you are in the main directory of the mercurial repo, execute the following commands:

cd ~/main2/Iguana

make thirdparty

make -j

You should see something like this, except you probably won’t unless you have a magical set of environmental variables set.

...

The -j4 flag is a little optimization which tells make that it’s okay to do a parallel make which makes the initial build of Iguana much faster. Subsequent builds are usually faster since they are incremental. You can read more about the build system here /wiki/spaces/DEVELOPMEN/pages/1933329.

To run Iguana as a command line program you will need to change to the DBD directory, then type:

./iguana --run

...

This should start up Iguana on the default port. Open up the URL it shows at the bottom in a web browser.

...