Log of an installation of libexodus on Ubuntu 9.04 Jaunty Jackalope

From NEOSYS Dev Wiki
Revision as of 14:34, 26 June 2009 by 85.17.154.66 (talk) (New page: === Preparation === sudo su - apt-get update apt-get upgrade apt-get install postgresql-8.3 apt-get install libpq-dev apt-get install libicu-dev apt-get install build-essential ap...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Preparation

sudo su -
apt-get update
apt-get upgrade
apt-get install postgresql-8.3
apt-get install libpq-dev
apt-get install libicu-dev
apt-get install build-essential
apt-get install subversion
apt-get install libboost1.37-dev

Exodus

(pgexodus (which allows "sort/select/index by") isnt included in this quick install)

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
 #include <exodus/exodus.h>
 int main() {
	date().oconv("D").outputln();
 }
g++ tester.cpp -lexodus-9.6 -lpq -I/usr/local/include/exodus
/a.out
25 JUN 2009