-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathINSTALL
executable file
·49 lines (25 loc) · 902 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Installation requires **CMake** of version 3.2.3 at least. To build ExaGeoStat,
please follow these instructions:
1. Get ExaGeoStat from git repository
git clone git@github.com:ecrc/exageostat
or
git clone https://github.com/ecrc/exageostat
2. Go into exageostat folder
cd exageostat
4. Create build directory and go there
mkdir build && cd build
5. Use CMake to get all the dependencies
cmake .. -DCMAKE_INSTALL_PREFIX=/path/to/install/
6. Build ExaGeoStat
make -j
7. Run tests (optional)
make test
8. Build local documentation (optional)
make docs
9. Install ExaGeoStat
make install
10. Add line
export PKG_CONFIG_PATH=/path/to/install/lib/pkgconfig:$PKG_CONFIG_PATH
to your .bashrc file.
Now you can use pkg-config executable to collect compiler and linker flags for
ExaGeoStat.