|
|
(47 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| == Building and Installing Exodus == | | ==== [[Install/Test/Uninstall - Redhat5/Centos5/Fedora15|Redhat/Fedora/Centos]] ==== |
|
| |
|
| [[Log of an installation of libexodus on Ubuntu 8.04.1 LTS]] | | ==== [[Install/Test/Uninstall - Ubuntu 10.04 LTS|Ubuntu/Debian]] ==== |
|
| |
|
| [[Log of an installation of libexodus on Ubuntu 9.04 Jaunty Jackalope]]
| | ==== [[Install/Test/Uninstall - Suse 11.4|Suse]] ==== |
| | |
| [[Log of an installation of libexodus on Centos 5.3]]
| |
| | |
| === exodus Dependencies ===
| |
| | |
| ==== Building Boost from Source ==== | |
| | |
| Boost binaries are available for most platforms but in some cases it can be easier to build from source as follows:
| |
| | |
| Minimum required is boost 1_32. Here we install 1.44. [[Installing boost 1.38]]
| |
| | |
| Optionally get ICU to fully support unicode in boost regex
| |
| | |
| Centos
| |
| yum install libicu-devel
| |
| Ubuntu
| |
| apt-get install libicu-dev
| |
| | |
| == Building service ==
| |
| | |
| service is an incomplete multithreaded framework to support dynamic loading of library routines and serving a request/response queue.
| |
| | |
| www provides an optional web interface to the request/response queue. Windows only at the moment due to a single asp files but could be ported to php.
| |
| | |
| === Building service ===
| |
| | |
| cd ~/exodus/trunk/service/service
| |
| | |
| g++ -fPIC -c *.cpp -I/usr/local/include/boost-1_38 -I/usr/local/include/exodus
| |
| g++ -shared -o libservice.so -lc *.o
| |
| g++ -o service main.cpp -I/usr/local/include/boost-1_38 -L. -I/usr/local/include/exodus \
| |
| -lexodus -lpq -lboost_filesystem-gcc41-mt -lboost_regex-gcc41-mt -lboost_thread-gcc41-mt \
| |
| -L./ -lservice
| |
| | |
| === Running service ===
| |
| | |
| export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
| |
| ./service
| |