Difference between revisions of "Eigen 2.0.12 Ubuntu Install"
Jump to navigation
Jump to search
Jgvictores (talk | contribs) |
Jgvictores (talk | contribs) |
||
Line 2: | Line 2: | ||
tar -zxvf 2.0.12.tar.gz | tar -zxvf 2.0.12.tar.gz | ||
cd eigen; mkdir build; cd build | cd eigen; mkdir build; cd build | ||
− | cmake .. | + | cmake -D EIGEN2_INCLUDE_DIR=/usr/local/include .. |
sudo make install | sudo make install | ||
<u>Note</u>: Yes, w/o ccmake or equivalent, make does nothing! | <u>Note</u>: Yes, w/o ccmake or equivalent, make does nothing! | ||
+ | <u>Note</u>: Dependinf on your Eigen2 installation, cmake line may have to be just "cmake .." |
Revision as of 19:13, 9 June 2010
wget http://bitbucket.org/eigen/eigen/get/2.0.12.tar.gz tar -zxvf 2.0.12.tar.gz cd eigen; mkdir build; cd build cmake -D EIGEN2_INCLUDE_DIR=/usr/local/include .. sudo make install
Note: Yes, w/o ccmake or equivalent, make does nothing! Note: Dependinf on your Eigen2 installation, cmake line may have to be just "cmake .."