|
Compilation
Details on the compilation of icsiboost
Featured The basic compilation generates the icsiboost executable in the ./src subdirectory: ./configure make Or, if you want to install icsiboost in a specific directory (dir/bin) and get optimizations: ./configure --prefix=dir CFLAGS=-O3 make make install Refer to automake/autoconf... tools documentation for details. icsiboost is compiled by gcc (never tried anything else) and requires pcre, pthreads and zlib. It has been tested on linux and MacOSX 10.4. A library for data structures is provided in ./src/utils/. It handles things like hashtables, strings, regular expressions or growable arrays in the philosophy of perl, but for c. This library is not very clever but it does its job and icsiboost is heavily built on it. You can compile the test suite for that library and run it: cd src make utils_test ./utils_test The main configuration options are located in the source files (not yet in configure):
|