-
Notifications
You must be signed in to change notification settings - Fork 0
/
DEPENDENCIES
176 lines (157 loc) · 5.83 KB
/
DEPENDENCIES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
The following packages should be installed before GNU clisp is installed
(runtime dependencies that are also build dependencies):
* GNU libsigsegv
+ Highly recommended.
Needed for catching stack overflows (otherwise a stack overflow may crash
the process) and for generational garbage collection.
+ Homepage:
https://www.gnu.org/software/libsigsegv/
+ Download:
https://ftp.gnu.org/gnu/libsigsegv/
+ Pre-built package name:
- On Debian and Debian-based systems: libsigsegv-dev,
- On Red Hat distributions: libsigsegv-devel.
- Other: https://repology.org/project/libsigsegv/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libsigsegv-prefix=DIR to 'configure'.
* GNU libffcall
+ Highly recommended.
Needed for the foreign function interface (FFI).
+ Homepage:
https://www.gnu.org/software/libffcall/
+ Download:
https://ftp.gnu.org/gnu/libffcall/
+ Pre-built package name:
- On Debian and Debian-based systems: libffcall-dev,
- On Red Hat distributions: ffcall.
- Other: https://repology.org/project/ffcall/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libffcall-prefix=DIR to 'configure'.
* GNU libiconv
+ Not needed on systems with glibc, on macOS, and NetBSD.
But recommended on all other systems.
Needed for multibyte character set support (other than UTF-8,
for which GNU libiconv is not needed).
+ Homepage:
https://www.gnu.org/software/libiconv/
+ Download:
https://ftp.gnu.org/gnu/libiconv/
+ Pre-built package name:
- On Debian and Debian-based systems: --,
- On Red Hat distributions: --.
- Other: https://repology.org/project/libiconv/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libiconv-prefix=DIR to 'configure'.
* GNU libunistring
+ If not pre-installed, some code will be statically linked into CLISP.
+ Homepage:
https://www.gnu.org/software/libunistring/
+ Download:
https://ftp.gnu.org/gnu/libunistring/
+ Pre-built package name:
- On Debian and Debian-based systems: libunistring-dev,
- On Red Hat distributions: libunistring-devel.
- Other: https://repology.org/project/libunistring/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libunistring-prefix=DIR to 'configure'.
* libintl, part of GNU gettext
+ Not needed on systems with glibc.
But recommended on all other systems.
Needed for localization of messages.
+ Homepage:
https://www.gnu.org/software/gettext/
+ Download:
https://ftp.gnu.org/gnu/gettext/
+ Pre-built package name:
- On Debian and Debian-based systems: --,
- On Red Hat distributions: --.
- Other: https://repology.org/project/gettext/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libintl-prefix=DIR to 'configure'.
* GNU readline
+ Recommended.
Needed for the interactive line-editing in the read-eval-print loop.
+ Homepage:
https://www.gnu.org/software/readline/
+ Download:
https://ftp.gnu.org/gnu/readline/
+ Pre-built package name:
- On Debian and Debian-based systems: libreadline-dev,
- On Red Hat distributions: readline-devel.
- Other: https://repology.org/project/readline/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libreadline-prefix=DIR to 'configure'.
* GNU ncurses (preferred)
or libtermcap (discouraged) or a curses library (legacy).
+ Recommended.
Needed for fancy input/output in terminal emulators.
+ Homepage:
https://www.gnu.org/software/ncurses/
+ Download:
https://ftp.gnu.org/gnu/ncurses/
+ Pre-built package name:
- On Debian and Debian-based systems: libncurses-dev,
- On Red Hat distributions: ncurses-devel.
- Other: https://repology.org/project/ncurses/versions
+ If it is installed in a nonstandard directory, pass the option
--with-libtermcap-prefix to 'configure'.
The following packages should be installed when GNU clisp is installed
(runtime dependencies, but not build dependencies):
None.
The following should be installed when GNU clisp is built, but are not
needed later, once it is installed (build dependencies, but not runtime
dependencies):
* A C runtime, compiler, linker, etc.
+ Mandatory.
Either the platform's native 'cc', or GCC 3.1 or newer.
+ GCC Homepage:
https://gcc.gnu.org/
+ Download:
https://ftp.gnu.org/gnu/gcc/
* A 'make' utility.
+ Mandatory.
Either the platform's native 'make' (for in-tree builds only),
or GNU Make 3.79.1 or newer.
+ GNU Make Homepage:
https://www.gnu.org/software/make/
+ Download:
https://ftp.gnu.org/gnu/make/
* A shell
+ Mandatory.
Either the platform's native 'sh', or Bash.
+ Homepage:
https://www.gnu.org/software/bash/
+ Download:
https://ftp.gnu.org/gnu/bash/
* Core POSIX utilities, including:
[ basename cat chgrp chmod chown cp dd echo expand expr
false hostname install kill ln ls md5sum mkdir mkfifo
mknod mv printenv pwd rm rmdir sleep sort tee test touch
true uname
+ Mandatory.
Either the platform's native utilities, or GNU coreutils.
+ Homepage:
https://www.gnu.org/software/coreutils/
+ Download:
https://ftp.gnu.org/gnu/coreutils/
* The comparison utilities 'cmp' and 'diff'.
+ Mandatory.
Either the platform's native utilities, or GNU diffutils.
+ Homepage:
https://www.gnu.org/software/diffutils/
+ Download:
https://ftp.gnu.org/gnu/diffutils/
* Grep.
+ Mandatory.
Either the platform's native grep, or GNU grep.
+ Homepage:
https://www.gnu.org/software/grep/
+ Download:
https://ftp.gnu.org/gnu/grep/
* Awk.
+ Mandatory.
Either the platform's native awk, mawk, or nawk, or GNU awk.
+ Homepage:
https://www.gnu.org/software/gawk/
+ Download:
https://ftp.gnu.org/gnu/gawk/