gcc/libgcobol
GCC Administrator 03855565ae Daily bump.
2025-03-13 00:18:24 +00:00
..
acinclude.m4
aclocal.m4
ChangeLog Daily bump. 2025-03-13 00:18:24 +00:00
charmaps.cc libgcobol: Fix typo in comment 2025-03-12 11:39:41 +00:00
charmaps.h
common-defs.h
config.h.in cobol: Regenerate libgcobol/config.h.h 2025-03-11 22:47:26 +01:00
configure cobol: Fix up libgcobol configure [PR119216] 2025-03-11 14:36:53 +01:00
configure.ac cobol: Fix up libgcobol configure [PR119216] 2025-03-11 14:36:53 +01:00
configure.tgt cobol: Fix up libgcobol configure [PR119216] 2025-03-11 14:36:53 +01:00
constants.cc
ec.h
exceptl.h
gcobolio.h
gfileio.cc
gfileio.h
gmath.cc
gmath.h
intrinsic.cc
io.cc
io.h
libgcobol.cc
libgcobol.h
Makefile.am cobol: Fix up libgcobol configure [PR119216] 2025-03-11 14:36:53 +01:00
Makefile.in cobol: Fix up libgcobol configure [PR119216] 2025-03-11 14:36:53 +01:00
README
valconv.cc
valconv.h

The libgcobol is intended for use entirely and solely by executables created
from COBOL source code by the GCOBOL "COBOL for GCC" front end.

libgcobol.a can be staticly linked in, but it makes for very large binaries. We
tend to use that for debugging the GCOBOL compiler, and not much else

Many of the functions in the library are called by the executable code generated
by the GCOBOL compiler through GIMPLE tags, and thus prototypes -- which are 
part of the C/C++ programming paradigm -- are not used.  Both the calling
program and the called program use the extern "C" construction so that the
linker can find the functions, and they need to agree ahead of time about the
meaning of passed parameters.