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

From NEOSYS Dev Wiki
Jump to navigationJump to search
(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...)
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
=== Preparation ===
=== Preparation ===


  sudo su -
  sudo apt-get update
apt-get update
  sudo apt-get upgrade
  apt-get upgrade
  sudo apt-get install postgresql postgresql-server-dev-8.3 libpq-dev libboost-dev build-essential subversion
  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 ===
=== 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();
}
</pre>
 
g++ tester.cpp -lexodus-9.6 -lpq -I/usr/local/include/exodus
 
/a.out
 
25 JUN 2009

Latest revision as of 18:54, 11 July 2009

Preparation

sudo apt-get update
sudo apt-get upgrade
sudo 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