source: general/prog/clisp.xml@ 64135787

kde5-14269
Last change on this file since 64135787 was 64135787, checked in by Xi Ruoyao <xry111@…>, 3 years ago

Begin manually (while modifying stuff) merging trunk and systemd branches since revision 14087.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/kde5@14270 af4574ff-66df-0310-9fd7-8a98e5e911e0

  • Property mode set to 100644
File size: 5.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 <!ENTITY clisp-download-http "http://ftp.gnu.org/pub/gnu/clisp/latest/clisp-&clisp-version;.tar.bz2">
8 <!ENTITY clisp-download-ftp "ftp://ftp.gnu.org/pub/gnu/clisp/latest/clisp-&clisp-version;.tar.bz2">
9 <!ENTITY clisp-md5sum "1962b99d5e530390ec3829236d168649">
10 <!ENTITY clisp-size "7.8 MB">
11 <!ENTITY clisp-buildsize "163 MB">
12 <!ENTITY clisp-time "0.9 SBU">
13]>
14
15<sect1 id="clisp" xreflabel="Clisp-&clisp-version;">
16 <?dbhtml filename="clisp.html"?>
17
18 <sect1info>
19 <othername>$LastChangedBy$</othername>
20 <date>$Date$</date>
21 </sect1info>
22
23 <title>Clisp-&clisp-version;</title>
24
25 <indexterm zone="clisp">
26 <primary sortas="a-Clisp">Clisp</primary>
27 </indexterm>
28
29 <sect2 role="package">
30 <title>Introduction to Clisp</title>
31
32 <para>
33 <application>GNU Clisp</application> is a Common Lisp implementation
34 which includes an interpreter, compiler, debugger, and many extensions.
35 </para>
36
37 &lfs76_checked;
38
39 <bridgehead renderas="sect3">Package Information</bridgehead>
40 <itemizedlist spacing="compact">
41 <listitem>
42 <para>
43 Download (HTTP): <ulink url="&clisp-download-http;"/>
44 </para>
45 </listitem>
46 <listitem>
47 <para>
48 Download (FTP): <ulink url="&clisp-download-ftp;"/>
49 </para>
50 </listitem>
51 <listitem>
52 <para>
53 Download MD5 sum: &clisp-md5sum;
54 </para>
55 </listitem>
56 <listitem>
57 <para>
58 Download size: &clisp-size;
59 </para>
60 </listitem>
61 <listitem>
62 <para>
63 Estimated disk space required: &clisp-buildsize;
64 </para>
65 </listitem>
66 <listitem>
67 <para>
68 Estimated build time: &clisp-time;
69 </para>
70 </listitem>
71 </itemizedlist>
72
73 <bridgehead renderas="sect4">Recommended</bridgehead>
74 <para role="recommended">
75 <xref linkend="libsigsegv"/>
76 </para>
77
78 <bridgehead renderas="sect4">Optional</bridgehead>
79 <para role="optional">
80 <ulink url="http://www.gnu.org/software/libffcall/">libffcall</ulink>
81 </para>
82
83 <para condition="html" role="usernotes">
84 User Notes: <ulink url="&blfs-wiki;/clisp"/>
85 </para>
86 </sect2>
87
88 <sect2 role="installation">
89 <title>Installation of Clisp</title>
90
91 <note>
92 <para>
93 This package does not support parallel build.
94 </para>
95 </note>
96
97 <para>
98 Install <application>Clisp</application> by running the following commands:
99 </para>
100
101<screen><userinput>mkdir build &amp;&amp;
102cd build &amp;&amp;
103
104./configure --srcdir=../ \
105 --prefix=/usr \
106 --docdir=/usr/share/doc/clisp-&clisp-version; \
107 --with-libsigsegv-prefix=/usr &amp;&amp;
108
109ulimit -s 16384 &amp;&amp;
110make -j1</userinput></screen>
111
112 <para>
113 For reasons which are not understood, the testsuite for this package
114 fails.
115 </para>
116
117 <para>
118 Now, as the <systemitem class="username">root</systemitem> user:
119 </para>
120
121<screen role="root"><userinput>make install</userinput></screen>
122 </sect2>
123
124 <sect2 role="commands">
125 <title>Command Explanations</title>
126
127 <para>
128 <command>uimit -s 16384</command>: this increases the maximum stack
129 size, as recommended by the <command>configure</command>.
130 </para>
131
132 </sect2>
133
134 <sect2 role="content">
135 <title>Contents</title>
136
137 <segmentedlist>
138 <segtitle>Installed Programs</segtitle>
139 <segtitle>Installed Libraries</segtitle>
140 <segtitle>Installed Directories</segtitle>
141
142 <seglistitem>
143 <seg>
144 clisp, clisp-link
145 </seg>
146 <seg>
147 various static libraries in
148 <filename class="directory">/usr/lib/clisp-$clisp-version;/base/</filename>
149 </seg>
150 <seg>
151 /usr/lib/clisp-&clisp-version;
152 /usr/share/doc/clisp-&clisp-version;
153 /usr/share/emacs/site-lisp;
154 </seg>
155 </seglistitem>
156 </segmentedlist>
157
158 <variablelist>
159 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
160 <?dbfo list-presentation="list"?>
161 <?dbhtml list-presentation="table"?>
162
163 <varlistentry id="clisp-prog">
164 <term><command>clisp</command></term>
165 <listitem>
166 <para>is an ANSI Common Lisp compiler, interpreter, and debugger</para>
167 <indexterm zone="clisp clisp-prog">
168 <primary sortas="b-clisp">clisp</primary>
169 </indexterm>
170 </listitem>
171 </varlistentry>
172
173 <varlistentry id="clisp-link">
174 <term><command>clisp-link</command></term>
175 <listitem>
176 <para>is used to link an external module to clisp</para>
177 <indexterm zone="clisp clisp-link">
178 <primary sortas="b-clisp-link">clisp-link</primary>
179 </indexterm>
180 </listitem>
181 </varlistentry>
182 </variablelist>
183
184 </sect2>
185
186</sect1>
Note: See TracBrowser for help on using the repository browser.