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

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since 2f9a05f1 was 2f9a05f1, checked in by Jim Gifford <clfs@…>, 15 years ago

Updated PPL Instructions to save time during make check

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