-
Notifications
You must be signed in to change notification settings - Fork 3
/
README
283 lines (202 loc) · 7.74 KB
/
README
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
GNU Cobol
http://sourceforge.net/projects/open-cobol/
http://opencobol.add1tocobol.com/gnucobol
http://www.opencobol.org/
GNU Cobol is a free COBOL compiler, which translates COBOL
programs to C code and compiles it using a native C compiler.
Although many have participated, most development thanks go to
Roger While
Keisuke Nishida
This kit is the first official GNU Cobol 1.1 FTP upload.
This package contains the following subdirectories:
cobc COBOL compiler
libcob COBOL run-time library
bin COBOL driver program
lib Helper routines for missing OS functionality
config Configuration files
po International messages
texi Texinfo files
tests Test suite
extras useful COBOL programs
All programs except those in lib and libcob are distributed under
the GNU General Public License. See COPYING for details.
Programs in lib and libcob are distributed under the GNU Lesser
General Public License. See COPYING.LIB for details.
See AUTHORS for the author of each file.
============
Requirements
============
***
NOTE
For all the following packages (required or optional),
BOTH runtime AND development components are necessary.
***
***
NOTE
All the following packages are normally part of a Linux
distribution. Cygwin also has these as installable packages
ALWAYS install the distro packages when available !!
***
GNU Cobol requires the following external libraries to be installed:
o GNU MP (libgmp) 4.1.2 or later
http://gmplib.org
BOTH runtime AND development components required.
libgmp is used to implement decimal arithmetic.
GNU MP is distributed under GNU Lesser General Public License.
o GNU Libtool (libltdl)
http://www.gnu.org/software/libtool/libtool.html
***
NOTE - libltdl is NOT needed when installing on Linux
or Windows (including Cygwin and MingW).
***
libltdl is used to implement dynamic CALL statements.
GNU Libtool is distributed under GNU Lesser General Public License.
**
The following libraries ARE required WHEN :
1) Indexed-Sequential file I/O is used
o Berkeley DB (libdb) 1.85 or later
http://www.oracle.com/
BOTH runtime AND development components required.
Recommended is version 4.x as 1.85 is known to have problems.
* NOTE *
The following NOTE(S) ONLY apply to DB <= 4.1
* NOTE *
The BDB version 4.0 was never officially supported from
sleepycat but, unfortunately, found it's way into Linux
releases. Install a newer version.
* NOTE *
If you are generating BDB yourself and the BDB
version is <= 4 (and version < 1), you need to specify
--enable-compat185 as a minimum to the BDB configure.
BDB does NOT have the usual install path of either
/usr or /usr/local. Therefore, it is recommended to
specify --prefix=/usr/local to the configure.
libdb is used to implement indexed file I/O and SORT/MERGE.
Berkeley DB is distributed under the original BSD License (1.85)
or their own license (2.x or later). Note that, as
of 2.x, if you linked your software with Berkeley DB, you must
distribute the source code of your software along with your
software, or you have to pay royalty to Oracle.
2) SCREEN I/O is used or extended ACCEPT/DISPLAY is used
BOTH runtime AND development components required.
o Ncurses (ncurses) 5.2 or later
http://www.gnu.org/software/ncurses/ncurses.html
libncurses is used to implement SCREEN SECTION and extended
ACCEPT/DISPLAY.
Ncurses is distributed under a BSD style license.
o Unix curses
o PDCurses (pdcurses) for MinGW ports
http://pdcurses.sourceforge.net
============
============
Installation
============
**
NOTE
Due to deficiencies in the tools used to prepare GNU Cobol
(autoconf/automake/libtool), it is NOT generally possible
to use path names with spaces embedded within them
(Mainly Cygwin/MingW/Windows ports).
**
To generate/install GNU Cobol :
**************************************
./configure
make
Here you may run
make check
to run a series of GNU Cobol test programs (must do!)
This MUST succeed - If not, please report.
make install
** NOTE **
On Linux systems, if you are installing for the
-first- time, you may need to run "ldconfig" (as root).
In fact, it does not hurt if you always do this.
** NOTE **
On some Red Hat (Fedora) installations and
possibly other Linux distros, /usr/local/lib
is NOT automatically searched at runtime.
Edit /etc/ld.so.conf (or the equivalent file) and add
/usr/local/lib to the file.
Rerun "ldconfig".
You may optionally perform a series of COBOL85 tests.
See tests/cobol85/README
It is recommended that you perform this test.
**************************************
If you think you have a problem or just want to
record the make output, just redirect the output thus :
make 1>mymake.log 2>&1
make install 1>myinstall.log 2>&1
**************************************
You can get back to a clean installation status by running :
make distclean
**************************************
The "make install" will default to "/usr/local" as
the install path. You may override this by specifying
"--prefix=<your install path>" to the "./configure"
command.
***********************************************************
============
The following is only interesting for advanced use.
A normal user should not have recourse to use these
options.
There are the following configure options:
--with-cc=<cc> Specify C compiler command used by cobc
Do not specify this unless you know what
you are doing!
--with-db1 Use Berkeley DB 1.85 (libdb1/libdb-1.85)
This overrides --with-db/--without-db
--with-db Use Berkeley DB 3.0 or later (libdb)
This is the default
--without-db Do not use Berkeley DB / any other ISAM handler
You will not be able to use SORT/indexed I/O
--with-dl Use the system dynamic linker instead of ltdl
This is the default
(Note on Windows, native loading is used)
--without-dl Use ltdl for dynamic program loading
--with-patch-level=<n> Set internal patch level to n (default 0)
--with-varseq=<n> Define the format for variable length sequential
files.
For values of 0, 1 and 2, four bytes are
written preceding each record. The format of
these four bytes for values of 0, 1, 2 is
as follows :
n = 0 (default)
The first 2 bytes are the record length
in big-endian order. This is compatible
with mainframe. Bytes 3 and 4 are set
to binary 0.
n = 1
The 4 bytes are the record length in
big-endian order.
n = 2
The 4 bytes are the record length in
native machine order (int).
(This was previously the default)
For the value of 3, two bytes are written
preceding each record :
n = 3
The first 2 bytes are the record length
in big-endian order. The record follows
immediately after beginning at byte 3.
--enable-debug Add '-g' debug option to make
============
============
Development
============
If you wish to hack the GNU Cobol source code, proceed
as follows.
You need to install the following extra packages with specified
minimum version before changing/building GNU Cobol:
For compiling :
o Bison 1.875
o Flex 2.5.4
If you reconfigure and/or prepare a distribution
o Autoconf 2.59
o Automake 1.9.6
o Libtool 1.5.24
o m4 1.4.2
o Gettext 0.14.1
o Texinfo 4.6 (For makeinfo)
If you modify top-level configure.ac, Makefile.am in any directory,
or any of the standard OC tests then you will need to
run "autoreconf -I m4" to regenerate the necessary files.