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

universe@264 1 ---
universe@264 2 title: Build Instructions
universe@264 3 ---
universe@259 4
universe@390 5 The build processes uses CMake starting with UCX 3.0.
universe@259 6 First, download the source code from [Source Forge][1].
universe@259 7
universe@259 8 wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
universe@259 9 tar -xzf ucx-latest.tar.gz
universe@259 10 cd ucx-latest
universe@390 11
universe@390 12 Then create a build directory and issue the cmake command and then make.
universe@390 13
universe@390 14 mkdir build
universe@390 15 cd build
universe@390 16 cmake ..
universe@390 17 make
universe@390 18
universe@390 19 ---
universe@390 20
universe@390 21 ### UCX 2.1
universe@390 22
universe@390 23 The build procedure for UCX 2.1 uses a configure script.
universe@390 24 For Microsoft Windows, you will need an appropriate port of the linux
universe@390 25 tools (like MinGW or Cygwin).
universe@390 26 First, download the source code from [Source Forge][1].
universe@390 27
universe@390 28 wget https://sourceforge.net/projects/ucx/files/ucx-2.1.0.tar.gz
universe@390 29 tar -xzf ucx-2.1.0.tar.gz
universe@390 30 cd ucx-2.1.0
universe@259 31
universe@259 32 Then issue the `configure` and `make` commands.
universe@259 33
universe@259 34 ./configure && make
universe@259 35
universe@259 36 To verify your installment you can issue `make check`. If everything is fine,
universe@259 37 you can install UCX with
universe@259 38
universe@259 39 make install
universe@259 40
universe@259 41 Note, that you might need administrative privileges for a system wide
universe@259 42 installation.
universe@259 43
universe@259 44 [1]: https://sourceforge.net/projects/ucx/files/
universe@259 45

mercurial