source: chapter06/xz.xml@ 5373af3

xry111/mips64el
Last change on this file since 5373af3 was 91c8848d, checked in by Xi Ruoyao <xry111@…>, 4 days ago

mips64el: chapter06/xz: Work around a libtool bug

  • Property mode set to 100644
File size: 2.7 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
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-tools-xz" role="wrap">
9 <?dbhtml filename="xz.html"?>
10
11 <sect1info condition="script">
12 <productname>xz</productname>
13 <productnumber>&xz-version;</productnumber>
14 <address>&xz-url;</address>
15 </sect1info>
16
17 <title>Xz-&xz-version;</title>
18
19 <indexterm zone="ch-tools-xz">
20 <primary sortas="a-xz">Xz</primary>
21 <secondary>tools</secondary>
22 </indexterm>
23
24 <sect2 role="package">
25 <title/>
26
27 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
28 href="../chapter08/xz.xml"
29 xpointer="xpointer(/sect1/sect2[1]/para[1])"/>
30
31 <segmentedlist>
32 <segtitle>&buildtime;</segtitle>
33 <segtitle>&diskspace;</segtitle>
34
35 <seglistitem>
36 <seg>&xz-tmp-sbu;</seg>
37 <seg>&xz-tmp-du;</seg>
38 </seglistitem>
39 </segmentedlist>
40
41 </sect2>
42
43 <sect2 role="installation">
44 <title>Installation of Xz</title>
45
46 <para>Prepare Xz for compilation:</para>
47
48<screen><userinput remap="configure">./configure --prefix=/usr \
49 --host=$LFS_TGT \
50 --build=$(build-aux/config.guess) \
51 --disable-static \
52 ac_cv_prog_FILECMD=file \
53 --docdir=/usr/share/doc/xz-&xz-version;</userinput></screen>
54
55 <variablelist>
56 <title>The meaning of the new configure options:</title>
57
58 <!-- https://git.savannah.gnu.org/cgit/libtool.git/commit/?id=9a4a02615c9e -->
59 <varlistentry>
60 <term><parameter>ac_cv_prog_FILECMD=file</parameter></term>
61 <listitem>
62 <para>Works around an issue in the shipped libtool copy causing
63 the configure script fail to find the <command>file</command>
64 command of the host distro. The issue is harmless for most
65 architectures, but it can make
66 <parameter>--disable-static</parameter> ineffective for
67 MIPS.</para>
68 </listitem>
69 </varlistentry>
70 </variablelist>
71
72
73 <para>Compile the package:</para>
74
75<screen><userinput remap="make">make</userinput></screen>
76
77 <para>Install the package:</para>
78
79<screen><userinput remap="install">make DESTDIR=$LFS install</userinput></screen>
80
81 <para>Remove the libtool archive file because it is harmful for cross
82 compilation:</para>
83
84<screen><userinput remap="install">rm -v $LFS/usr/lib/liblzma.la</userinput></screen>
85
86 </sect2>
87
88 <sect2 role="content">
89 <title/>
90 <para>Details on this package are located in <xref linkend="contents-xz" role="."/></para>
91
92 </sect2>
93
94</sect1>
Note: See TracBrowser for help on using the repository browser.