docs/src/install.md

changeset 390
d345541018fa
parent 264
24f5484bae97
child 721
b79340dee0b4
equal deleted inserted replaced
389:92e482410453 390:d345541018fa
1 --- 1 ---
2 title: Build Instructions 2 title: Build Instructions
3 --- 3 ---
4 4
5 The install procedure is the same on all supported platforms. 5 The build processes uses CMake starting with UCX 3.0.
6 For Microsoft Windows, however, you will need an appropriate port of the linux
7 tools (like MinGW or Cygwin).
8 First, download the source code from [Source Forge][1]. 6 First, download the source code from [Source Forge][1].
9 7
10 wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz 8 wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
11 tar -xzf ucx-latest.tar.gz 9 tar -xzf ucx-latest.tar.gz
12 cd ucx-latest 10 cd ucx-latest
11
12 Then create a build directory and issue the cmake command and then make.
13
14 mkdir build
15 cd build
16 cmake ..
17 make
18
19 ---
20
21 ### UCX 2.1
22
23 The build procedure for UCX 2.1 uses a configure script.
24 For Microsoft Windows, you will need an appropriate port of the linux
25 tools (like MinGW or Cygwin).
26 First, download the source code from [Source Forge][1].
27
28 wget https://sourceforge.net/projects/ucx/files/ucx-2.1.0.tar.gz
29 tar -xzf ucx-2.1.0.tar.gz
30 cd ucx-2.1.0
13 31
14 Then issue the `configure` and `make` commands. 32 Then issue the `configure` and `make` commands.
15 33
16 ./configure && make 34 ./configure && make
17 35

mercurial