source: clfs-sysroot/BOOK/final-system/common/cloog-ppl.xml @ 56a80bb

Last change on this file since 56a80bb was 56a80bb, checked in by Joe Ciccone <jciccone@…>, 15 years ago

Clean up Libtool files left behind by PPL and CLooG-PPL.
Fix a compilation error with CLooG-PPL where it cant find libstdc++.so.

  • Property mode set to 100644
File size: 3.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-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    <secondary>temporary system</secondary>
16  </indexterm>
17
18  <sect2 role="package">
19    <title/>
20
21    <para>CLooG-PPL is a library to generate code for scanning Z-polyhedra.
22    In other words, it finds code that reaches each integral point of one or
23    more parameterized polyhedra.  GCC links with this library in order to
24    enable the new loop generation code known as Graphite.</para>
25
26  </sect2>
27
28  &env-target;
29
30  <sect2 role="installation">
31    <title>Installation of CLooG-PPL</title>
32
33    <para os="a">Prepare CLooG-PPL for compilation:</para>
34
35<screen os="b"><userinput>LDFLAGS="-Wl,-rpath-link,${CLFS}/cross-tools/${CLFS_TARGET}/lib" \
36    ./configure --build=${CLFS_HOST} --host=${CLFS_TARGET} \
37    --prefix=/usr --enable-shared \
38    --with-gmp --with-ppl</userinput></screen>
39
40    <para os="c">Compile the package:</para>
41
42<screen os="d"><userinput>make</userinput></screen>
43
44    <para os="h">Install the package:</para>
45
46<screen os="i"><userinput>make DESTDIR=${CLFS} install</userinput></screen>
47
48    <para os="g">At this time, Libtool does not support searching a sysroot
49    for libraries. Leaving the .la files in place will cause Libtool to look
50    in the wrong place for libraries. These files are not required for
51    linking on Linux. Remove them with the following command:</para>
52
53<screen os="h"><userinput>rm -v ${CLFS}/usr/lib/libcloog.la</userinput></screen>
54
55  </sect2>
56
57  <sect2 id="contents-cloog-ppl" role="content">
58    <title>Contents of CLooG-PPL</title>
59
60    <segmentedlist>
61      <segtitle>Installed Libraries</segtitle>
62
63      <seglistitem>
64        <seg>libcloog.[a,so]</seg>
65      </seglistitem>
66    </segmentedlist>
67
68    <variablelist>
69      <bridgehead renderas="sect3">Short Descriptions</bridgehead>
70      <?dbfo list-presentation="list"?>
71      <?dbhtml list-presentation="table"?>
72
73      <varlistentry id="cloog">
74        <term><command>cloog</command></term>
75        <listitem>
76          <para>Loop generator for scanning Z-polyhedra</para>
77          <indexterm zone="ch-system-cloog-ppl cloog">
78            <primary sortas="b-cloog">cloog</primary>
79          </indexterm>
80        </listitem>
81      </varlistentry>
82
83      <varlistentry id="libcloog">
84        <term><filename class="libraryfile">libcloog</filename></term>
85        <listitem>
86          <para>The Chunky Loop Generator.</para>
87          <indexterm zone="ch-system-cloog-ppl libcloog">
88            <primary sortas="b-libcloog-ppl">libcloog</primary>
89          </indexterm>
90        </listitem>
91      </varlistentry>
92
93    </variablelist>
94
95  </sect2>
96
97</sect1>
Note: See TracBrowser for help on using the repository browser.