Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ElmerCSC
GitHub Repository: ElmerCSC/elmerfem
Path: blob/devel/elmergrid/src/metis-5.1.0/Install.txt
3204 views
1
2
These are some preliminary instructions for the 5.0 release of METIS.
3
4
1. You need to have a C compiler that supports the C99 standard.
5
Gcc works just fine, but I have not tested it on many other architectures
6
(any feedback/patches for different architectures are welcomed)
7
8
2. You need to have GNU make and CMake 2.8 (http://www.cmake.org/) installed.
9
10
3. Edit the file include/metis.h and specify the width (32 or 64 bits) of the
11
elementary data type used in METIS. This is controled by the IDXTYPEWIDTH
12
constant.
13
14
For now, on a 32 bit architecture you can only specify a width of 32,
15
whereas for a 64 bit architecture you can specify a width of either
16
32 or 64 bits.
17
18
19
4. At the top of Metis' directory execute 'make' and follow the instructions.
20
21
make
22
23
5. To build on windows using Visual Studio follow the instructions in the
24
file BUILD-Windows.txt.
25
26
27