source: BOOK/temp-system/common/vim.xml @ 78056ae7

systemd
Last change on this file since 78056ae7 was 7cd7f99, checked in by Chris Staub <chris@…>, 8 years ago

Put one configure option per line

  • Property mode set to 100644
File size: 4.8 KB
RevLine 
[ffbc9152]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-vim" role="wrap">
9  <?dbhtml filename="vim.html"?>
10
11  <title>Vim-&vim-version;</title>
12
13  <indexterm zone="ch-temp-system-vim">
14    <primary sortas="a-Vim">Vim</primary>
15    <secondary>temporary system</secondary>
16  </indexterm>
17
[dabbced]18  <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]19  href="../../final-system/common/vim.xml"
20  xpointer="xpointer(//*[@role='package'])"/>
21
22  <sect2 role="installation">
23    <title>Installation of VIM</title>
24
[21f0998]25    <para os="a">We will cross-compile Vim so that we can have a text editor in
26    <filename class="directory">/tools</filename>. Vim is not technically
27    necessary in the temporary system, in that it is not there to satisfy any
28    package dependencies in the final system, but we believe that a text editor
29    is an extremely useful tool to have there.<!-- If you prefer a different
30    editor, you may check the hints project at <ulink url="&hints-root;" />
31    for information on cross-compiling other text editors. (placeholder -
32    uncomment this sentence if/when such information actually exists)--></para>
33
[dabbced]34    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]35    href="../../final-system/common/vim.xml"
36    xpointer="xpointer(//*[@os='p1'])"/>
37
[dabbced]38    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]39    href="../../final-system/common/vim.xml"
40    xpointer="xpointer(//*[@os='p2'])"/>
41
[878afd8]42    <para os="c1">The <command>configure</command> script is full of logic
[58598c1]43    that aborts at the first sign of cross compiling. Work around this by
44    setting the cached values of several tests with the following
45    command:</para>
[ffbc9152]46
47<screen os="c2"><userinput>cat &gt; src/auto/config.cache &lt;&lt; "EOF"
48vim_cv_getcwd_broken=no
49vim_cv_memmove_handles_overlap=yes
50vim_cv_stat_ignores_slash=no
51vim_cv_terminfo=yes
52vim_cv_toupper_broken=no
53vim_cv_tty_group=world
54EOF</userinput></screen>
55
[878afd8]56    <para os="b">Change the default location of
57    the <filename>vimrc</filename> configuration file to <filename
58    class="directory">/tools/etc</filename>:</para>
[ffbc9152]59
60<screen os="c"><userinput>echo '#define SYS_VIMRC_FILE "/tools/etc/vimrc"' &gt;&gt; src/feature.h</userinput></screen>
61
[dabbced]62    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]63    href="../../final-system/common/vim.xml"
64    xpointer="xpointer(//*[@os='d'])"/>
65
[7cd7f99]66<screen os="e"><userinput>./configure \
67    --build=${CLFS_HOST} \
68    --host=${CLFS_TARGET} \
69    --prefix=/tools \
70    --enable-gui=no \
71    --disable-gtktest \
72    --disable-xim \
73    --disable-gpm \
74    --without-x \
75    --disable-netbeans \
76    --with-tlib=ncurses</userinput></screen>
[ffbc9152]77
[05efce1]78    <variablelist os="f">
79      <title>The meaning of the new configure options:</title>
80
[d0ebf86]81      <varlistentry>
[67e6980]82        <term><parameter>--enable-gui=no --disable-gtktest --disable-xim --disable-gpm --without-x --disable-netbeans</parameter></term>
[d0ebf86]83        <listitem>
84          <para>These options prevent Vim from trying to link to libraries
85          that might be on the host but won't exist inside the temporary
86          build environment.</para>
87        </listitem>
88      </varlistentry>
89
[852824db]90      <varlistentry>
91        <term><parameter>--with-tlib=ncurses</parameter></term>
92        <listitem>
93          <para>Tells Vim to use Ncurses as its terminal library.</para>
94        </listitem>
95      </varlistentry>
96
[05efce1]97    </variablelist>
98
[dabbced]99    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]100    href="../../final-system/common/vim.xml"
101    xpointer="xpointer(//*[@os='g'])"/>
102
[dabbced]103    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]104    href="../../final-system/common/vim.xml"
105    xpointer="xpointer(//*[@os='h'])"/>
106
[dabbced]107    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]108    href="../../final-system/common/vim.xml"
109    xpointer="xpointer(//*[@os='j'])"/>
110
[563e1e2]111    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
112    href="../../final-system/common/vim.xml"
113    xpointer="xpointer(//*[@os='k'])"/>
[ffbc9152]114
[dabbced]115    <xi:include xmlns:xi="http://www.w3.org/2001/XInclude"
[ffbc9152]116    href="../../final-system/common/vim.xml"
[a63f1057]117    xpointer="xpointer(//*[@os='l'])"/>
[ffbc9152]118
[a63f1057]119<screen os="m"><userinput>ln -sv vim /tools/bin/vi</userinput></screen>
[ffbc9152]120
[e5ca899d]121    <para os="tv1">Create a temporary vimrc to make it function more the way you may
[0f90f2f]122    expect it to. This is explained more in the final system:</para>
123
124<screen os="tv2"><userinput>cat &gt; /tools/etc/vimrc &lt;&lt; "EOF"
[320c461]125<literal>" Begin /tools/etc/vimrc
[0f90f2f]126
127set nocompatible
128set backspace=2
129set ruler
130syntax on
131
[320c461]132" End /tools/etc/vimrc</literal>
[0f90f2f]133EOF</userinput></screen>
134
[ffbc9152]135  </sect2>
136
137  <sect2 role="content">
138    <title/>
139
140    <para>Details on this package are located in <xref
141    linkend="contents-vim" role="."/></para>
142
143  </sect2>
144
145</sect1>
Note: See TracBrowser for help on using the repository browser.