Changeset 61
- Timestamp:
- 01/19/08 11:36:26
- Files:
-
- spatialindex/trunk/INSTALL (modified) (1 diff, 2 props)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
spatialindex/trunk/INSTALL
- Property svn:mime-type set to text/x-rst
- Property svn:keywords set to Id Rev Author Date
r36 r61 1 INSTALLING 1 ***************************************************************************** 2 SpatialIndex Installation 3 ***************************************************************************** 2 4 3 To install the library you need to do the 4 following: 5 :Author: Marios Hadjieleftheriou 6 :Contact: marioh@research.att.com 7 :Revision: $Revision$ 8 :Date: $Date$ 5 9 6 1. Set the CXXFLAGS environment variable to 7 your preferred settings, for example: 10 .. The next heading encountered becomes our H2 11 .. 12 13 .. sectnum:: 14 15 .. contents:: 16 :depth: 2 17 :backlinks: top 18 19 To install the library you need to do the following: 20 21 1. Set the CXXFLAGS environment variable to your preferred settings, for example: 22 23 :: 24 8 25 export CXXFLAGS="-O2" 9 26 export CXXFLAGS="-Wall -g" 10 The default flags are "-O2 -DNDEBUG".11 27 12 2. Run: 28 The default flags are "-O2 -DNDEBUG". 29 30 2. Run: 31 32 :: 33 13 34 ./configure 14 35 15 You can use --enable-debug to compile a debug library.36 You can use --enable-debug to compile a debug library. 16 37 17 By default include files and library files 18 will be installed in /usr/local. If you would 19 like to use a different installation directory 20 (e.g., in case that you do not have root access) 21 run the configure script with the --prefix option: 38 By default include files and library files will be installed in /usr/local. 39 If you would like to use a different installation directory (e.g., in case 40 that you do not have root access) run the configure script with the --prefix option: 41 42 :: 43 22 44 ./configure --prefix=/home/marioh/usr 23 45 24 5. Make the library: 46 5. Make the library: 47 48 :: 49 25 50 make 26 51 27 6. Install the library: 52 6. Install the library: 53 54 :: 55 28 56 make install 29 57
