source: chapter08/expect.xml@ f6548ac

xry111/arm64
Last change on this file since f6548ac was 328eb6f, checked in by Xi Ruoyao <xry111@…>, 7 months ago

Merge remote-tracking branch 'origin/trunk' into xry111/arm64

  • Property mode set to 100644
File size: 5.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-system-expect" role="wrap">
9 <?dbhtml filename="expect.html"?>
10
11 <sect1info condition="script">
12 <productname>expect</productname>
13 <productnumber>&expect-version;</productnumber>
14 <address>&expect-url;</address>
15 </sect1info>
16
17 <title>Expect-&expect-version;</title>
18
19 <indexterm zone="ch-system-expect">
20 <primary sortas="a-Expect">Expect</primary>
21 </indexterm>
22
23 <sect2 role="package">
24 <title/>
25
26 <para>The <application>Expect</application> package contains tools for
27 automating, via scripted dialogues, interactive applications such as
28 <command>telnet</command>, <command>ftp</command>,
29 <command>passwd</command>, <command>fsck</command>,
30 <command>rlogin</command>, and <command>tip</command>.
31 <application>Expect</application> is also useful for testing these same
32 applications as well as easing all sorts of tasks that are prohibitively
33 difficult with anything else. The <application>DejaGnu</application>
34 framework is written in <application>Expect</application>.</para>
35
36 <segmentedlist>
37 <segtitle>&buildtime;</segtitle>
38 <segtitle>&diskspace;</segtitle>
39
40 <seglistitem>
41 <seg>&expect-tmp-sbu;</seg>
42 <seg>&expect-tmp-du;</seg>
43 </seglistitem>
44 </segmentedlist>
45
46 </sect2>
47
48 <sect2 role="installation">
49 <title>Installation of Expect</title>
50
51 <para>Expect needs PTYs to work. Verify that the PTYs are working
52 properly inside the chroot environment by performing a simple
53 test:</para>
54
55<screen><userinput remap="test">python3 -c 'from pty import spawn; spawn(["echo", "ok"])'</userinput></screen>
56
57 <para>This command should output <computeroutput>ok</computeroutput>.
58 If, instead, the output includes <computeroutput>OSError: out of pty
59 devices</computeroutput>, then the environment is not set up for proper
60 PTY operation. You need to exit from the chroot environment, read
61 <xref linkend='ch-tools-kernfs'/> again, and ensure the
62 <systemitem class="filesystem">devpts</systemitem> file system (and
63 other virtual kernel file systems) mounted correctly. Then reenter
64 the chroot environment following <xref linkend='ch-tools-chroot'/>.
65 This issue needs to be resolved before continuing, or the test suites
66 requiring Expect (for example the test suites of Bash, Binutils, GCC,
67 GDBM, and of course Expect itself) will fail catastrophically, and other
68 subtle breakages may also happen.</para>
69
70 <para>Update two config scripts to allow building this package for
71 AArch64:</para>
72
73<screen><userinput remap="pre">tar -C tclconfig -xf ../autoconf-&autoconf-version;.tar.xz --strip-components=2 \
74 autoconf-&autoconf-version;/build-aux/config.{guess,sub}</userinput></screen>
75
76 <para>Prepare Expect for compilation:</para>
77
78<screen><userinput remap="configure">./configure --prefix=/usr \
79 --with-tcl=/usr/lib \
80 --enable-shared \
81 --mandir=/usr/share/man \
82 --with-tclinclude=/usr/include</userinput></screen>
83
84 <variablelist>
85 <title>The meaning of the configure options:</title>
86
87 <varlistentry>
88 <term><parameter>--with-tcl=/usr/lib</parameter></term>
89 <listitem>
90 <para>This parameter is needed to tell
91 <command>configure</command> where the
92 <command>tclConfig.sh</command> script is located.</para>
93 </listitem>
94 </varlistentry>
95
96 <varlistentry>
97 <term><parameter>--with-tclinclude=/usr/include</parameter></term>
98 <listitem>
99 <para>This explicitly tells Expect where to find Tcl's internal
100 headers.</para>
101 </listitem>
102 </varlistentry>
103
104 </variablelist>
105
106 <para>Build the package:</para>
107
108<screen><userinput remap="make">make</userinput></screen>
109
110 <para>To test the results, issue:</para>
111
112<screen><userinput remap="test">make test</userinput></screen>
113
114 <para>Install the package:</para>
115
116<screen><userinput remap="install">make install
117ln -svf expect&expect-version;/libexpect&expect-version;.so /usr/lib</userinput></screen>
118
119 </sect2>
120
121 <sect2 id="contents-expect" role="content">
122 <title>Contents of Expect</title>
123
124 <segmentedlist>
125 <segtitle>Installed program</segtitle>
126 <segtitle>Installed library</segtitle>
127
128 <seglistitem>
129 <seg>expect</seg>
130 <seg>libexpect&expect-version;.so</seg>
131 </seglistitem>
132 </segmentedlist>
133
134 <variablelist>
135 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
136 <?dbfo list-presentation="list"?>
137 <?dbhtml list-presentation="table"?>
138
139 <varlistentry id="expect">
140 <term><command>expect</command></term>
141 <listitem>
142 <para>Communicates with other interactive programs according
143 to a script</para>
144 <indexterm zone="ch-system-expect expect">
145 <primary sortas="b-expect">expect</primary>
146 </indexterm>
147 </listitem>
148 </varlistentry>
149
150 <varlistentry id="libexpect">
151 <term><filename class="libraryfile">libexpect-&expect-version;.so</filename></term>
152 <listitem>
153 <para>Contains functions that allow Expect to be used as a Tcl
154 extension or to be used directly from C or C++ (without Tcl)</para>
155 <indexterm zone="ch-system-expect libexpect">
156 <primary sortas="c-libexpect-&expect-version;">libexpect-&expect-version;</primary>
157 </indexterm>
158 </listitem>
159 </varlistentry>
160
161 </variablelist>
162
163 </sect2>
164
165</sect1>
Note: See TracBrowser for help on using the repository browser.