Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/elmergrid/src/metis-5.1.0/GKlib/BUILD.txt
3206 views
1
Building GKlib requires CMake 2.8. Once you've installed CMake run
2
3
$ make
4
5
This will build the GKlib library in build/<arch>/. Options can be tweaked by
6
running make config. For example,
7
8
$ make config openmp=ON
9
$ make
10
11
will build GKlib will OpenMP support if it is available.
12
13
GKlib can be installed with
14
15
$ make install
16
17
and uninstalled with
18
19
$ make uninstall
20
21
You can choose the installation prefix with make config:
22
23
$ make config prefix=~/local
24
25
will cause GKlib to be install in the ~/local tree.
26
27