glfs/general/prog/cmake.xml
Thomas Trepl (Moody) 65f4f5a7d9 Upgrade cmake-3.20.2
2021-05-01 11:03:22 +02:00

311 lines
9.6 KiB
XML

<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
<!ENTITY % general-entities SYSTEM "../../general.ent">
%general-entities;
<!ENTITY cmake-download-http "https://cmake.org/files/v&cmake-major-version;/cmake-&cmake-version;.tar.gz">
<!ENTITY cmake-download-ftp " ">
<!ENTITY cmake-md5sum "cd0e7735f1e51f30ee3b0844390a464a">
<!ENTITY cmake-size "9.0 MB">
<!ENTITY cmake-buildsize "376 MB (add 901 MB for tests)">
<!ENTITY cmake-time "2.0 SBU (add 3.2 SBU for tests, both using parallelism=4)">
]>
<sect1 id="cmake" xreflabel="CMake-&cmake-version;">
<?dbhtml filename="cmake.html"?>
<sect1info>
<date>$Date$</date>
</sect1info>
<title>CMake-&cmake-version;</title>
<indexterm zone="cmake">
<primary sortas="a-CMake">CMake</primary>
</indexterm>
<sect2 role="package">
<title>Introduction to CMake</title>
<para>
The <application>CMake</application> package contains a modern
toolset used for generating Makefiles. It is a successor of the
auto-generated <command>configure</command> script and aims to
be platform- and compiler-independent. A significant user of
<application>CMake</application> is <application>KDE</application>
since version 4.
</para>
&lfs101_checked;
<bridgehead renderas="sect3">Package Information</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>
Download (HTTP): <ulink url="&cmake-download-http;"/>
</para>
</listitem>
<listitem>
<para>
Download (FTP): <ulink url="&cmake-download-ftp;"/>
</para>
</listitem>
<listitem>
<para>
Download MD5 sum: &cmake-md5sum;
</para>
</listitem>
<listitem>
<para>
Download size: &cmake-size;
</para>
</listitem>
<listitem>
<para>
Estimated disk space required: &cmake-buildsize;
</para>
</listitem>
<listitem>
<para>
Estimated build time: &cmake-time;
</para>
</listitem>
</itemizedlist>
<!--
<bridgehead renderas="sect3">Additional Downloads</bridgehead>
<itemizedlist spacing="compact">
<listitem>
<para>
Required patch:
<ulink url="&patch-root;/cmake-&cmake-version;-src_property_fix-1.patch"/>
</para>
</listitem>
</itemizedlist>
-->
<bridgehead renderas="sect3">CMake Dependencies</bridgehead>
<bridgehead renderas="sect4">Required</bridgehead>
<para role="required">
<xref linkend="libuv"/>
</para>
<bridgehead renderas="sect4">Recommended</bridgehead>
<para role="recommended">
<xref linkend="curl"/>,
<xref linkend="libarchive"/>, and
<xref linkend="nghttp2"/>
</para>
<bridgehead renderas="sect4">Optional</bridgehead>
<para role="optional">
<xref linkend="gcc"/> (for gfortran),
<xref linkend="git"/> (for use during tests),
<xref linkend="mercurial"/> (for use during tests),
<xref linkend="qt5"/> (for the Qt-based GUI),
<xref linkend="subversion"/> (for testing),
<ulink url="http://rhash.sourceforge.net/">rhash</ulink>, and
<ulink url="https://pypi.python.org/pypi/Sphinx">Sphinx</ulink> (for building documents)
</para>
<para condition="html" role="usernotes">User Notes:
<ulink url="&blfs-wiki;/cmake"/>
</para>
</sect2>
<sect2 role="installation">
<title>Installation of CMake</title>
<!-- This patch might be included in 3.19.1 and higher
<para>
First, fix a regression that was discovered after the release of 3.19.0:
</para>
<screen><userinput remap="pre">patch -Np1 -i ../cmake-&cmake-version;-src_property_fix-1.patch</userinput></screen>
-->
<para>
Install <application>CMake</application> by running the following
commands:
</para>
<screen><userinput>sed -i '/"lib64"/s/64//' Modules/GNUInstallDirs.cmake &amp;&amp;
./bootstrap --prefix=/usr \
--system-libs \
--mandir=/share/man \
--no-system-jsoncpp \
--no-system-librhash \
--docdir=/share/doc/cmake-&cmake-version; &amp;&amp;
make</userinput></screen>
<para>
To test the results, issue: <command>LC_ALL=en_US.UTF-8 bin/ctest
-j<replaceable>&lt;N&gt;</replaceable> -O
cmake-&cmake-version;-test.log</command>, where
<replaceable>&lt;N&gt;</replaceable> is an integer between 1 and the
number of system cores. Setting <envar>LC_ALL</envar> is needed to
prevent some test failures when some of the locale variables are
set to non English locales.
<!-- Please, don't remove this comment, needed if tests start to fail
again. If you want to investigate a problem with a given "problem1-test",
use <command>bin/ctest -R "problem1-test"</command> and, to omit it, use
<command>bin/ctest -E "problem1-test"</command>. These options can be
used together: <command>bin/ctest -R "problem1-test" -E
"problem2-test"</command>. Option -N can be used to display all
available tests, and you can run <command>bin/ctest</command> for a
sub-set of tests by using separated by spaces names or numbers as
options. Option -/-help can be used to show all options.-->
</para>
<para>
Now, as the <systemitem class="username">root</systemitem> user:
</para>
<screen role="root"><userinput>make install</userinput></screen>
</sect2>
<sect2 role="commands">
<title>Command Explanations</title>
<para>
<command>sed ... Modules/GNUInstallDirs.cmake</command>:
This command disables applications using cmake from attempting to
install files in /usr/lib64/.
</para>
<para>
<parameter>--system-libs</parameter>: This switch forces the build system
to link against <application>Zlib</application>,
<application>Bzip2</application>, <application>cURL</application>,
<application>nghttp2</application>,
<application>Expat</application> and <application>libarchive</application>
installed on the system.
</para>
<para>
<parameter>--no-system-jsoncpp</parameter>: This switch removes the
<application>JSON-C++</application> library from the list of system
libraries. A bundled version of that library is used instead.
</para>
<para>
<parameter>--no-system-librhash</parameter>: This switch removes the
<application>librhash</application> library from the list of system
libraries used. A bundled version of that library is used instead.
</para>
<para>
<option>--qt-gui</option>: This switch enables building the
<application>Qt</application>-based GUI for
<application>CMake</application>.
</para>
<para>
<option>--parallel=</option>: This switch enables performing the
<application>CMake</application> bootstrap with multiple jobs
at one time.
</para>
</sect2>
<sect2 role="content">
<title>Contents</title>
<segmentedlist>
<segtitle>Installed Programs</segtitle>
<segtitle>Installed Libraries</segtitle>
<segtitle>Installed Directories</segtitle>
<seglistitem>
<seg>
ccmake, cmake, cmake-gui (optional), cpack, and ctest
</seg>
<seg>
None
</seg>
<seg>
/usr/share/cmake-&cmake-major-version; and
/usr/share/doc/cmake-&cmake-version;
</seg>
</seglistitem>
</segmentedlist>
<variablelist>
<bridgehead renderas="sect3">Short Descriptions</bridgehead>
<?dbfo list-presentation="list"?>
<?dbhtml list-presentation="table"?>
<varlistentry id="ccmake">
<term><command>ccmake</command></term>
<listitem>
<para>
is a curses based interactive frontend to
<command>cmake</command>
</para>
<indexterm zone="cmake ccmake">
<primary sortas="b-ccmake">ccmake</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="cmake-prog">
<term><command>cmake</command></term>
<listitem>
<para>
is the makefile generator
</para>
<indexterm zone="cmake cmake-prog">
<primary sortas="b-cmake">cmake</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="cmake-gui">
<term><command>cmake-gui</command></term>
<listitem>
<para>
(optional) is the <application>Qt</application>-based frontend to
<command>cmake</command>
</para>
<indexterm zone="cmake cmake-gui">
<primary sortas="b-cmake-gui">cmake-gui</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="cpack">
<term><command>cpack</command></term>
<listitem>
<para>
is the <application>CMake</application> packaging program
</para>
<indexterm zone="cmake cpack">
<primary sortas="b-cpack">cpack</primary>
</indexterm>
</listitem>
</varlistentry>
<varlistentry id="ctest">
<term><command>ctest</command></term>
<listitem>
<para>
is a testing utility for cmake-generated build trees
</para>
<indexterm zone="cmake ctest">
<primary sortas="b-ctest">ctest</primary>
</indexterm>
</listitem>
</varlistentry>
</variablelist>
</sect2>
</sect1>