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

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

Downgraded PPL to 0.10.2, GCC incompatible with 0.11pre24. Also clean up Cloog-PPL and remove a sed to make it work with 0.11.

  • Property mode set to 100644
File size: 4.2 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-ppl" role="wrap">
9  <?dbhtml filename="ppl.html"?>
10
11  <title>PPL-&ppl-version;</title>
12
13  <indexterm zone="ch-system-ppl">
14    <primary sortas="a-PPL">PPL</primary>
15  </indexterm>
16
17  <sect2 role="package">
18    <title/>
19
20    <para>The Parma Polyhedra Library (PPL) provides numerical abstractions
21    especially targeted at applications in the field of analysis and
22    verification of complex systems.  CLooG-PPL requires this library.</para>
23
24  </sect2>
25
26  <sect2 role="installation">
27    <title>Installation of PPL</title>
28
29    <para os="s1">The following fixes an issue when detecting newer versions
30    of GMP.</para>
31
32<screen os="s2"><userinput>sed -i "s/__GMP_BITS_PER_MP_LIMB/GMP_LIMB_BITS/g" configure</userinput></screen>
33
34    <para os="a">Prepare PPL for compilation:</para>
35
36<screen os="b"><userinput>CPPFLAGS=-fexceptions CC="gcc -isystem /usr/include" \
37    CXX="g++ -isystem /usr/include" \
38    LDFLAGS="-Wl,-rpath-link,/lib" \
39    ./configure --prefix=/usr --enable-shared \
40      --disable-optimization</userinput></screen>
41
42    <para os="c">Compile the package:</para>
43
44<screen os="d"><userinput>make</userinput></screen>
45
46    <important os="e">
47      <para>The test suite for PPL is considered
48      critical. Do not skip it under any circumstance.</para>
49    </important>
50
51    <para os="f">Test the results:</para>
52
53<screen os="g"><userinput>make check</userinput></screen>
54
55    <para os="h">Install the package:</para>
56
57<screen os="i"><userinput>make install</userinput></screen>
58
59  </sect2>
60
61  <sect2 id="contents-ppl" role="content">
62    <title>Contents of PPL</title>
63
64    <segmentedlist>
65      <segtitle>Installed programs</segtitle>
66      <segtitle>Installed libraries</segtitle>
67      <segtitle>Installed directories</segtitle>
68
69      <seglistitem>
70        <seg>ppl-config, ppl_lcdd</seg>
71        <seg>libppl.[a,so], libppl_c.[a,so], libpwl.[a,so]</seg>
72        <seg>/usr/share/doc/ppl, /usr/share/doc/pwl</seg>
73      </seglistitem>
74    </segmentedlist>
75
76    <variablelist>
77      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
78      <?dbfo list-presentation="list"?>
79      <?dbhtml list-presentation="table"?>
80
81      <varlistentry id="ppl-config">
82        <term><command>ppl-config</command></term>
83        <listitem>
84          <para>Outputs information about the PPL installation</para>
85          <indexterm zone="ch-system-ppl ppl-config">
86            <primary sortas="b-ppl-config">ppl-config</primary>
87          </indexterm>
88        </listitem>
89      </varlistentry>
90
91      <varlistentry id="ppl_lcdd">
92        <term><command>ppl_lcdd</command></term>
93        <listitem>
94          <para>Reads an H-representation of a polyhedron and generates a
95          V-representation of the same polyhedron</para>
96          <indexterm zone="ch-system-ppl ppl_lcdd">
97            <primary sortas="b-ppl_lcdd">ppl_lcdd</primary>
98          </indexterm>
99        </listitem>
100      </varlistentry>
101
102      <varlistentry id="libppl">
103        <term><filename class="libraryfile">libppl</filename></term>
104        <listitem>
105          <para>The Parma Polyhedra Library (PPL).</para>
106          <indexterm zone="ch-system-ppl libppl">
107            <primary sortas="c-libppl">libppl</primary>
108          </indexterm>
109            </listitem>
110      </varlistentry>
111
112      <varlistentry id="libppl_c">
113        <term><filename class="libraryfile">libppl_c</filename></term>
114        <listitem>
115          <para>The Parma Polyhedra Library bindings for C.</para>
116          <indexterm zone="ch-system-ppl libppl_c">
117            <primary sortas="c-libppl_c">libppl_c</primary>
118          </indexterm>
119        </listitem>
120      </varlistentry>
121
122      <varlistentry id="libpwl">
123        <term><filename class="libraryfile">libpwl</filename></term>
124        <listitem>
125          <para>The Parma Watchdog Library</para>
126          <indexterm zone="ch-system-ppl libpwl">
127            <primary sortas="c-libpwl">libpwl</primary>
128          </indexterm>
129        </listitem>
130      </varlistentry>
131
132    </variablelist>
133
134  </sect2>
135
136</sect1>
Note: See TracBrowser for help on using the repository browser.