docs/Writerside/topics/install.md

changeset 1277
637d4775e79e
parent 1227
0bf1c1fdf1e3
equal deleted inserted replaced
1276:91a64ba395f7 1277:637d4775e79e
1 --- 1 # Build Instructions
2 title: Build Instructions
3 ---
4 2
5 The build processes uses configure and make. 3 The build processes uses configure and make.
6 Make sure that you have `make` and a 4 Make sure that you have `make` and a
7 <tooltip term="supported-compilers">supported compiler</tooltip> 5 <tooltip term="supported-compilers">supported compiler</tooltip>
8 installed. 6 installed.
12 <procedure> 10 <procedure>
13 <step> 11 <step>
14 Download the latest source archive from 12 Download the latest source archive from
15 <a href="https://sourceforge.net/projects/ucx/files/">Source Forge</a> and extract it somewhere on your machine. 13 <a href="https://sourceforge.net/projects/ucx/files/">Source Forge</a> and extract it somewhere on your machine.
16 You can also use the command line to do this. 14 You can also use the command line to do this.
17 <code-block lang="sh"> 15 <code-block lang="shell">
18 wget -O libucx.tgz https://sourceforge.net/projects/ucx/files/latest 16 wget -O libucx.tgz https://sourceforge.net/projects/ucx/files/latest
19 tar -xzf libucx.tgz 17 tar -xzf libucx.tgz
20 cd libucx 18 cd libucx
21 </code-block> 19 </code-block>
22 </step> 20 </step>
23 <step> 21 <step>
24 Configure the build according to your preferences. You can get a list of 22 Configure the build according to your preferences. You can get a list of
25 all available options with <code>./configure --help</code>. 23 all available options with <code>./configure --help</code>.
26 The recommended configuration for production builds is <code>./configure --release</code>. 24 The recommended configuration for production builds is <code>./configure --release</code>.
27 <code-block lang="sh"> 25 <code-block lang="shell">
28 ./configure --release 26 ./configure --release
29 make 27 make
30 make check 28 make check
31 sudo make install 29 sudo make install
32 </code-block> 30 </code-block>

mercurial