This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository gcc.
from 77278e0292c libstdc++: Fix error reporting for filesystem::rename on Wi [...] new d8e3ddc3191 cobol: Correct libgcobol install directory and add components.
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: gcc/cobol/Make-lang.in | 2 - libgcobol/Makefile.am | 25 +++++-- libgcobol/Makefile.in | 36 ++++++--- libgcobol/compat/README.md | 2 +- .../compat/{lib/gnu => gnu/lib}/CBL_ALLOC_MEM.cbl | 0 .../{lib/gnu => gnu/lib}/CBL_CHECK_FILE_EXIST.cbl | 0 .../{lib/gnu => gnu/lib}/CBL_DELETE_FILE.cbl | 0 .../compat/{lib/gnu => gnu/lib}/CBL_FREE_MEM.cbl | 0 .../compat/gnu}/udf/stored-char-length.cbl | 6 +- libgcobol/posix/cpy/psx-open.cpy | 59 +++++++++++++++ libgcobol/posix/shim/open.cc | 87 ++++++++++++++++++++++ libgcobol/posix/shim/stat.h | 44 +++++++++++ libgcobol/posix/udf/posix-lseek.cbl | 25 +++++++ libgcobol/posix/udf/posix-open.cbl | 53 +++++++++++++ libgcobol/posix/udf/posix-read.cbl | 26 +++++++ libgcobol/posix/udf/posix-write.cbl | 26 +++++++ libgcobol/xmlparse.cc | 2 +- 17 files changed, 369 insertions(+), 24 deletions(-) rename libgcobol/compat/{lib/gnu => gnu/lib}/CBL_ALLOC_MEM.cbl (100%) rename libgcobol/compat/{lib/gnu => gnu/lib}/CBL_CHECK_FILE_EXIST.cbl (100%) rename libgcobol/compat/{lib/gnu => gnu/lib}/CBL_DELETE_FILE.cbl (100%) rename libgcobol/compat/{lib/gnu => gnu/lib}/CBL_FREE_MEM.cbl (100%) copy {gcc/cobol => libgcobol/compat/gnu}/udf/stored-char-length.cbl (71%) create mode 100644 libgcobol/posix/cpy/psx-open.cpy create mode 100644 libgcobol/posix/shim/open.cc create mode 100644 libgcobol/posix/udf/posix-lseek.cbl create mode 100644 libgcobol/posix/udf/posix-open.cbl create mode 100644 libgcobol/posix/udf/posix-read.cbl create mode 100644 libgcobol/posix/udf/posix-write.cbl