ViennaRNA Package 2 - Documentation
Here, we provide all the documentation necessary to install and use the programs of the ViennaRNA Package. We also provide a reference manual the for RNAlib C library which comes with the package
Here, we provide all the documentation necessary to install and use the programs of the ViennaRNA Package. We also provide a reference manual the for RNAlib C library which comes with the package
Depending on your version of gcc (< 4.4 ?) it might be necessary to deactivate OpenMP support by passing the option
--disable-openmpto the ./configure script, since the OpenMP support is only partial in earlier versions of gcc shipped for MacOS X.
Additionally, since MacOS X 10.5 the perl installation distributed with MacOS X seems to always include so called
fat-binaries, i.e. binaries for multiple architecture types.
Although this may be a nice portability feature of MacOS X it will break compilation of the perl interface to the RNAlib!
To circumvent this problem you have two options
$ export ARCHFLAGS="-arch x86_64"
$ ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \
CPP="gcc -E" CXXCPP="g++ -E"