Next: The Parameter File
Up: Setup the code
Previous: Setup the code
Contents
As the code is written completely in C you need a C Compiler (e.g. the http://gcc.gnu.org/GNU C Compiler). If you wish
to deploy a parallel execution of your simulation you should compile the Code with Open-MP functionality
(e.g. http://gcc.gnu.org/projects/gomp/GOMP. The package comes with the common
- ./configure
- make
- make install
procedure. The make install is typically not necessary. Just copy the TYCHO executable, which you find after a successful compilation in the sources directory, in a working directory of your choice.
To give flags to the compiler you can set them by configure-arguments
(e.g. ./configure CFLAGS="-O3 -fopenmp" LIBS="-lm -lgomp").
2013-02-06