source: BOOK/final-system/common/cloog-ppl.xml @ b6831b6

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since b6831b6 was b6831b6, checked in by Joe Ciccone <jciccone@…>, 13 years ago

Update the LDFLAGS in the final-system between the installation
of EGLIBC and the installation of GCC. This should fix build errors
in a few odd situations, but it is also correct now. Before /usr/lib*
was not being set in rpath-link, just /lib*.

  • Property mode set to 100644
File size: 2.9 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3  "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4  <!ENTITY % general-entities SYSTEM "../../general.ent">
5  %general-entities;
6]>
7
8<sect1 id="ch-system-cloog-ppl" role="wrap">
9  <?dbhtml filename="cloog-ppl.html"?>
10
11  <title>CLooG-PPL-&cloog-ppl-version;</title>
12
13  <indexterm zone="ch-system-cloog-ppl">
14    <primary sortas="a-CLooG-PPL">CLooG-PPL</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>CLooG-PPL is a library to generate code for scanning Z-polyhedra.
21    In other words, it finds code that reaches each integral point of one or
22    more parameterized polyhedra.  GCC links with this library in order to
23    enable the new loop generation code known as Graphite.</para>
24
25  </sect2>
26
27  <sect2 role="installation">
28    <title>Installation of CLooG-PPL</title>
29
30    <para os="a">Prepare CLooG-PPL for compilation:</para>
31
32<screen os="b"><userinput>CC="gcc -isystem /usr/include" \
33LDFLAGS="-Wl,-rpath-link,/usr/lib:/lib" \
34  ./configure --prefix=/usr --enable-shared --with-gmp \
35    --with-ppl</userinput></screen>
36
37    <para os="c">Compile the package:</para>
38
39<screen os="d"><userinput>make</userinput></screen>
40
41    <important os="e">
42      <para>The test suite for CLooG-PPL is considered
43      critical. Do not skip it under any circumstance.</para>
44    </important>
45
46    <para os="f">Test the results:</para>
47
48<screen os="g"><userinput>make check</userinput></screen>
49
50    <para os="h">Install the package:</para>
51
52<screen os="i"><userinput>make install</userinput></screen>
53
54  </sect2>
55
56  <sect2 id="contents-cloog-ppl" role="content">
57    <title>Contents of CLooG-PPL</title>
58
59    <segmentedlist>
60      <segtitle>Installed programs</segtitle>
61      <segtitle>Installed libraries</segtitle>
62      <segtitle>Installed directory</segtitle>
63
64      <seglistitem>
65        <seg>cloog</seg>
66        <seg>libcloog.[a,so]</seg>
67        <seg>/usr/include/cloog</seg>
68      </seglistitem>
69    </segmentedlist>
70
71    <variablelist>
72      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
73      <?dbfo list-presentation="list"?>
74      <?dbhtml list-presentation="table"?>
75
76      <varlistentry id="cloog">
77        <term><command>cloog</command></term>
78        <listitem>
79          <para>Loop generator for scanning Z-polyhedra</para>
80          <indexterm zone="ch-system-cloog-ppl cloog">
81            <primary sortas="b-cloog">cloog</primary>
82          </indexterm>
83        </listitem>
84      </varlistentry>
85
86      <varlistentry id="libcloog">
87        <term><filename class="libraryfile">libcloog</filename></term>
88        <listitem>
89          <para>The Chunky Loop Generator.</para>
90          <indexterm zone="ch-system-cloog-ppl libcloog">
91            <primary sortas="c-libcloog-ppl">libcloog</primary>
92          </indexterm>
93        </listitem>
94      </varlistentry>
95
96    </variablelist>
97
98  </sect2>
99
100</sect1>
Note: See TracBrowser for help on using the repository browser.