docs/src/install.md

changeset 390
d345541018fa
parent 264
24f5484bae97
child 721
b79340dee0b4
     1.1 --- a/docs/src/install.md	Mon Dec 30 09:54:10 2019 +0100
     1.2 +++ b/docs/src/install.md	Sat Feb 06 19:11:44 2021 +0100
     1.3 @@ -2,14 +2,32 @@
     1.4  title: Build Instructions
     1.5  ---
     1.6  
     1.7 -The install procedure is the same on all supported platforms.
     1.8 -For Microsoft Windows, however, you will need an appropriate port of the linux
     1.9 -tools (like MinGW or Cygwin).
    1.10 +The build processes uses CMake starting with UCX 3.0.
    1.11  First, download the source code from [Source Forge][1].
    1.12  
    1.13      wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
    1.14      tar -xzf ucx-latest.tar.gz
    1.15      cd ucx-latest
    1.16 +    
    1.17 +Then create a build directory and issue the cmake command and then make.
    1.18 +
    1.19 +    mkdir build
    1.20 +    cd build
    1.21 +    cmake ..
    1.22 +    make
    1.23 +
    1.24 +---
    1.25 +
    1.26 +### UCX 2.1
    1.27 +
    1.28 +The build procedure for UCX 2.1 uses a configure script.
    1.29 +For Microsoft Windows, you will need an appropriate port of the linux
    1.30 +tools (like MinGW or Cygwin).
    1.31 +First, download the source code from [Source Forge][1].
    1.32 +
    1.33 +    wget https://sourceforge.net/projects/ucx/files/ucx-2.1.0.tar.gz
    1.34 +    tar -xzf ucx-2.1.0.tar.gz
    1.35 +    cd ucx-2.1.0
    1.36  
    1.37  Then issue the `configure` and `make` commands.
    1.38  

mercurial