source: chapter08/libffi.xml@ 355d761

multilib
Last change on this file since 355d761 was 355d761, checked in by Thomas Trepl (Moody) <thomas@…>, 2 years ago

Automatic merge of trunk into multilib

  • Property mode set to 100644
File size: 6.3 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-libffi" role="wrap">
9 <?dbhtml filename="libffi.html"?>
10
11 <sect1info condition="script">
12 <productname>libffi</productname>
13 <productnumber>&libffi-version;</productnumber>
14 <address>&libffi-url;</address>
15 </sect1info>
16
17 <title>Libffi-&libffi-version;</title>
18
19 <indexterm zone="ch-system-libffi">
20 <primary sortas="a-libffi">libffi</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The Libffi library provides a portable, high level programming
27 interface to various calling conventions. This allows a programmer to call
28 any function specified by a call interface description at run time.</para>
29
30 <segmentedlist>
31 <segtitle>&buildtime;</segtitle>
32 <segtitle>&diskspace;</segtitle>
33
34 <seglistitem>
35 <seg>&libffi-fin-sbu;</seg>
36 <seg>&libffi-fin-du;</seg>
37 </seglistitem>
38 </segmentedlist>
39
40 </sect2>
41
42 <sect2 role="installation">
43 <title>Installation of Libffi</title>
44
45 <note>
46 <para>Similar to GMP, libffi builds with optimizations specific
47 to the processor in use. If building for another system, change the
48 value of the <parameter>--with-gcc-arch=</parameter> parameter in the
49 following command to an architecture name fully implemented by the
50 CPU on that system.
51 If this is not done, all applications that link to libffi will trigger
52 Illegal Operation Errors.</para>
53 </note>
54
55 <para>Prepare libffi for compilation:</para>
56
57 <screen><userinput remap="configure">./configure --prefix=/usr \
58 --disable-static \
59 --with-gcc-arch=native \
60 --disable-exec-static-tramp</userinput></screen>
61
62 <variablelist>
63 <title>The meaning of the configure option:</title>
64
65 <varlistentry>
66 <term><parameter>--with-gcc-arch=native</parameter></term>
67 <listitem>
68 <para>Ensure GCC optimizes for the current system. If this
69 is not specified, the system is guessed and the code generated
70 may not be correct for some systems. If the generated code
71 will be copied from the native system to a less capable
72 system, use the less capable system as a parameter. For details
73 about alternative system types, see <ulink
74 url='https://gcc.gnu.org/onlinedocs/gcc-&gcc-version;/gcc/x86-Options.html'>
75 the x86 options in the GCC manual</ulink>.</para>
76 </listitem>
77 </varlistentry>
78
79 <varlistentry>
80 <!-- To editors: try to remove it once GJS fixed (at GNOME 43) -->
81 <term><parameter>--disable-exec-static-tramp</parameter></term>
82 <listitem>
83 <para>Disable static trampoline support. It's a new security
84 feature in libffi, but some BLFS packages (notably
85 <application>GJS</application>) have not been adapted for it.</para>
86 </listitem>
87 </varlistentry>
88
89 </variablelist>
90
91 <para>Compile the package:</para>
92
93<screen><userinput remap="make">make</userinput></screen>
94
95 <para>To test the results, issue:</para>
96
97<screen><userinput remap="test">make check</userinput></screen>
98
99 <para>Install the package:</para>
100
101<screen><userinput remap="install">make install</userinput></screen>
102
103 </sect2>
104
105 <!-- - - - - - - - - - -->
106 <!-- Multilib - 32bit -->
107 <!-- - - - - - - - - - -->
108
109 <sect2 arch="ml_32,ml_all" role="installation">
110 <title>Installation of Libffi - 32bit</title>
111
112 <para>Clean previous build:</para>
113
114<screen><userinput remap="pre">make distclean</userinput></screen>
115
116 <para>Prepare Libffi for compilation:</para>
117
118<screen><userinput remap="configure">CC="gcc -m32" CXX="g++ -m32" ./configure \
119 --host=i686-pc-linux-gnu \
120 --prefix=/usr \
121 --libdir=/usr/lib32 \
122 --disable-static \
123 --with-gcc-arch=i686 \
124 --disable-exec-static-tramp</userinput></screen>
125
126 <para>Compile the package:</para>
127
128<screen><userinput remap="make">make</userinput></screen>
129
130 <para>To test the results, issue:</para>
131
132<screen><userinput remap="test">make check</userinput></screen>
133
134 <para>Install the package:</para>
135
136<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
137cp -Rv DESTDIR/usr/lib32/* /usr/lib32
138rm -rf DESTDIR</userinput></screen>
139
140 </sect2><!-- m32 -->
141
142 <!-- - - - - - - - - - -->
143 <!-- Multilib - x32bit -->
144 <!-- - - - - - - - - - -->
145
146 <sect2 arch="ml_x32,ml_all" role="installation">
147 <title>Installation of Libffi - x32bit</title>
148
149 <para>Clean previous build:</para>
150
151<screen><userinput remap="pre">make distclean</userinput></screen>
152
153 <para>Prepare Libffi for compilation:</para>
154
155<screen><userinput remap="configure">CC="gcc -mx32" CXX="g++ -mx32" ./configure \
156 --host=x86_64-unknown-linux-gnux32 \
157 --prefix=/usr \
158 --libdir=/usr/libx32 \
159 --disable-static \
160 --with-gcc-arch=x86_64 \
161 --disable-exec-static-tramp</userinput></screen>
162
163 <para>Compile the package:</para>
164
165<screen><userinput remap="make">make</userinput></screen>
166
167 <para>To test the results, issue:</para>
168
169<screen><userinput remap="test">make check</userinput></screen>
170
171 <para>Install the package:</para>
172
173<screen><userinput remap="install">make DESTDIR=$PWD/DESTDIR install
174cp -Rv DESTDIR/usr/libx32/* /usr/libx32
175rm -rf DESTDIR</userinput></screen>
176
177 </sect2><!-- mx32 -->
178
179 <sect2 id="contents-libffi" role="content">
180 <title>Contents of Libffi</title>
181
182 <segmentedlist>
183 <segtitle>Installed library</segtitle>
184
185 <seglistitem>
186 <seg>libffi.so</seg>
187 </seglistitem>
188 </segmentedlist>
189
190 <variablelist>
191 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
192 <?dbfo list-presentation="list"?>
193 <?dbhtml list-presentation="table"?>
194
195 <varlistentry id="libffi">
196 <term><filename class="libraryfile">libffi</filename></term>
197 <listitem>
198 <para>contains the foreign function interface API functions</para>
199 <indexterm zone="ch-system-libffi">
200 <primary sortas="c-libffi">libffi</primary>
201 </indexterm>
202 </listitem>
203 </varlistentry>
204 </variablelist>
205
206 </sect2>
207
208</sect1>
Note: See TracBrowser for help on using the repository browser.