Compile ECWolf on Linux

From ECWolf Wiki
Revision as of 19:10, 21 December 2009 by 24.144.250.32 (Created page with 'This guide will demonstrate how to compile the SVN version of ECWolf on Linux. == Dependencies == The following programs/libraries are used by ECWolf. The versions listed belo…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This guide will demonstrate how to compile the SVN version of ECWolf on Linux.

Dependencies

The following programs/libraries are used by ECWolf. The versions listed below are known to work, however other versions may work.

In addition to the above, the following are optional dependencies.

Subversion is also needed to checkout a copy of the latest source.

Retrieving the Source

Use subversion to retrieve the latest version of the source.

svn checkout http://svn.coffeenet.org/ECWolf/trunk/ ecwolf

Compiling

It is recommended that you create a build directory in the newly created ecwolf directory.

cd ecwolf
mkdir build
cd build

Run CMake to generate a Makefile. Assuming there were no errors, you should be able to run make to compile.

cmake ..
make

An ecwolf binary should be produced.

./ecwolf

Debugging

In most cases it is good idea to generate a back trace when ECWolf crashes. To make a debug build of ecwolf simply replace the cmake command with the following.

cmake -DCMAKE_BUILD_TYPE=Debug
make

You should now be able to use gdb to generate a back trace.

gdb ecwolf

GDB has it's own command prompt. Use "run" to start ecwolf and use "bt" to get the back trace after a crash.

(gdb) run
(gdb) bt