Difference between revisions of "OAGear"
(Created page with 'Installing OAGear We have a copy of OAGear in our subversion repository. To configure: > ./configure --prefix=$HOME --with-oa=/mada/software/oa2.2.6/ CXX=g++34 --disable-all --…') |
|||
Line 1: | Line 1: | ||
− | Installing OAGear | + | === Installing OAGear === |
− | We have a copy of OAGear in our subversion repository. | + | We have a copy of OAGear in our subversion repository, which you can get with. |
− | + | > svn co file:///mada/users/vlsi/OAGear | |
− | > | + | |
− | + | To configure you'll need to set up a few things, including local bin/ and lib/ folders, and the path to Open Access. OAGear does not compile correctly with g++ 4; specifically segmentation faults will occur on some function returns when Open Access objects have been placed on the stack. Use g++ 3.4 to get around this. Finally, --enable-all is assumed by the configuration script unless you tell it otherwise, so simply putting --disable-dd will have no effect because it will be renabled by the implicit --enable-all. The best workaround is to --disable-all then --enable-PACKAGE for each package that you want. | |
− | > make | + | |
− | > make install | + | > ./configure --prefix=$HOME --with-oa=/mada/software/oa2.2.6/ CXX=g++34 --disable-all --enable-timer --enable-util |
− | > make check | + | |
+ | The rest of the installation should be straightforward. | ||
+ | |||
+ | > make | ||
+ | > make install | ||
+ | > make check |
Revision as of 17:52, 8 April 2010
Installing OAGear
We have a copy of OAGear in our subversion repository, which you can get with.
> svn co file:///mada/users/vlsi/OAGear
To configure you'll need to set up a few things, including local bin/ and lib/ folders, and the path to Open Access. OAGear does not compile correctly with g++ 4; specifically segmentation faults will occur on some function returns when Open Access objects have been placed on the stack. Use g++ 3.4 to get around this. Finally, --enable-all is assumed by the configuration script unless you tell it otherwise, so simply putting --disable-dd will have no effect because it will be renabled by the implicit --enable-all. The best workaround is to --disable-all then --enable-PACKAGE for each package that you want.
> ./configure --prefix=$HOME --with-oa=/mada/software/oa2.2.6/ CXX=g++34 --disable-all --enable-timer --enable-util
The rest of the installation should be straightforward.
> make > make install > make check