Log of an installation of libexodus on Ubuntu 9.04 Jaunty Jackalope: Difference between revisions

From NEOSYS Dev Wiki
Jump to navigationJump to search
No edit summary
Line 8: Line 8:
=== Exodus ===
=== Exodus ===


(pgexodus (which allows "sort/select/index by") isnt included in this quick install)
The rest of the installation is almost identical to [[Log_of_an_installation_of_libexodus_on_Centos_5.3]]
 
cd ~
mkdir exodus
cd exodus
svn co http://svn.neosys.com/svn/trunk
cd trunk/exodus/exodus
 
./configure
make
make install
 
ldconfig
ln -s /usr/local/include/exodus-9.6/exodus /usr/local/include/exodus
 
=== Testing ===
 
nano tester.cpp
 
<pre>
#include <exodus/exodus.h>
int main() {
date().oconv("D").outputln();
println(oconv(date(),"D"));
}
</pre>
 
g++ tester.cpp -lexodus -I/usr/local/include/exodus
 
/a.out
 
25 JUN 2009
25 JUN 2009

Revision as of 18:52, 11 July 2009

Preparation

sudo su -
apt-get update
apt-get upgrade
apt-get install postgresql postgresql-server-dev-8.3 libpq-dev libboost-dev build-essential subversion

Exodus

The rest of the installation is almost identical to Log_of_an_installation_of_libexodus_on_Centos_5.3