docs/src/install.md

Tue, 27 Jun 2023 17:53:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 27 Jun 2023 17:53:56 +0200
changeset 721
b79340dee0b4
parent 390
d345541018fa
child 737
b3b113eac3b8
permissions
-rw-r--r--

update install instructions for ucx 3.0

     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 use cmake to create the build files,
    13 execute the build, and - optionally - install the files.
    15     mkdir build
    16     cd build
    17     cmake ..
    18     cmake --build .
    19     sudo cmake --install .
    21 ---
    23 ### UCX 2.1
    25 The build procedure for UCX 2.1 uses a configure script.
    26 For Microsoft Windows, you will need an appropriate port of the linux
    27 tools (like MinGW or Cygwin).
    28 First, download the source code from [Source Forge][1].
    30     wget https://sourceforge.net/projects/ucx/files/ucx-2.1.0.tar.gz
    31     tar -xzf ucx-2.1.0.tar.gz
    32     cd ucx-2.1.0
    34 Then issue the `configure` and `make` commands.
    36     ./configure && make
    38 To verify your installment you can issue `make check`. If everything is fine,
    39 you can install UCX with
    41     make install
    43 Note, that you might need administrative privileges for a system wide
    44 installation.
    46 [1]: https://sourceforge.net/projects/ucx/files/

mercurial