source: BOOK/temp-system/common/grep.xml @ cf945fa

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since cf945fa was cf945fa, checked in by Chris Staub <chris@…>, 12 years ago

Removed now-redundant --with-included-regex from final-system Grep

  • Property mode set to 100644
File size: 3.1 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-temp-system-grep" role="wrap">
9  <?dbhtml filename="grep.html"?>
10
11  <title>Grep-&grep-version;</title>
12
13  <indexterm zone="ch-temp-system-grep">
14    <primary sortas="a-Grep">Grep</primary>
15    <secondary>temporary system</secondary>
16  </indexterm>
17
18  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
19  href="../../final-system/common/grep.xml"
20  xpointer="xpointer(//*[@role='package'])"/>
21
22  <sect2 role="installation">
23    <title>Installation of Grep</title>
24
25    <para os="t1">When cross compiling, the <command>configure</command> script
26    does not determine the correct values for the following. Set the values
27    manually:</para>
28
29<screen os="t2"><userinput>cat &gt; config.cache &lt;&lt; EOF
30ac_cv_func_malloc_0_nonnull=yes
31ac_cv_func_realloc_0_nonnull=yes
32EOF</userinput></screen>
33
34    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
35    href="../../final-system/common/grep.xml"
36    xpointer="xpointer(//*[@os='a'])"/>
37
38<screen os="ca"><userinput>./configure --prefix=/tools \
39    --build=${CLFS_HOST} --host=${CLFS_TARGET} \
40    --disable-perl-regexp --without-included-regex \
41    --cache-file=config.cache</userinput></screen>
42
43    <variablelist os="cb">
44      <title>The meaning of the configure options:</title>
45
46      <varlistentry>
47        <term><parameter>--disable-perl-regexp</parameter></term>
48        <listitem>
49          <para>This ensures that the <command>grep</command> program
50          does not get linked against a Perl Compatible Regular Expression
51          (PCRE) library that may be present on the host but will not be
52          available when building the final system.</para>
53        </listitem>
54      </varlistentry>
55
56      <varlistentry>
57        <term><parameter>--without-included-regex</parameter></term>
58        <listitem>
59          <para>When cross-compiling, Grep's <command>configure</command>
60          assumes there is no usable <filename>regex.h</command> installed and
61          instead uses the one included with Grep. This switch forces the use of
62          the regex functions from EGLIBC.</para>
63        </listitem>
64      </varlistentry>
65
66    </variablelist>
67
68    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
69    href="../../final-system/common/grep.xml"
70    xpointer="xpointer(//*[@os='c'])"/>
71
72    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
73    href="../../final-system/common/grep.xml"
74    xpointer="xpointer(//*[@os='d'])"/>
75
76    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
77    href="../../final-system/common/grep.xml"
78    xpointer="xpointer(//*[@os='f'])"/>
79
80    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
81    href="../../final-system/common/grep.xml"
82    xpointer="xpointer(//*[@os='g'])"/>
83
84  </sect2>
85
86  <sect2 role="content">
87    <title/>
88
89    <para>Details on this package are located in <xref
90    linkend="contents-grep" role="."/></para>
91
92  </sect2>
93
94</sect1>
Note: See TracBrowser for help on using the repository browser.