docs/src/install.md

Sat, 06 Feb 2021 19:11:44 +0100

author
Mike Becker <universe@uap-core.de>
date
Sat, 06 Feb 2021 19:11:44 +0100
changeset 390
d345541018fa
parent 264
24f5484bae97
child 721
b79340dee0b4
permissions
-rw-r--r--

starts ucx 3.0 development

     1 ---
     2 title: Build Instructions
     3 ---
     5 The build processes uses CMake starting with UCX 3.0.
     6 First, download the source code from [Source Forge][1].
     8     wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
     9     tar -xzf ucx-latest.tar.gz
    10     cd ucx-latest
    12 Then create a build directory and issue the cmake command and then make.
    14     mkdir build
    15     cd build
    16     cmake ..
    17     make
    19 ---
    21 ### UCX 2.1
    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].
    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
    32 Then issue the `configure` and `make` commands.
    34     ./configure && make
    36 To verify your installment you can issue `make check`. If everything is fine,
    37 you can install UCX with
    39     make install
    41 Note, that you might need administrative privileges for a system wide
    42 installation.
    44 [1]: https://sourceforge.net/projects/ucx/files/

mercurial