docs/src/install.md

changeset 760
52e49533e7b4
parent 737
b3b113eac3b8
child 806
e06249e09f99
--- a/docs/src/install.md	Mon Dec 18 14:14:47 2023 +0100
+++ b/docs/src/install.md	Mon Dec 18 14:25:10 2023 +0100
@@ -2,21 +2,21 @@
 title: Build Instructions
 ---
 
-The build processes uses CMake starting with UCX 3.0.
+The build processes uses configure and make.
 First, download the source code from [Source Forge][1].
 
     wget https://sourceforge.net/projects/ucx/files/ucx-latest.tar.gz
     tar -xzf ucx-latest.tar.gz
     cd ucx-latest
-    
-Then create a build directory and use cmake to create the build files,
-execute the build, and - optionally - install the files.
+
+Then execute ./configure with the options you like. You can get a list of
+all available options with ./configure --help. The recommended configuration
+for production builds is ./configure --release.
 
-    mkdir build
-    cd build
-    cmake ..
-    cmake --build .
-    sudo cmake --install .
+    ./configure --release
+    make
+    make check                 # only available when built with tests 
+    sudo make install
 
 When compiling UCX 3, you can tweak the buffer sizes for small-buffer-optimization.
 You can do this, be pre-defining one or more of the following macros:

mercurial