## ------------------------------------------ ## ## GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests. ## ## ------------------------------------------ ## testsuite: command line was: $ ./testsuite ## ---------- ## ## ChangeLog. ## ## ---------- ## | | 2020-12-23 Simon Sobisch | | * configure.ac: version 3.1.2 | | 2020-12-15 Simon Sobisch | | * configure.ac: fixed use of MPIR_LIBS | | 2020-12-08 Simon Sobisch ## --------- ## ## Platform. ## ## --------- ## hostname = localhost uname -m = x86_64 uname -r = 5.15.77-gentoo-dist uname -s = Linux uname -v = #1 SMP Thu Nov 3 18:21:44 -00 2022 /usr/bin/uname -p = AMD EPYC 7513 32-Core Processor /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown /usr/bin/hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/tests PATH: /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/cobc PATH: /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/bin PATH: /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/libcob/.libs PATH: /usr/lib/portage/python3.10/ebuild-helpers/xattr PATH: /usr/lib/portage/python3.10/ebuild-helpers PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/sbin PATH: /usr/bin PATH: /sbin PATH: /bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2021 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/tests' | at_srcdir='.' | abs_srcdir='/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/tests' | at_top_srcdir='..' | abs_top_srcdir='/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2' | at_top_build_prefix='../' | abs_top_builddir='/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | | EXEEXT='' | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/sh'} testsuite: atlocal: | # | # atlocal gnucobol/tests | # | # Copyright (C) 2003-2012, 2014-2020 Free Software Foundation, Inc. | # Written by Keisuke Nishida, Roger While, Simon Sobisch, Edward Hart | # | # This file is part of GnuCOBOL. | # | # The GnuCOBOL compiler is free software: you can redistribute it | # and/or modify it under the terms of the GNU General Public License | # as published by the Free Software Foundation, either version 3 of the | # License, or (at your option) any later version. | # | # GnuCOBOL is distributed in the hope that it will be useful, | # but WITHOUT ANY WARRANTY; without even the implied warranty of | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | # GNU General Public License for more details. | # | # You should have received a copy of the GNU General Public License | # along with GnuCOBOL. If not, see . | | | TEMPLATE="${abs_srcdir}/testsuite.src" | | # TODO: add missing parts for installcheck | | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COBC="cobc" | COBCRUN="cobcrun" | COBCRUN_DIRECT="" # used for running created executables through tools | # prepend PATH with the actual binaries to let the testsuite find them for | # general check and version output, otherwise not needed | PATH="${abs_top_builddir}/libcob/.libs:${PATH}" | PATH="${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${PATH}" | export PATH | LOCAL_ENV="${abs_top_builddir}/pre-inst-env" | else | if test "x${COBC}" = "x"; then | COBC="cobc" | fi | if test "x${COBCRUN}" = "x"; then | COBCRUN="cobcrun" | fi | if test "x${COBCRUN_DIRECT}" = "x"; then | COBCRUN_DIRECT="" | fi | LOCAL_ENV="" | fi | | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | ABS_COBC="${abs_top_builddir}/cobc/cobc" | ABS_COBCRUN="${abs_top_builddir}/bin/cobcrun" | else | ABS_COBC="$(which cobc)" | ABS_COBCRUN="$(which cobcrun)" | fi | | AWK=gawk | GREP=/bin/grep | SED=/bin/sed | export AWK GREP SED | | # be sure to use the English messages | LC_ALL=C | export LC_ALL | unset LANG | | # workaround to adjust the testsuite later: | # FLAGS="-debug -Wall ${COBOL_FLAGS}" | FLAGS="-debug -Wall ${COBOL_FLAGS} -fno-diagnostics-show-option" | COMPILE="${COBC} -x ${FLAGS}" | COMPILE_ONLY="${COBC} -fsyntax-only ${FLAGS}" | COMPILE_MODULE="${COBC} -m ${FLAGS}" | | # Helper script to unify listings (replace version, date, time) | UNIFY_LISTING="${abs_srcdir}/listings-sed.sh" | | # test runner for manual tests, content may be changed by the user | RUN_PROG_MANUAL="${abs_builddir}/run_prog_manual.sh" | | # unset option if not internally set in this script | _unset_option () { | if test "$1" != "COB_CONFIG_DIR" \ | -a "$1" != "COB_COPY_DIR" \ | -a "$1" != "COB_RUNTIME_CONFIG" \ | -a "$1" != "COB_LIBRARY_PATH" \ | -a "$1" != "COB_CFLAGS" \ | -a "$1" != "COB_LIBS" \ | -a "$1" != "COB_UNIX_LF"; then | unset $1 | fi | } | | # possible path conversion for running the testsuite in an environment | # that doesn't match the one where the tested binaries were built | # Note: not needed for running the testsuite with MSYS as this translates the path | _return_path () { | echo "$1" | } | | # Fix for testcases where cobc translates path to win32 equivalents | if test "x$MSYSTEM" != "x"; then | PATHSEP=";" | else | PATHSEP=':'; | fi | export PATHSEP | | # entries likely referenced in the LIBS entries below | prefix="/usr" | exec_prefix="${prefix}" | | # options that are also used in pre-inst-env (always add to both) | # but not directly in the testsuite | if test "$GNUCOBOL_ENV_SETUP" != "1" -a "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_CFLAGS="-I${abs_top_srcdir} -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -Wno-unused -fsigned-char -Wno-pointer-sign" | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -L/usr/lib64 -lcob -lm" | COB_CONFIG_DIR="${abs_top_srcdir}/config" | COB_COPY_DIR="${abs_top_srcdir}/copy" | LD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$LD_LIBRARY_PATH" | DYLD_LIBRARY_PATH="${abs_top_builddir}/libcob/.libs:$DYLD_LIBRARY_PATH" | SHLIB_PATH="${abs_top_builddir}/libcob/.libs:$SHLIB_PATH" | LIBPATH="${abs_top_builddir}/libcob/.libs:$LIBPATH" | COB_LIBRARY_PATH="${abs_top_builddir}/extras" | | export COB_CFLAGS COB_LIBS | export COB_CONFIG_DIR COB_COPY_DIR | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | export COB_LIBRARY_PATH | fi | COB_UNIX_LF=1 | export COB_UNIX_LF | | # unset all environment variables that are used in libcob | # for runtime configuration ... | COB_RUNTIME_CONFIG="${abs_top_srcdir}/config/runtime_empty.cfg" | export COB_RUNTIME_CONFIG | for cobenv in $(${LOCAL_ENV} ${ABS_COBCRUN} --runtime-conf \ | | grep " env:" | cut -d: -f2 | cut -d= -f1 \ | | grep -v "PATH" | grep -v "TERM"); \ | do _unset_option $cobenv; \ | done | | # prevent multiple calls by caching the output | ${LOCAL_ENV} ${ABS_COBC} --info > info.out | | # ... and also unset for the compiler | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | for cobenv in $(grep "env:" info.out | cut -d: -f2 | cut -d= -f1 \ | | grep -v "PATH"); \ | do _unset_option $cobenv; \ | done | fi | | COB_STACKTRACE=0 | export COB_STACKTRACE | | | # different flags checked in the testsuite | if test "$GNUCOBOL_TEST_LOCAL" != "1"; then | COB_OBJECT_EXT="o" | COB_EXE_EXT="" | COB_BIGENDIAN="no" | COB_HAS_64_BIT_POINTER="yes" | COB_HAS_ISAM="no" | COB_HAS_XML2="no" | COB_HAS_JSON="no" | COB_HAS_CURSES="yes" | else | | COB_OBJECT_EXT="$(grep COB_OBJECT_EXT info.out | cut -d: -f2 | cut -b2-)" | COB_EXE_EXT="$(grep COB_EXE_EXT info.out | cut -d: -f2 | cut -b2-)" | | if test $(grep -i -c "little-endian" info.out) = 0; then | COB_BIGENDIAN="yes" | else | COB_BIGENDIAN="no" | fi | COB_HAS_64_BIT_POINTER=$(grep "64bit-mode" info.out | cut -d: -f2 | cut -b2-) | | cob_indexed=$(grep -i "indexed file" info.out | cut -d: -f2) | if test "x$cob_indexed" = "x"; then | cob_indexed=$(grep ISAM info.out | cut -d: -f2) | fi | case "$cob_indexed" in | " disabled") COB_HAS_ISAM="no";; | " BDB") COB_HAS_ISAM="db";; | " VBISAM"*) COB_HAS_ISAM="vbisam";; | " D-ISAM") COB_HAS_ISAM="disam";; | " C-ISAM") COB_HAS_ISAM="cisam";; | " EXTFH") COB_HAS_ISAM="index_extfh";; | *) echo "unknown entry for indexed handler: '"$cob_indexed"' please report" && exit 1;; | esac | | if test $(grep -i -c "XML library.*disabled" info.out) = 0; then | COB_HAS_XML2="yes" | else | COB_HAS_XML2="no" | fi | if test $(grep -i -c "JSON library.*disabled" info.out) = 0; then | COB_HAS_JSON="yes" | else | COB_HAS_JSON="no" | fi | # see note below | if test $(grep -i -c " screen .*disabled" info.out) = 0; then | COB_HAS_CURSES="yes" | else | COB_HAS_CURSES="no" | fi | fi | if test "x$MSYSTEM" != "x" -o "$OSTYPE" = "cygwin"; then | # running MSYS builds as not-visible child processes result in | # "Redirection is not supported" (at least old PDCurses) | # --> disabling the tests for this feature | # ncurses is known to work as long as TERM is appropriate | if test $(grep -i -c "ncurses" info.out) != 0; then | if test "x$MSYSTEM" != "x"; then | TERM="" | else | TERM="xterm" | fi | export TERM | # no change here... COB_HAS_CURSES="yes" | else | COB_HAS_CURSES="no" | fi | fi | | rm -rf info.out | | # NIST tests (tests/cobol85) are executed in a separate perl process with a new environment --> export needed | export COB_HAS_ISAM COB_HAS_XML2 COB_HAS_JSON COB_HAS_CURSES COB_HAS_64_BIT_POINTER | export COBC COBCRUN COBCRUN_DIRECT RUN_PROG_MANUAL | export COB_OBJECT_EXT COB_EXE_EXT | | # to ensure that no external DB_HOME is polluted: unset | DB_HOME="" && export DB_HOME | | # For the very rare cases where cobc/libcob may need to know if they're running in test mode: | COB_IS_RUNNING_IN_TESTMODE=1 && export COB_IS_RUNNING_IN_TESTMODE ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:26: /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/cobc/cobc --version cobc (GnuCOBOL) 3.1.2.0 Copyright (C) 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Keisuke Nishida, Roger While, Ron Norman, Simon Sobisch, Edward Hart Built Nov 26 2022 17:02:08 Packaged Dec 23 2020 12:04:58 UTC C version "12.2.1 20221008" ./testsuite.at:26: /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/bin/cobcrun --version cobcrun (GnuCOBOL) 3.1.2.0 Copyright (C) 2020 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Roger While, Simon Sobisch, Brian Tiffin Built Nov 26 2022 17:02:08 Packaged Dec 23 2020 12:04:58 UTC libcob (GnuCOBOL) 3.1.2.0 Copyright (C) 2020 Free Software Foundation, Inc. License LGPLv3+: GNU LGPL version 3 or later This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Written by Keisuke Nishida, Roger While, Ron Norman, Simon Sobisch, Edward Hart Built Nov 26 2022 17:02:06 Packaged Dec 23 2020 12:04:58 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Sat Nov 26 17:02:11 CET 2022 1. compiler help and information (used_binaries.at:27): ok (0m0.164s 0m0.060s) 2. compiler warnings (used_binaries.at:50): ok (0m0.281s 0m0.075s) 3. compiler outputs (general) (used_binaries.at:178): ok (0m0.201s 0m0.077s) 4. compiler outputs (file specified) (used_binaries.at:218): ok (0m0.271s 0m0.067s) 5. compiler outputs (path specified) (used_binaries.at:263): ok (0m0.206s 0m0.056s) 6. compiler outputs (assembler) (used_binaries.at:292): ok (0m0.137s 0m0.033s) 7. source file not found (used_binaries.at:327): ok (0m0.007s 0m0.006s) 8. temporary path invalid (used_binaries.at:337): ok (0m0.096s 0m0.030s) 9. use of full path for cobc (used_binaries.at:372): ok (0m0.050s 0m0.016s) 10. C Compiler optimizations (used_binaries.at:390): ok (0m0.406s 0m0.133s) 11. invalid cobc option (used_binaries.at:427): ok (0m0.013s 0m0.013s) 12. cobcrun help and information (used_binaries.at:447): ok (0m0.052s 0m0.019s) 13. cobcrun validation (used_binaries.at:462): ok (0m0.102s 0m0.027s) 14. cobcrun -M DSO entry argument (used_binaries.at:502): ok (0m0.106s 0m0.026s) 15. cobcrun -M directory/ default (used_binaries.at:562): ok (0m0.091s 0m0.037s) 16. cobcrun -M directory/dso alternate (used_binaries.at:601): ok (0m0.097s 0m0.036s) 17. cobcrun -M DSO entry multiple arguments (used_binaries.at:652): ok (0m0.075s 0m0.046s) 18. cobcrun error messages (used_binaries.at:698): ok (0m0.038s 0m0.011s) 19. run job after compilation (used_binaries.at:721): ok (0m0.106s 0m0.025s) 20. run job after compilation (path specified) (used_binaries.at:740): ok (0m0.111s 0m0.021s) 21. run job with optional arguments (used_binaries.at:760): ok (0m0.159s 0m0.048s) 22. compile from stdin (used_binaries.at:782): ok (0m0.104s 0m0.029s) 23. run job after compilation from stdin (used_binaries.at:812): ok (0m0.098s 0m0.039s) 24. cobc with standard configuration file (configuration.at:22): ok (0m0.014s 0m0.007s) 25. cobc dialect features for all -std (configuration.at:43): ok (0m0.281s 0m0.084s) 26. cobc with configuration file via -std (configuration.at:101): ok (0m0.012s 0m0.004s) 27. cobc with standard configuration file via -conf (configuration.at:122): ok (0m0.014s 0m0.002s) 28. cobc with own configuration file via -conf (configuration.at:143): ok (0m0.027s 0m0.013s) 29. cobc configuration: recursive include (configuration.at:172): ok (0m0.015s 0m0.001s) 30. cobc with -std and -conf (configuration.at:210): ok (0m0.025s 0m0.005s) 31. cobc compiler flag on command line (configuration.at:237): ok (0m0.016s 0m0.003s) 32. cobc compiler flag on command line (priority) (configuration.at:256): ok (0m0.051s 0m0.008s) 33. cobc configuration: entries (configuration.at:289): ok (0m0.048s 0m0.035s) 34. cobc configuration: conf missing (configuration.at:336): ok (0m0.025s 0m0.014s) 35. cobc configuration: conf optional (configuration.at:364): ok (0m0.039s 0m0.004s) 36. cobc configuration: incomplete (configuration.at:400): ok (0m0.011s 0m0.003s) 37. runtime configuration (configuration.at:524): ok (0m0.031s 0m0.012s) 38. runtime configuration file (configuration.at:543): ok (0m0.072s 0m0.033s) 39. runtime configuration: recursive include (configuration.at:586): ok (0m0.008s 0m0.006s) 40. runtime configuration: environment priority (configuration.at:615): ok (0m0.008s 0m0.008s) 41. runtime configuration: entries (configuration.at:628): ok (0m0.010s 0m0.005s) 42. runtime configuration: conf missing (configuration.at:709): ok (0m0.027s 0m0.011s) 43. runtime configuration: conf optional (configuration.at:738): ok (0m0.012s 0m0.001s) 44. runtime configuration: strings and environment (configuration.at:751): ok (0m0.014s 0m0.016s) 45. validation of COB_CONFIG_DIR (configuration.at:765): ok (0m0.007s 0m0.008s) 46. COPY: IN / OF / -I (syn_copy.at:21): ok (0m0.121s 0m0.023s) 48. COPY: extension (syn_copy.at:168): ok (0m0.098s 0m0.021s) 49. COPY: within comment (syn_copy.at:255): ok (0m0.027s 0m0.011s) 50. COPY: file not found (syn_copy.at:284): ok (0m0.064s 0m0.017s) 51. COPY: recursive (syn_copy.at:340): ok (0m0.019s 0m0.005s) 52. COPY: replacement order (syn_copy.at:380): ok (0m0.049s 0m0.016s) 53. COPY: separators (syn_copy.at:407): ok (0m0.043s 0m0.021s) 54. COPY: partial replacement (syn_copy.at:436): ok (0m0.043s 0m0.022s) 55. COPY: LEADING replacement (syn_copy.at:466): ok (0m0.054s 0m0.011s) 56. COPY: TRAILING replacement (syn_copy.at:496): ok (0m0.051s 0m0.012s) 57. COPY: recursive replacement (syn_copy.at:526): ok (0m0.053s 0m0.013s) 58. COPY: fixed/free format (syn_copy.at:556): ok (0m0.052s 0m0.012s) 59. Invalid source name (syn_definition.at:25): ok (0m0.005s 0m0.008s) 60. Invalid PROGRAM-ID (syn_definition.at:37): ok (0m0.021s 0m0.000s) 61. Invalid PROGRAM-ID type clause (1) (syn_definition.at:54): ok (0m0.021s 0m0.000s) 62. invalid PROGRAM-ID type clause (2) (syn_definition.at:71): ok (0m0.018s 0m0.003s) 63. INITIAL / RECURSIVE before COMMON (syn_definition.at:88): ok (0m0.015s 0m0.005s) 64. Undefined data name (syn_definition.at:120): ok (0m0.019s 0m0.002s) 65. Undefined group name (syn_definition.at:139): ok (0m0.017s 0m0.004s) 66. Undefined data name in group (syn_definition.at:161): ok (0m0.020s 0m0.001s) 67. Reference not a group name (syn_definition.at:185): ok (0m0.015s 0m0.006s) 68. Incomplete 01 definition (syn_definition.at:207): ok (0m0.016s 0m0.005s) 69. error handling in conditions (syn_definition.at:225): ok (0m0.018s 0m0.002s) 70. Same labels in different sections (syn_definition.at:298): ok (0m0.013s 0m0.007s) 71. Redefinition of 01 items (syn_definition.at:322): ok (0m0.088s 0m0.010s) 72. Redefinition of 01 and 02 items (syn_definition.at:351): ok (0m0.018s 0m0.003s) 73. Redefinition of 02 items (syn_definition.at:371): ok (0m0.014s 0m0.007s) 74. Redefinition of 77 items (syn_definition.at:392): ok (0m0.015s 0m0.005s) 75. Redefinition of 01 and 77 items (syn_definition.at:412): ok (0m0.014s 0m0.006s) 76. Redefinition of 88 items (syn_definition.at:432): ok (0m0.015s 0m0.005s) 77. Redefinition of program-name by other programs (syn_definition.at:453): ok (0m0.037s 0m0.003s) 78. Redefinition of program-name within program (syn_definition.at:533): ok (0m0.032s 0m0.010s) 79. Redefinition of function-prototype name (syn_definition.at:563): ok (0m0.015s 0m0.006s) 80. PROCEDURE DIVISION RETURNING OMITTED: main (syn_definition.at:588): ok (0m0.059s 0m0.019s) 81. PROCEDURE DIVISION RETURNING OMITTED: FUNCTION (syn_definition.at:608): ok (0m0.018s 0m0.003s) 82. PROCEDURE DIVISION RETURNING item (syn_definition.at:627): ok (0m0.087s 0m0.017s) 83. Data item with same name as program-name (syn_definition.at:722): ok (0m0.014s 0m0.006s) 84. Ambiguous reference to 02 items (syn_definition.at:749): ok (0m0.019s 0m0.001s) 85. Ambiguous reference to 02 and 03 items (syn_definition.at:776): ok (0m0.014s 0m0.007s) 86. Ambiguous reference with qualification (syn_definition.at:802): ok (0m0.014s 0m0.008s) 87. Unique reference with ambiguous qualifiers (syn_definition.at:831): ok (0m0.016s 0m0.004s) 88. Undefined procedure name (syn_definition.at:867): ok (0m0.017s 0m0.004s) 89. Redefinition of section names (syn_definition.at:887): ok (0m0.017s 0m0.004s) 90. Redefinition of section and paragraph names (syn_definition.at:912): ok (0m0.017s 0m0.003s) 92. Redefinition of paragraph names (syn_definition.at:975): ok (0m0.017s 0m0.002s) 93. Ambiguous reference to paragraph name (syn_definition.at:1001): ok (0m0.019s 0m0.001s) 94. Non-matching level numbers (extension) (syn_definition.at:1027): ok (0m0.015s 0m0.006s) 95. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:1051): ok (0m0.016s 0m0.005s) 96. CALL BY VALUE national item (extension) (syn_definition.at:1073): ok (0m0.015s 0m0.006s) 97. CALL BY VALUE figurative constants (syn_definition.at:1096): ok (0m0.013s 0m0.007s) 98. Duplicate identification division header (syn_definition.at:1130): ok (0m0.018s 0m0.004s) 99. RETURNING in STOP RUN / GOBACK / EXIT PROGRAM (syn_definition.at:1145): ok (0m0.129s 0m0.058s) 100. Invalid ENVIRONMENT DIVISION order (syn_definition.at:1196): ok (0m0.017s 0m0.005s) 101. Function without END FUNCTION (syn_definition.at:1221): ok (0m0.021s 0m0.000s) 102. Nested programs without END PROGRAM (syn_definition.at:1235): ok (0m0.017s 0m0.003s) 103. Nested programs not in procedure division (syn_definition.at:1257): ok (0m0.017s 0m0.005s) 104. Screen section starts with 78-level (syn_definition.at:1276): ok (0m0.020s 0m0.000s) 105. Invalid PICTURE strings (syn_definition.at:1292): ok (0m0.033s 0m0.005s) 106. PICTURE string with control character (syn_definition.at:1552): ok (0m0.013s 0m0.007s) 107. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1570): ok (0m0.013s 0m0.007s) 108. PICTURE strings invalid with USAGE (syn_definition.at:1593): ok (0m0.020s 0m0.001s) 109. ALPHABET definition (syn_definition.at:1613): ok (0m0.016s 0m0.006s) 110. PROGRAM COLLATING SEQUENCE (syn_definition.at:1636): ok (0m0.047s 0m0.019s) 111. RENAMES item (syn_definition.at:1819): ok (0m0.016s 0m0.001s) 112. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1893): ok (0m0.031s 0m0.005s) 113. SAME AS clause (syn_definition.at:1919): ok (0m0.047s 0m0.012s) 114. TYPEDEF clause (syn_definition.at:1983): ok (0m0.114s 0m0.034s) 116. APPLY COMMIT clause (syn_definition.at:2272): ok (0m0.015s 0m0.008s) 117. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.020s 0m0.001s) 118. Subscript range check (syn_subscripts.at:50): ok (0m0.041s 0m0.002s) 119. Subscript bounds with OCCURS DEPENDING ON (syn_subscripts.at:98): ok (0m0.020s 0m0.002s) 120. Subscripted item requires OCCURS clause (syn_subscripts.at:125): ok (0m0.016s 0m0.006s) 121. Number of subscripts (syn_subscripts.at:151): ok (0m0.035s 0m0.007s) 122. SET SSRANGE syntax (syn_subscripts.at:195): ok (0m0.017s 0m0.004s) 123. OCCURS with level 01 and 77 (syn_occurs.at:29): ok (0m0.041s 0m0.013s) 124. OCCURS with level 66 (syn_occurs.at:84): ok (0m0.020s 0m0.002s) 125. OCCURS with level 78 (syn_occurs.at:103): ok (0m0.018s 0m0.003s) 126. OCCURS with level 88 (syn_occurs.at:121): ok (0m0.021s 0m0.000s) 127. OCCURS with variable-occurrence data item (syn_occurs.at:141): ok (0m0.069s 0m0.014s) 128. OCCURS data-items for INDEXED and KEY (syn_occurs.at:189): ok (0m0.014s 0m0.007s) 129. Nested OCCURS clause (syn_occurs.at:229): ok (0m0.018s 0m0.002s) 130. OCCURS DEPENDING with wrong size (syn_occurs.at:266): ok (0m0.015s 0m0.007s) 131. OCCURS DEPENDING followed by another field (syn_occurs.at:305): ok (0m0.036s 0m0.005s) 132. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:347): ok (0m0.044s 0m0.015s) 133. OCCURS INDEXED before KEY (syn_occurs.at:390): ok (0m0.040s 0m0.002s) 134. OCCURS size check (syn_occurs.at:428): ok (0m0.031s 0m0.013s) 135. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.031s 0m0.012s) 136. REDEFINES: level 02 by 01 (syn_redefines.at:53): ok (0m0.014s 0m0.008s) 137. REDEFINES: level 03 by 02 (syn_redefines.at:74): ok (0m0.015s 0m0.005s) 138. REDEFINES: level 66 (syn_redefines.at:96): ok (0m0.015s 0m0.007s) 139. REDEFINES: level 88 (syn_redefines.at:118): ok (0m0.014s 0m0.008s) 140. REDEFINES: lower level number (syn_redefines.at:147): ok (0m0.018s 0m0.005s) 141. REDEFINES: with OCCURS (syn_redefines.at:173): ok (0m0.016s 0m0.005s) 142. REDEFINES: with subscript (syn_redefines.at:194): ok (0m0.019s 0m0.003s) 143. REDEFINES: with variable occurrence (syn_redefines.at:216): ok (0m0.018s 0m0.003s) 144. REDEFINES: with qualification (syn_redefines.at:251): ok (0m0.014s 0m0.007s) 145. REDEFINES: multiple redefinition (syn_redefines.at:277): ok (0m0.043s 0m0.003s) 146. REDEFINES: size exceeds (syn_redefines.at:305): ok (0m0.021s 0m0.001s) 147. REDEFINES: with VALUE (syn_redefines.at:338): ok (0m0.057s 0m0.027s) 148. REDEFINES: with intervention (syn_redefines.at:370): ok (0m0.017s 0m0.005s) 149. REDEFINES: within REDEFINES (syn_redefines.at:399): ok (0m0.019s 0m0.001s) 150. REDEFINES: non-referenced ambiguous item (syn_redefines.at:420): ok (0m0.014s 0m0.008s) 151. Numeric item (integer) (syn_value.at:43): ok (0m0.016s 0m0.006s) 152. Numeric item (non-integer) (syn_value.at:70): ok (0m0.013s 0m0.008s) 153. Numeric item with picture P (syn_value.at:94): ok (0m0.019s 0m0.001s) 154. Signed numeric literal (syn_value.at:126): ok (0m0.016s 0m0.004s) 155. Alphabetic item (syn_value.at:152): ok (0m0.020s 0m0.001s) 156. Alphanumeric item (syn_value.at:179): ok (0m0.018s 0m0.003s) 157. Alphanumeric group item (syn_value.at:204): ok (0m0.015s 0m0.004s) 158. Numeric-edited item (syn_value.at:239): ok (0m0.045s 0m0.017s) 159. Alphanumeric-edited item (syn_value.at:272): ok (0m0.015s 0m0.007s) 160. Implicit picture from value (syn_value.at:340): ok (0m0.028s 0m0.014s) 161. Missing SELECT (syn_file.at:23): ok (0m0.018s 0m0.004s) 162. Duplicated SELECT (syn_file.at:50): ok (0m0.021s 0m0.000s) 163. Missing FD (syn_file.at:82): ok (0m0.020s 0m0.002s) 164. Duplicated FD (syn_file.at:108): ok (0m0.018s 0m0.003s) 165. ASSIGN to device-name (syn_file.at:137): ok (0m0.075s 0m0.017s) 166. ASSIGN to printer-name (syn_file.at:204): ok (0m0.085s 0m0.008s) 167. ASSIGN to lsq-device-name (syn_file.at:271): ok (0m0.027s 0m0.002s) 168. ASSIGN to variable (syn_file.at:326): ok (0m0.032s 0m0.007s) 169. SELECT without ASSIGN (syn_file.at:431): ok (0m0.018s 0m0.003s) 170. START on SEQUENTIAL file (syn_file.at:459): ok (0m0.020s 0m0.001s) 171. OPEN SEQUENTIAL file REVERSED (syn_file.at:496): ok (0m0.026s 0m0.016s) 172. OPEN SEQUENTIAL file NO REWIND (syn_file.at:544): ok (0m0.016s 0m0.007s) 173. valid key items (syn_file.at:583): ok (0m0.016s 0m0.004s) 174. INDEXED file invalid key items (syn_file.at:633): ok (0m0.015s 0m0.005s) 175. variable record length (syn_file.at:697): ok (0m0.073s 0m0.027s) 176. variable record length DEPENDING item (syn_file.at:808): ok (0m0.036s 0m0.007s) 177. DECLARATIVES invalid procedure reference (1) (syn_file.at:882): ok (0m0.071s 0m0.020s) 178. DECLARATIVES invalid procedure reference (2) (syn_file.at:971): ok (0m0.015s 0m0.006s) 179. EXTERNAL file (syn_file.at:1012): ok (0m0.015s 0m0.005s) 180. RECORDING MODE (syn_file.at:1040): ok (0m0.019s 0m0.003s) 181. CODE-SET clause (syn_file.at:1069): ok (0m0.015s 0m0.007s) 182. CODE-SET FOR clause (syn_file.at:1103): ok (0m0.016s 0m0.006s) 183. WRITE / REWRITE FROM clause and FILE (syn_file.at:1137): ok (0m0.015s 0m0.006s) 184. Clauses following invalid ACCESS clause (syn_file.at:1198): ok (0m0.019s 0m0.002s) 185. RELATIVE KEY type checks (syn_file.at:1222): ok (0m0.015s 0m0.006s) 186. Mismatched KEY clause (syn_file.at:1282): ok (0m0.018s 0m0.001s) 187. RECORD DELIMITER (syn_file.at:1309): ok (0m0.016s 0m0.005s) 188. FILE STATUS (syn_file.at:1417): ok (0m0.013s 0m0.008s) 189. VSAM status (syn_file.at:1516): ok (0m0.056s 0m0.007s) 190. INDEXED file PASSWORD clause (syn_file.at:1562): ok (0m0.021s 0m0.001s) 191. RECORD clause equal limits (syn_file.at:1613): ok (0m0.018s 0m0.003s) 192. FILE ... FROM literal (syn_file.at:1653): ok (0m0.043s 0m0.015s) 193. WRITE / REWRITE on LINE SEQUENTIAL files (syn_file.at:1712): ok (0m0.021s 0m0.000s) 194. WRITE / REWRITE on REPORT files (syn_file.at:1747): ok (0m0.014s 0m0.008s) 195. SELECT without fd-name (syn_file.at:1784): ok (0m0.017s 0m0.005s) 196. Undeclared FILE-ID variable (syn_file.at:1805): ok (0m0.022s 0m0.000s) 197. Undeclared ASSIGN variable (syn_file.at:1830): ok (0m0.018s 0m0.005s) 198. OPEN I-O with LINE SEQUENTIAL (syn_file.at:1909): ok (0m0.018s 0m0.003s) 199. ACCESS RANDOM with ORG SEQUENTIAL (syn_file.at:1934): ok (0m0.020s 0m0.002s) 200. ALTERNATE RECORD KEY SUPPRESS WHEN (syn_file.at:1961): ok (0m0.022s 0m0.008s) 201. RECORD definition with SOURCE IS / = (syn_file.at:2006): ok (0m0.017s 0m0.002s) 204. SELECT/OPEN syntax extensions (syn_file.at:2116): ok (0m0.027s 0m0.014s) 205. GLOBAL FD nested progam (syn_file.at:2211): ok (0m0.039s 0m0.022s) 206. Invalid file name in SELECT (syn_file.at:2249): ok (0m0.018s 0m0.004s) 207. REPORT error/warning (syn_reportwriter.at:23): ok (0m0.018s 0m0.004s) 208. REPORT not positive integers in COL / LINE PLUS (syn_reportwriter.at:124): ok (0m0.019s 0m0.003s) 209. Missing DETAIL line (syn_reportwriter.at:177): ok (0m0.015s 0m0.006s) 210. REPORT LINE PLUS ZERO (syn_reportwriter.at:220): ok (0m0.015s 0m0.006s) 211. Incorrect REPORT NAME (syn_reportwriter.at:270): ok (0m0.032s 0m0.003s) 212. REPORT with PLUS RIGHT/CENTER (syn_reportwriter.at:387): ok (0m0.016s 0m0.007s) 213. PAGE LIMITS clause (syn_reportwriter.at:480): ok (0m0.020s 0m0.002s) 214. Report FD without period (syn_reportwriter.at:515): ok (0m0.012s 0m0.009s) 215. REPORT with unreferenced control field (syn_reportwriter.at:548): ok (0m0.036s 0m0.028s) 216. Incorrect USAGE clause (syn_reportwriter.at:576): ok (0m0.014s 0m0.008s) 217. valid reference modification (syn_refmod.at:25): ok (0m0.045s 0m0.020s) 218. Static out of bounds (syn_refmod.at:51): ok (0m0.018s 0m0.003s) 219. constant-folding out of bounds (syn_refmod.at:95): ok (0m0.035s 0m0.006s) 220. ambiguous AND/OR (syn_misc.at:23): ok (0m0.015s 0m0.007s) 221. warn constant expressions (syn_misc.at:54): ok (0m0.017s 0m0.005s) 222. warn literal size (syn_misc.at:87): ok (0m0.016s 0m0.006s) 223. warn literal size in constant expr. (level 88) (syn_misc.at:352): ok (0m0.015s 0m0.007s) 224. Invalid conditional expression (1) (syn_misc.at:402): ok (0m0.015s 0m0.007s) 225. Invalid conditional expression (2) (syn_misc.at:515): ok (0m0.020s 0m0.001s) 226. Invalid conditional expression (3) (syn_misc.at:571): ok (0m0.018s 0m0.005s) 227. Valid conditional expression (syn_misc.at:635): ok (0m0.031s 0m0.008s) 228. missing headers (syn_misc.at:668): ok (0m0.034s 0m0.007s) 229. one line program (syn_misc.at:718): ok (0m0.027s 0m0.015s) 230. empty program (syn_misc.at:737): ok (0m0.271s 0m0.087s) 231. INITIALIZE constant (syn_misc.at:783): ok (0m0.015s 0m0.006s) 232. CLASS duplicate values (syn_misc.at:810): ok (0m0.015s 0m0.008s) 233. INSPECT invalid size (syn_misc.at:843): ok (0m0.016s 0m0.005s) 234. INSPECT invalid target (syn_misc.at:884): ok (0m0.019s 0m0.001s) 235. INSPECT missing keyword (syn_misc.at:907): ok (0m0.016s 0m0.005s) 236. INSPECT repeated keywords (syn_misc.at:928): ok (0m0.020s 0m0.001s) 237. INSPECT incomplete clause (syn_misc.at:964): ok (0m0.014s 0m0.006s) 238. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:986): ok (0m0.016s 0m0.006s) 239. maximum data size (syn_misc.at:1009): ok (0m0.015s 0m0.005s) 240. unreachable statement (syn_misc.at:1038): ok (0m0.017s 0m0.004s) 241. CRT STATUS (syn_misc.at:1088): ok (0m0.032s 0m0.009s) 242. SPECIAL-NAMES clause (syn_misc.at:1130): ok (0m0.082s 0m0.023s) 243. CURRENCY SIGN (syn_misc.at:1219): ok (0m0.118s 0m0.033s) 244. SWITCHES (syn_misc.at:1331): ok (0m0.035s 0m0.007s) 245. unexpected mnemonic-name location (syn_misc.at:1457): ok (0m0.018s 0m0.004s) 246. wrong device for mnemonic-name (syn_misc.at:1484): ok (0m0.019s 0m0.002s) 247. missing mnemonic-name declaration (syn_misc.at:1509): ok (0m0.015s 0m0.007s) 248. unknown device in dialect (syn_misc.at:1530): ok (0m0.032s 0m0.009s) 249. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:1560): ok (0m0.019s 0m0.001s) 250. ACCEPT WITH AUTO / TAB (syn_misc.at:1585): ok (0m0.012s 0m0.008s) 251. ACCEPT WITH LOWER / UPPER (syn_misc.at:1610): ok (0m0.017s 0m0.003s) 252. ACCEPT WITH SIZE (syn_misc.at:1632): ok (0m0.015s 0m0.005s) 253. DISPLAY WITH SIZE (syn_misc.at:1661): ok (0m0.015s 0m0.005s) 254. source text after program-text area (syn_misc.at:1686): ok (0m0.018s 0m0.004s) 255. line overflow in fixed-form / free-form (syn_misc.at:1707): ok (0m0.051s 0m0.013s) 256. missing newline in fixed-form / free-form (syn_misc.at:1755): ok (0m0.062s 0m0.017s) 257. continuation Indicator - too many lines (syn_misc.at:1788): ok (0m0.154s 0m0.012s) 258. continuation of COBOL words (syn_misc.at:2345): ok (0m0.028s 0m0.009s) 259. literal too long (syn_misc.at:2366): ok (0m0.096s 0m0.026s) 260. line and floating comments (syn_misc.at:2601): ok (0m0.286s 0m0.102s) 261. word length (syn_misc.at:2766): ok (0m0.118s 0m0.029s) 262. Segmentation Module (syn_misc.at:2929): ok (0m0.034s 0m0.002s) 263. ACCEPT FROM ESCAPE KEY (syn_misc.at:3021): ok (0m0.020s 0m0.000s) 264. Numeric literals (syn_misc.at:3046): ok (0m0.048s 0m0.014s) 265. floating-point literals (syn_misc.at:3225): ok (0m0.041s 0m0.002s) 266. X literals (syn_misc.at:3332): ok (0m0.013s 0m0.009s) 267. national literals (syn_misc.at:3359): ok (0m0.027s 0m0.009s) 268. NX literals (syn_misc.at:3397): ok (0m0.026s 0m0.009s) 269. binary literals (syn_misc.at:3435): ok (0m0.037s 0m0.007s) 270. binary-hexadecimal literals (syn_misc.at:3471): ok (0m0.026s 0m0.011s) 271. HP COBOL octal literals (syn_misc.at:3500): ok (0m0.030s 0m0.007s) 272. ACUCOBOL literals (syn_misc.at:3536): ok (0m0.044s 0m0.005s) 273. ACUCOBOL 32bit literal size (syn_misc.at:3598): skipped (syn_misc.at:3600) 274. ACUCOBOL USAGE FLOAT / DOUBLE (syn_misc.at:3629): ok (0m0.036s 0m0.018s) 275. ACUCOBOL USAGE HANDLE (syn_misc.at:3658): ok (0m0.022s 0m0.013s) 276. ACUCOBOL WINDOW statements (syn_misc.at:3766): ok (0m0.030s 0m0.011s) 277. ACUCOBOL GRAPHICAL controls (syn_misc.at:3851): ok (0m0.020s 0m0.001s) 278. DISPLAY MESSAGE BOX (syn_misc.at:3930): ok (0m0.017s 0m0.004s) 279. DISPLAY OMITTED (syn_misc.at:3973): ok (0m0.020s 0m0.000s) 280. CGI: EXTERNAL-FORM (syn_misc.at:3994): ok (0m0.014s 0m0.006s) 281. adding/removing reserved words (syn_misc.at:4049): ok (0m0.032s 0m0.008s) 282. adding aliases (syn_misc.at:4079): ok (0m0.071s 0m0.008s) 283. overriding default words (syn_misc.at:4113): ok (0m0.032s 0m0.010s) 284. complete specified word list (syn_misc.at:4143): ok (0m0.044s 0m0.010s) 285. ANY LENGTH item as formal parameter (syn_misc.at:4163): ok (0m0.032s 0m0.008s) 286. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:4198): ok (0m0.020s 0m0.003s) 287. swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:4221): ok (0m0.044s 0m0.004s) 288. CONF. SECTION paragraphs in wrong order (syn_misc.at:4243): ok (0m0.050s 0m0.017s) 289. NOT ON EXCEPTION with STATIC CALL convention (syn_misc.at:4315): ok (0m0.062s 0m0.020s) 290. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:4363): ok (0m0.027s 0m0.006s) 291. wrong dialect hints (syn_misc.at:4427): ok (0m0.013s 0m0.001s) 292. redundant periods (syn_misc.at:4451): ok (0m0.017s 0m0.005s) 293. IF-ELSE statement list with invalid syntax (syn_misc.at:4481): ok (0m0.019s 0m0.002s) 294. EVALUATE statement with invalid syntax (syn_misc.at:4514): ok (0m0.020s 0m0.001s) 295. MF reserved word directives (syn_misc.at:4564): ok (0m0.021s 0m0.001s) 296. TURN directive (syn_misc.at:4620): ok (0m0.018s 0m0.003s) 297. STRING / UNSTRING with invalid syntax (syn_misc.at:4653): ok (0m0.019s 0m0.002s) 298. UNSTRING COUNT clause (syn_misc.at:4718): ok (0m0.018s 0m0.003s) 299. use of program-prototypes (syn_misc.at:4766): ok (0m0.019s 0m0.002s) 300. invalid INSPECT/TRANSFORM operands (syn_misc.at:4793): ok (0m0.015s 0m0.007s) 301. SIGN clause checks (syn_misc.at:4837): ok (0m0.021s 0m0.001s) 302. conflicting entry conventions (syn_misc.at:4862): ok (0m0.056s 0m0.009s) 303. conflicting call conventions (syn_misc.at:4931): ok (0m0.026s 0m0.009s) 304. dangling LINKAGE items (syn_misc.at:4960): ok (0m0.016s 0m0.005s) 305. duplicate PROCEDURE DIVISION/ENTRY USING items (syn_misc.at:5016): ok (0m0.016s 0m0.005s) 306. duplicate CALL USING BY REFERENCE items (syn_misc.at:5037): ok (0m0.021s 0m0.001s) 307. ADD / SUBTRACT TABLE (syn_misc.at:5063): ok (0m0.018s 0m0.004s) 308. USE FOR DEBUGGING invalid ref-mod / subscripts (syn_misc.at:5106): ok (0m0.017s 0m0.005s) 309. USE FOR DEBUGGING duplicate targets (syn_misc.at:5151): ok (0m0.014s 0m0.008s) 310. USE FOR DEBUGGING implicit statements (syn_misc.at:5204): ok (0m0.021s 0m0.000s) 312. Empty PERFORM with DEBUGGING MODE (syn_misc.at:5323): ok (0m0.019s 0m0.001s) 313. whitespace handling (syn_misc.at:5351): ok (0m0.031s 0m0.010s) 314. STOP identifier (syn_misc.at:5439): ok (0m0.035s 0m0.007s) 315. 01 CONSTANT (syn_misc.at:5465): ok (0m0.079s 0m0.007s) 316. 78 VALUE (syn_misc.at:5513): ok (0m0.050s 0m0.013s) 317. level 78 NEXT / START OF (syn_misc.at:5560): ok (0m0.018s 0m0.005s) 318. SYMBOLIC CONSTANT (syn_misc.at:5619): ok (0m0.042s 0m0.011s) 319. Constant Expressions (1) (syn_misc.at:5668): ok (0m0.016s 0m0.005s) 320. Constant Expressions (2) (syn_misc.at:5793): ok (0m0.016s 0m0.004s) 321. Constant Expressions (3) (syn_misc.at:5849): ok (0m0.095s 0m0.012s) 322. Constant Expressions (4) (syn_misc.at:5940): ok (0m0.019s 0m0.003s) 323. Constant Expressions (5) (syn_misc.at:5973): ok (0m0.033s 0m0.008s) 324. Missing imperative statements (syn_misc.at:6073): ok (0m0.040s 0m0.002s) 326. CONSTANT LENGTH / BYTE-LENGTH (syn_misc.at:6203): ok (0m0.012s 0m0.007s) 327. ANY LENGTH/NUMERIC with incorrect PIC (syn_misc.at:6227): ok (0m0.013s 0m0.008s) 328. VOLATILE clause (syn_misc.at:6273): ok (0m0.021s 0m0.000s) 329. SET SOURCEFORMAT syntax checks (syn_misc.at:6316): ok (0m0.012s 0m0.003s) 330. WHEN-COMPILED register in dialect (syn_misc.at:6349): ok (0m0.105s 0m0.023s) 331. LIN / COL register (syn_misc.at:6375): ok (0m0.069s 0m0.019s) 332. tokens consisting of multiple words (syn_misc.at:6407): ok (0m0.019s 0m0.001s) 333. zero-length literals (syn_misc.at:6434): ok (0m0.030s 0m0.013s) 334. @OPTIONS parsing (syn_misc.at:6495): ok (0m0.016s 0m0.006s) 335. system routines with wrong number of parameters (syn_misc.at:6537): ok (0m0.015s 0m0.007s) 336. invalid use of condition-name (syn_misc.at:6566): ok (0m0.019s 0m0.003s) 337. XML GENERATE syntax checks (syn_misc.at:6630): ok (0m0.014s 0m0.009s) 338. BASED clause, ALLOCATE / FREE statements (syn_misc.at:6848): ok (0m0.015s 0m0.007s) 339. CONTINUE statement (syn_misc.at:6906): ok (0m0.028s 0m0.008s) 340. conflict markers (syn_misc.at:6950): ok (0m0.032s 0m0.012s) 341. SORT syntax (syn_misc.at:7009): ok (0m0.018s 0m0.005s) 342. OSVS I/O extensions (syn_misc.at:7063): ok (0m0.018s 0m0.004s) 343. long literal in error message (syn_misc.at:7130): ok (0m0.016s 0m0.006s) 344. literal missing terminating character (syn_misc.at:7162): ok (0m0.019s 0m0.002s) 345. EQUALS in expressions (syn_misc.at:7183): ok (0m0.050s 0m0.013s) 346. Invalid parentheses around condition (syn_misc.at:7209): ok (0m0.021s 0m0.002s) 347. DISPLAY directive (1) (syn_misc.at:7232): ok (0m0.021s 0m0.001s) 348. DISPLAY directive (2) (syn_misc.at:7255): ok (0m0.016s 0m0.005s) 349. DISPLAY directive (3) (syn_misc.at:7275): ok (0m0.016s 0m0.005s) 350. conditional / define directives (1) (syn_misc.at:7294): ok (0m0.019s 0m0.001s) 351. conditional / define directives (2) (syn_misc.at:7319): ok (0m0.028s 0m0.014s) 352. conditional / define directives (3) (syn_misc.at:7347): ok (0m0.013s 0m0.008s) 353. conditional / define directives (4) (syn_misc.at:7377): ok (0m0.015s 0m0.004s) 354. error handling in conditional directives (syn_misc.at:7399): ok (0m0.018s 0m0.005s) 357. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.020s 0m0.002s) 358. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.015s 0m0.006s) 359. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.018s 0m0.004s) 360. MOVE alphanumeric TO x (syn_move.at:120): ok (0m0.015s 0m0.005s) 361. MOVE alphanumeric-edited TO x (syn_move.at:148): ok (0m0.018s 0m0.002s) 362. MOVE numeric (integer) TO x (syn_move.at:179): ok (0m0.015s 0m0.007s) 363. MOVE numeric (non-integer) TO x (syn_move.at:209): ok (0m0.020s 0m0.001s) 364. MOVE numeric-edited TO x (syn_move.at:241): ok (0m0.016s 0m0.006s) 365. CORRESPONDING - Operands must be groups (syn_move.at:276): ok (0m0.015s 0m0.006s) 366. CORRESPONDING - Target has no matching items (syn_move.at:306): ok (0m0.016s 0m0.005s) 367. MOVE to erroneous field (syn_move.at:332): ok (0m0.016s 0m0.005s) 368. Overlapping MOVE (syn_move.at:355): ok (0m0.155s 0m0.056s) 369. invalid source for MOVE (syn_move.at:454): ok (0m0.013s 0m0.009s) 370. invalid target for MOVE (syn_move.at:484): ok (0m0.020s 0m0.002s) 371. SET error (syn_move.at:520): ok (0m0.017s 0m0.004s) 372. MOVE FIGURATIVE to NUMERIC (syn_move.at:552): ok (0m0.075s 0m0.019s) 373. Category check of Format 1 (syn_multiply.at:28): ok (0m0.021s 0m0.002s) 374. Category check of Format 2 (syn_multiply.at:64): ok (0m0.019s 0m0.003s) 375. Category check of literals (syn_multiply.at:102): ok (0m0.020s 0m0.001s) 376. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.014s 0m0.008s) 377. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.018s 0m0.003s) 378. AT clause (syn_screen.at:121): ok (0m0.014s 0m0.007s) 379. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.018s 0m0.004s) 380. FROM clause (syn_screen.at:211): ok (0m0.019s 0m0.001s) 381. Incorrect USAGE clause (syn_screen.at:237): ok (0m0.020s 0m0.002s) 382. SCREEN SECTION clause numbers (syn_screen.at:268): ok (0m0.020s 0m0.002s) 383. Screen clauses (syn_screen.at:300): ok (0m0.021s 0m0.001s) 384. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:326): ok (0m0.020s 0m0.000s) 385. Referencing 88-level (syn_screen.at:356): ok (0m0.015s 0m0.007s) 386. Conflicting screen clauses (syn_screen.at:387): ok (0m0.035s 0m0.007s) 387. Redundant screen clauses (syn_screen.at:448): ok (0m0.018s 0m0.001s) 388. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:481): ok (0m0.052s 0m0.011s) 389. VALUE clause missing (syn_screen.at:541): ok (0m0.013s 0m0.007s) 390. FULL on numeric item (syn_screen.at:565): ok (0m0.014s 0m0.007s) 391. Compiler-specific SCREEN SECTION clause rules (syn_screen.at:589): ok (0m0.101s 0m0.021s) 392. MS-COBOL position-spec (syn_screen.at:747): ok (0m0.033s 0m0.008s) 393. Screen with invalid FROM clause (syn_screen.at:795): ok (0m0.036s 0m0.006s) 394. SET ADDRESS OF item (syn_set.at:24): ok (0m0.015s 0m0.007s) 395. SET item TO 88-level (syn_set.at:53): ok (0m0.015s 0m0.005s) 396. ANY LENGTH / NUMERIC as function RETURNING item (syn_functions.at:22): ok (0m0.035s 0m0.008s) 397. REPOSITORY INTRINSIC phrase (syn_functions.at:64): ok (0m0.020s 0m0.000s) 398. REPOSITORY FUNCTION phrase (syn_functions.at:87): ok (0m0.015s 0m0.005s) 399. Redundant REPOSITORY entries (syn_functions.at:135): ok (0m0.013s 0m0.008s) 400. Missing prototype/definition (syn_functions.at:174): ok (0m0.019s 0m0.003s) 401. Empty function (syn_functions.at:205): ok (0m0.019s 0m0.003s) 402. Function definition inside program (syn_functions.at:232): ok (0m0.020s 0m0.002s) 403. Intrinsic functions: dialect (syn_functions.at:255): ok (0m0.036s 0m0.004s) 404. Intrinsic functions: replaced (syn_functions.at:280): ok (0m0.036s 0m0.005s) 405. Intrinsic functions: number of arguments (syn_functions.at:324): ok (0m0.014s 0m0.008s) 406. Intrinsic functions: reference modification (syn_functions.at:364): ok (0m0.014s 0m0.006s) 407. Intrinsic functions: argument type (syn_functions.at:412): ok (0m0.014s 0m0.007s) 408. invalid formatted date/time args (syn_functions.at:435): ok (0m0.020s 0m0.002s) 409. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:516): ok (0m0.014s 0m0.007s) 410. Specified offset and SYSTEM-OFFSET (syn_functions.at:550): ok (0m0.014s 0m0.008s) 411. FUNCTION LENGTH / BYTE-LENGTH (syn_functions.at:574): ok (0m0.017s 0m0.005s) 412. Minimal lines per listing pages (listings.at:21): ok (0m0.025s 0m0.005s) 413. COPY within comment (listings.at:85): ok (0m0.040s 0m0.015s) 414. Replacement w/o strings (listings.at:161): ok (0m0.025s 0m0.004s) 415. COPY replacement order (listings.at:224): ok (0m0.060s 0m0.008s) 416. COPY separators (listings.at:327): ok (0m0.023s 0m0.007s) 417. COPY partial replacement (listings.at:393): ok (0m0.054s 0m0.006s) 418. COPY LEADING replacement (listings.at:609): ok (0m0.026s 0m0.003s) 419. COPY TRAILING replacement (listings.at:679): ok (0m0.019s 0m0.010s) 420. COPY recursive replacement (listings.at:750): ok (0m0.027s 0m0.002s) 421. COPY multiple files (listings.at:816): ok (0m0.023s 0m0.009s) 422. Error/Warning messages (listings.at:1037): ok (0m0.151s 0m0.048s) 423. Two source files (listings.at:1423): ok (0m0.022s 0m0.008s) 424. Multiple programs in one file (listings.at:1491): ok (0m0.209s 0m0.047s) 425. Multiple programs in one compilation group (listings.at:1710): ok (0m0.102s 0m0.024s) 426. Wide listing (listings.at:1898): ok (0m0.044s 0m0.013s) 427. Symbols: simple (listings.at:1986): ok (0m0.115s 0m0.045s) 428. Symbols: pointer (listings.at:2140): ok (0m0.024s 0m0.004s) 429. Symbols: multiple programs/functions (listings.at:2420): ok (0m0.021s 0m0.006s) 430. Symbols: OCCURS/REDEFINES (listings.at:2547): ok (0m0.021s 0m0.009s) 431. Conditional compilation (listings.at:2660): ok (0m0.048s 0m0.009s) 432. File descriptions (listings.at:2771): ok (0m0.026s 0m0.005s) 433. Invalid PICTURE strings (listings.at:3127): ok (0m0.023s 0m0.008s) 434. Variable format (listings.at:3631): ok (0m0.018s 0m0.010s) 435. LISTING directive (listings.at:3675): ok (0m0.022s 0m0.009s) 436. Listing-directive statements (listings.at:3776): ok (0m0.029s 0m0.003s) 437. Eject page (listings.at:3845): ok (0m0.082s 0m0.030s) 438. Cross reference (listings.at:4043): ok (0m0.050s 0m0.012s) 439. Report Writer (listings.at:5570): ok (0m0.022s 0m0.007s) 440. huge REPLACE (listings.at:5879): ok (0m0.045s 0m0.015s) 441. Long concatenated literal (listings.at:6801): ok (0m0.026s 0m0.002s) 442. DISPLAY literals (run_fundamental.at:24): ok (0m0.053s 0m0.015s) 443. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:86): ok (0m0.044s 0m0.024s) 444. Hexadecimal literal (run_fundamental.at:125): ok (0m0.080s 0m0.032s) 445. DISPLAY data items with VALUE clause (run_fundamental.at:166): ok (0m0.047s 0m0.021s) 446. DISPLAY data items with MOVE statement (run_fundamental.at:213): ok (0m0.046s 0m0.019s) 447. MOVE to edited item (1) (run_fundamental.at:267): ok (0m0.057s 0m0.010s) 448. MOVE to edited item (2) (run_fundamental.at:316): ok (0m0.057s 0m0.012s) 449. MOVE to item with simple and floating insertion (run_fundamental.at:365): ok (0m0.048s 0m0.020s) 450. MOVE to JUSTIFIED item (run_fundamental.at:400): ok (0m0.051s 0m0.015s) 451. MOVE integer literal to alphanumeric (run_fundamental.at:445): ok (0m0.051s 0m0.014s) 452. Compare FLOAT-LONG with floating-point literal (run_fundamental.at:470): ok (0m0.050s 0m0.017s) 453. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:523): ok (0m0.060s 0m0.010s) 454. Overlapping MOVE (run_fundamental.at:646): ok (0m0.146s 0m0.047s) 455. Overlapping MOVE (run_fundamental.at:747): ok (0m0.050s 0m0.018s) 456. IBM MOVE (run_fundamental.at:789): ok (0m0.045s 0m0.023s) 457. ALPHABETIC test (run_fundamental.at:828): ok (0m0.048s 0m0.019s) 458. ALPHABETIC-UPPER test (run_fundamental.at:860): ok (0m0.035s 0m0.029s) 459. ALPHABETIC-LOWER test (run_fundamental.at:892): ok (0m0.046s 0m0.018s) 460. GLOBAL at same level (run_fundamental.at:924): ok (0m0.050s 0m0.021s) 461. GLOBAL at lower level (run_fundamental.at:973): ok (0m0.059s 0m0.014s) 462. GLOBAL CONSTANT (run_fundamental.at:1022): ok (0m0.068s 0m0.007s) 463. GLOBAL identifiers from ENVIRONMENT DIVISION (run_fundamental.at:1106): ok (0m0.081s 0m0.002s) 464. function with variable-length RETURNING item (run_fundamental.at:1187): skipped (run_fundamental.at:1196) 465. Entry point visibility (1) (run_fundamental.at:1270): ok (0m0.103s 0m0.024s) 466. Entry point visibility (2) (run_fundamental.at:1302): ok (0m0.085s 0m0.024s) 467. Contained program visibility (1) (run_fundamental.at:1336): ok (0m0.065s 0m0.009s) 468. Contained program visibility (2) (run_fundamental.at:1391): ok (0m0.059s 0m0.016s) 469. Contained program visibility (3) (run_fundamental.at:1444): ok (0m0.045s 0m0.027s) 470. Contained program visibility (4) (run_fundamental.at:1495): ok (0m0.059s 0m0.017s) 471. CALL/CANCEL with program-prototype-name (run_fundamental.at:1550): ok (0m0.072s 0m0.004s) 472. GLOBAL FD (1) (run_fundamental.at:1623): ok (0m0.046s 0m0.021s) 473. GLOBAL FD (2) (run_fundamental.at:1673): ok (0m0.051s 0m0.016s) 474. GLOBAL FD (3) (run_fundamental.at:1723): ok (0m0.059s 0m0.010s) 475. GLOBAL FD (4) (run_fundamental.at:1773): ok (0m0.054s 0m0.016s) 476. CANCEL test (1) (run_fundamental.at:1823): ok (0m0.057s 0m0.011s) 477. CANCEL test (2) (run_fundamental.at:1850): ok (0m0.094s 0m0.034s) 478. CANCEL test (3) (run_fundamental.at:1890): ok (0m0.102s 0m0.029s) 479. Separate sign positions (1) (run_fundamental.at:1933): ok (0m0.047s 0m0.019s) 480. Separate sign positions (2) (run_fundamental.at:1957): ok (0m0.091s 0m0.048s) 481. Context sensitive words (1) (run_fundamental.at:1990): ok (0m0.056s 0m0.008s) 482. Context sensitive words (2) (run_fundamental.at:2013): ok (0m0.052s 0m0.016s) 483. Context sensitive words (3) (run_fundamental.at:2037): ok (0m0.053s 0m0.014s) 484. Context sensitive words (4) (run_fundamental.at:2061): ok (0m0.047s 0m0.020s) 485. Context sensitive words (5) (run_fundamental.at:2086): ok (0m0.045s 0m0.022s) 486. Context sensitive words (6) (run_fundamental.at:2109): ok (0m0.051s 0m0.014s) 487. Context sensitive words (7) (run_fundamental.at:2131): ok (0m0.053s 0m0.018s) 488. Context sensitive words (8) (run_fundamental.at:2158): ok (0m0.042s 0m0.018s) 489. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:2185): ok (0m0.056s 0m0.014s) 490. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:2248): ok (0m0.057s 0m0.016s) 491. ROUNDED NEAREST-EVEN (run_fundamental.at:2311): ok (0m0.055s 0m0.015s) 492. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2374): ok (0m0.046s 0m0.027s) 493. ROUNDED TOWARD-GREATER (run_fundamental.at:2437): ok (0m0.056s 0m0.016s) 494. ROUNDED TOWARD-LESSER (run_fundamental.at:2500): ok (0m0.050s 0m0.023s) 495. ROUNDED TRUNCATION (run_fundamental.at:2563): ok (0m0.050s 0m0.021s) 496. Numeric operations (1) (run_fundamental.at:2626): ok (0m0.049s 0m0.018s) 497. Numeric operations (2) (run_fundamental.at:2670): ok (0m0.065s 0m0.018s) 498. Numeric operations (3) (run_fundamental.at:2976): ok (0m0.078s 0m0.010s) 499. Numeric operations (4) (run_fundamental.at:3282): ok (0m0.068s 0m0.017s) 500. Numeric operations (5) (run_fundamental.at:3588): ok (0m0.069s 0m0.016s) 501. Numeric operations (6) (run_fundamental.at:3894): ok (0m0.078s 0m0.033s) 502. Numeric operations (7) (run_fundamental.at:3963): ok (0m0.061s 0m0.010s) 503. Numeric operations (8) (run_fundamental.at:4255): ok (0m0.059s 0m0.014s) 504. ADD CORRESPONDING (run_fundamental.at:4305): ok (0m0.044s 0m0.024s) 505. ADD CORRESPONDING no match (run_fundamental.at:4353): ok (0m0.050s 0m0.017s) 506. SYNC in OCCURS (run_fundamental.at:4403): ok (0m0.058s 0m0.011s) 507. 88 level with THRU (run_fundamental.at:4443): ok (0m0.059s 0m0.010s) 508. 88 level with FILLER (run_fundamental.at:4538): ok (0m0.040s 0m0.025s) 509. 88 level with FALSE IS clause (run_fundamental.at:4567): ok (0m0.053s 0m0.011s) 510. BLANK WHEN ZERO (run_fundamental.at:4595): ok (0m0.044s 0m0.023s) 511. MULTIPLY BY literal in INITIAL program (run_fundamental.at:4625): ok (0m0.050s 0m0.019s) 512. debugging lines (not active) (run_fundamental.at:4649): ok (0m0.046s 0m0.019s) 513. debugging lines (-fdebugging-line) (run_fundamental.at:4672): ok (0m0.048s 0m0.019s) 514. debugging lines (WITH DEBUGGING MODE) (run_fundamental.at:4695): ok (0m0.039s 0m0.026s) 515. debugging lines, free format (not active) (run_fundamental.at:4721): ok (0m0.046s 0m0.018s) 516. debugging lines, free format (-fdebugging-line) (run_fundamental.at:4744): ok (0m0.055s 0m0.012s) 517. USE FOR DEBUGGING (no DEBUGGING MODE) (run_fundamental.at:4767): ok (0m0.040s 0m0.028s) 518. USE FOR DEBUGGING (COB_SET_DEBUG deactivated) (run_fundamental.at:4812): ok (0m0.044s 0m0.025s) 519. USE FOR DEBUGGING ON ALL PROCEDURES (run_fundamental.at:4857): ok (0m0.046s 0m0.025s) 520. USE FOR DEBUGGING ON procedure (run_fundamental.at:4908): ok (0m0.044s 0m0.026s) 521. USE FOR DEBUGGING (COB_SET_DEBUG switched) (run_fundamental.at:4956): ok (0m0.049s 0m0.021s) 522. USE FOR DEBUGGING ON [ALL] REFERENCES OF field (run_fundamental.at:5005): ok (0m0.063s 0m0.007s) 523. USE FOR DEBUGGING, reference within DEBUGGING (run_fundamental.at:5073): ok (0m0.056s 0m0.017s) 525. USE FOR DEBUGGING, reference with OCCURS (run_fundamental.at:5164): ok (0m0.052s 0m0.015s) 527. USE FOR DEBUGGING file (run_fundamental.at:5234): ok (0m0.062s 0m0.013s) 528. Abbreviated Expressions (run_fundamental.at:5277): ok (0m0.063s 0m0.013s) 529. integer arithmetic on floating-point var (run_fundamental.at:5383): ok (0m0.048s 0m0.017s) 530. TYPEDEF application (run_fundamental.at:5425): ok (0m0.101s 0m0.022s) 531. Subscript out of bounds (run_subscripts.at:26): ok (0m0.098s 0m0.030s) 532. Value of DEPENDING ON N out of bounds (run_subscripts.at:71): ok (0m0.094s 0m0.036s) 533. Subscript bounds with OCCURS DEPENDING ON (1) (run_subscripts.at:122): ok (0m0.054s 0m0.011s) 534. Subscript bounds with OCCURS DEPENDING ON (2) (run_subscripts.at:148): ok (0m0.050s 0m0.015s) 535. Subscript bounds with OCCURS DEPENDING ON (3) (run_subscripts.at:176): ok (0m0.049s 0m0.016s) 536. Subscript by arithmetic expression (run_subscripts.at:211): ok (0m0.051s 0m0.012s) 537. length of ODO w/- reference modification (run_subscripts.at:242): ok (0m0.044s 0m0.024s) 538. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:298): ok (0m0.058s 0m0.013s) 539. enable / disable subscript check (run_subscripts.at:351): ok (0m0.238s 0m0.083s) 540. BOUND and NOBOUND directives (run_subscripts.at:396): ok (0m0.147s 0m0.043s) 541. SSRANGE and NOSSRANGE directives (run_subscripts.at:465): ok (0m0.048s 0m0.020s) 542. CALL with OCCURS DEPENDING ON (run_subscripts.at:501): ok (0m0.048s 0m0.022s) 543. Static reference modification (run_refmod.at:25): ok (0m0.048s 0m0.018s) 544. Dynamic reference modification (run_refmod.at:57): ok (0m0.048s 0m0.020s) 545. Offset underflow (run_refmod.at:94): ok (0m0.048s 0m0.017s) 546. Offset overflow (run_refmod.at:118): ok (0m0.104s 0m0.028s) 547. Length underflow (run_refmod.at:145): ok (0m0.089s 0m0.039s) 548. Length overflow (run_refmod.at:189): ok (0m0.078s 0m0.055s) 549. Length overflow with offset (1) (run_refmod.at:231): ok (0m0.053s 0m0.012s) 550. Length overflow with offset (2) (run_refmod.at:254): ok (0m0.050s 0m0.017s) 551. Length overflow with offset (3) (run_refmod.at:280): ok (0m0.054s 0m0.015s) 552. enable / disable ref-mod check (run_refmod.at:313): ok (0m0.278s 0m0.115s) 553. MF SSRANGE and NOSSRANGE directives (run_refmod.at:388): ok (0m0.288s 0m0.088s) 554. ACCEPT OMITTED (simple) (run_accept.at:28): ok (0m0.047s 0m0.019s) 555. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (1) (run_accept.at:50): ok (0m0.048s 0m0.018s) 556. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (2) (run_accept.at:117): ok (0m0.048s 0m0.022s) 557. ACCEPT DATE / DAY and intrinsic functions (1) (run_accept.at:200): ok (0m0.063s 0m0.000s) 558. ACCEPT DATE / DAY and intrinsic functions (2) (run_accept.at:237): ok (0m0.045s 0m0.019s) 559. ACCEPT OMITTED (SCREEN) (run_accept.at:284): ok (0m0.059s 0m0.007s) 560. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.048s 0m0.015s) 561. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.053s 0m0.015s) 562. INITIALIZE OCCURS with SIGN LEADING / TRAILING (run_initialize.at:88): ok (0m0.047s 0m0.023s) 563. INITIALIZE complex group (1) (run_initialize.at:159): ok (0m0.051s 0m0.013s) 564. INITIALIZE complex group (2) (run_initialize.at:187): ok (0m0.042s 0m0.022s) 565. INITIALIZE group item (run_initialize.at:215): ok (0m0.107s 0m0.029s) 566. INITIALIZE with REDEFINES (run_initialize.at:325): ok (0m0.047s 0m0.017s) 567. INITIALIZE with FILLER (run_initialize.at:352): ok (0m0.044s 0m0.018s) 568. INITIALIZE of EXTERNAL data items (run_initialize.at:419): ok (0m0.057s 0m0.009s) 569. INITIALIZE with reference modification (run_initialize.at:470): ok (0m0.039s 0m0.024s) 570. Comma separator without space (run_misc.at:23): ok (0m0.049s 0m0.013s) 571. DECIMAL-POINT is COMMA (1) (run_misc.at:44): ok (0m0.053s 0m0.012s) 572. DECIMAL-POINT is COMMA (2) (run_misc.at:72): ok (0m0.051s 0m0.012s) 573. DECIMAL-POINT is COMMA (3) (run_misc.at:100): ok (0m0.042s 0m0.021s) 574. DECIMAL-POINT is COMMA (4) (run_misc.at:128): ok (0m0.046s 0m0.017s) 575. DECIMAL-POINT is COMMA (5) (run_misc.at:156): ok (0m0.049s 0m0.021s) 576. CURRENCY SIGN (run_misc.at:190): ok (0m0.047s 0m0.017s) 578. LOCAL-STORAGE (1) (run_misc.at:268): ok (0m0.102s 0m0.017s) 579. LOCAL-STORAGE (2) (run_misc.at:304): ok (0m0.152s 0m0.029s) 580. EXTERNAL data item (run_misc.at:352): ok (0m0.084s 0m0.041s) 581. EXTERNAL AS data item (run_misc.at:394): ok (0m0.096s 0m0.026s) 583. MOVE to itself (run_misc.at:528): ok (0m0.057s 0m0.008s) 584. MOVE with refmod (run_misc.at:554): ok (0m0.050s 0m0.013s) 585. MOVE with refmod (variable) (run_misc.at:578): ok (0m0.044s 0m0.022s) 586. MOVE with group refmod (run_misc.at:604): ok (0m0.051s 0m0.014s) 587. MOVE indexes (run_misc.at:629): ok (0m0.053s 0m0.010s) 588. MOVE X'00' (run_misc.at:655): ok (0m0.068s 0m0.042s) 589. MOVE Z'literal' (run_misc.at:690): ok (0m0.038s 0m0.029s) 590. Floating continuation indicator (run_misc.at:732): ok (0m0.047s 0m0.017s) 591. Fixed continuation indicator (run_misc.at:754): ok (0m0.042s 0m0.026s) 592. Concatenation operator (run_misc.at:796): ok (0m0.055s 0m0.010s) 593. SOURCE FIXED/FREE directives (run_misc.at:820): ok (0m0.054s 0m0.011s) 594. TURN directive (run_misc.at:856): ok (0m0.040s 0m0.027s) 595. Level 01 subscripts (run_misc.at:897): ok (0m0.006s 0m0.011s) 596. Class check with reference modification (run_misc.at:919): ok (0m0.036s 0m0.027s) 597. Index and parenthesized expression (run_misc.at:943): ok (0m0.048s 0m0.016s) 598. Alphanumeric and binary numeric (run_misc.at:967): ok (0m0.046s 0m0.017s) 599. Non-numeric data in numeric items (run_misc.at:992): ok (0m0.195s 0m0.057s) 600. Dynamic call with static linking (run_misc.at:1066): ok (0m0.165s 0m0.038s) 601. Static call with static linking (run_misc.at:1095): ok (0m0.195s 0m0.091s) 602. Dynamic CALL with ON EXCEPTION (run_misc.at:1126): ok (0m0.084s 0m0.040s) 603. Static CALL with ON EXCEPTION (run_misc.at:1158): ok (0m0.217s 0m0.081s) 604. CALL m1. CALL m2. CALL m1. (run_misc.at:1198): ok (0m0.147s 0m0.040s) 605. Recursive CALL of RECURSIVE program (run_misc.at:1253): ok (0m0.131s 0m0.054s) 606. Recursive CALL of INITIAL program (run_misc.at:1311): ok (0m0.150s 0m0.027s) 607. Recursive CALL with RECURSIVE assumed (run_misc.at:1362): ok (0m0.151s 0m0.059s) 608. Recursive CALL with ON EXCEPTION (run_misc.at:1408): ok (0m0.159s 0m0.065s) 609. Multiple calls of INITIAL program (run_misc.at:1465): ok (0m0.107s 0m0.028s) 610. CALL binary literal parameter/LENGTH OF (run_misc.at:1522): ok (0m0.133s 0m0.051s) 611. INSPECT REPLACING LEADING ZEROS BY SPACES (run_misc.at:1576): ok (0m0.046s 0m0.020s) 612. INSPECT No repeat conversion check (run_misc.at:1598): ok (0m0.048s 0m0.016s) 613. INSPECT CONVERTING alphabet (run_misc.at:1624): ok (0m0.049s 0m0.016s) 614. INSPECT CONVERTING TO figurative constant (run_misc.at:1659): ok (0m0.045s 0m0.019s) 615. INSPECT CONVERTING NULL (run_misc.at:1683): ok (0m0.047s 0m0.017s) 616. INSPECT CONVERTING TO NULL (run_misc.at:1707): ok (0m0.045s 0m0.019s) 617. INSPECT REPLACING figurative constant (run_misc.at:1731): ok (0m0.053s 0m0.010s) 618. INSPECT TALLYING BEFORE (run_misc.at:1755): ok (0m0.056s 0m0.010s) 619. INSPECT TALLYING AFTER (run_misc.at:1790): ok (0m0.046s 0m0.019s) 620. INSPECT REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1825): ok (0m0.050s 0m0.016s) 621. INSPECT REPLACING complex (run_misc.at:1849): ok (0m0.043s 0m0.021s) 622. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1875): ok (0m0.050s 0m0.018s) 623. Nested PERFORM (run_misc.at:1972): ok (0m0.062s 0m0.004s) 624. PERFORM VARYING BY -0.2 (run_misc.at:1996): ok (0m0.044s 0m0.026s) 625. PERFORM VARYING BY phrase omitted (run_misc.at:2023): ok (0m0.053s 0m0.029s) 626. EXIT PERFORM (run_misc.at:2054): ok (0m0.049s 0m0.019s) 627. EXIT PERFORM CYCLE (run_misc.at:2079): ok (0m0.051s 0m0.016s) 628. EXIT PARAGRAPH (run_misc.at:2104): ok (0m0.042s 0m0.021s) 629. EXIT SECTION (run_misc.at:2136): ok (0m0.046s 0m0.021s) 630. PERFORM FOREVER / PERFORM UNTIL EXIT (run_misc.at:2170): ok (0m0.048s 0m0.020s) 631. PERFORM inline (1) (run_misc.at:2211): ok (0m0.051s 0m0.017s) 632. PERFORM inline (2) (run_misc.at:2238): ok (0m0.053s 0m0.014s) 633. Non-overflow after overflow (run_misc.at:2263): ok (0m0.044s 0m0.026s) 634. PERFORM ... CONTINUE (run_misc.at:2293): ok (0m0.014s 0m0.007s) 635. STRING with subscript reference (run_misc.at:2310): ok (0m0.058s 0m0.008s) 636. STRING / UNSTRING NOT ON OVERFLOW (run_misc.at:2337): ok (0m0.047s 0m0.027s) 637. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:2454): ok (0m0.045s 0m0.021s) 638. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:2489): ok (0m0.045s 0m0.023s) 639. UNSTRING DELIMITED POINTER (run_misc.at:2554): ok (0m0.054s 0m0.012s) 640. UNSTRING DELIMITER IN (run_misc.at:2608): ok (0m0.048s 0m0.018s) 641. UNSTRING with FUNCTION / literal (run_misc.at:2650): ok (0m0.057s 0m0.014s) 642. SORT: table sort (run_misc.at:2720): ok (0m0.042s 0m0.020s) 643. SORT: table sort (2) (run_misc.at:2762): ok (0m0.057s 0m0.019s) 644. SORT: table sort (3) (run_misc.at:2887): ok (0m0.106s 0m0.028s) 645. SORT: EBCDIC table sort (run_misc.at:2980): ok (0m0.107s 0m0.020s) 646. PIC ZZZ-, ZZZ+ (run_misc.at:3047): ok (0m0.053s 0m0.011s) 647. PERFORM type OSVS (run_misc.at:3100): ok (0m0.057s 0m0.010s) 648. Sticky LINKAGE (run_misc.at:3137): ok (0m0.087s 0m0.036s) 649. COB_PRE_LOAD (run_misc.at:3184): ok (0m0.089s 0m0.028s) 650. COB_PRE_LOAD with entry points (run_misc.at:3210): ok (0m0.145s 0m0.038s) 651. Lookup ENTRY from main executable (run_misc.at:3281): ok (0m0.058s 0m0.008s) 652. COB_LOAD_CASE=UPPER test (run_misc.at:3322): ok (0m0.096s 0m0.022s) 653. ALLOCATE / FREE with BASED item (1) (run_misc.at:3348): ok (0m0.054s 0m0.013s) 654. ALLOCATE / FREE with BASED item (2) (run_misc.at:3375): ok (0m0.101s 0m0.037s) 655. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:3422): ok (0m0.053s 0m0.013s) 656. Initialized value with defaultbyte (run_misc.at:3463): ok (0m0.051s 0m0.012s) 657. CALL with OMITTED parameter (run_misc.at:3488): ok (0m0.099s 0m0.025s) 658. CALL in from C, cob_call_params explicitly set (run_misc.at:3527): ok (0m0.075s 0m0.013s) 659. CALL in from C, cob_call_params unknown (run_misc.at:3588): ok (0m0.068s 0m0.017s) 660. CALL C with callback, PROCEDURE DIVISION EXTERN (run_misc.at:3646): ok (0m0.061s 0m0.028s) 661. CALL C with callback, ENTRY-CONVENTION EXTERN (run_misc.at:3713): ok (0m0.170s 0m0.101s) 662. CALL in from C with init missing / implicit (run_misc.at:3864): ok (0m0.118s 0m0.039s) 663. CALL STATIC C from COBOL (run_misc.at:3916): ok (0m0.059s 0m0.022s) 664. ANY LENGTH (1) (run_misc.at:3972): ok (0m0.088s 0m0.036s) 665. ANY LENGTH (2) (run_misc.at:4015): ok (0m0.087s 0m0.036s) 666. ANY LENGTH (3) (run_misc.at:4059): ok (0m0.057s 0m0.016s) 667. ANY LENGTH (4) (run_misc.at:4102): ok (0m0.047s 0m0.024s) 668. ANY LENGTH (5) (run_misc.at:4145): ok (0m0.048s 0m0.028s) 669. access to BASED item without allocation (run_misc.at:4170): ok (0m0.102s 0m0.028s) 670. access to OPTIONAL LINKAGE item not passed (run_misc.at:4211): ok (0m0.100s 0m0.025s) 671. STOP RUN WITH NORMAL STATUS (run_misc.at:4253): ok (0m0.054s 0m0.013s) 672. STOP RUN WITH ERROR STATUS (run_misc.at:4271): ok (0m0.052s 0m0.011s) 673. SYMBOLIC clause (run_misc.at:4289): ok (0m0.054s 0m0.010s) 674. OCCURS clause with 1 entry (run_misc.at:4326): ok (0m0.049s 0m0.018s) 675. Computing of different USAGEs w/o decimal point (run_misc.at:4375): ok (0m0.202s 0m0.038s) 676. Computing of different USAGEs w/- decimal point (run_misc.at:5011): ok (0m0.198s 0m0.031s) 677. C/C++ reserved words/predefined identifiers (run_misc.at:5646): ok (0m0.146s 0m0.058s) 678. ON EXCEPTION clause of DISPLAY (run_misc.at:6106): ok (0m0.043s 0m0.025s) 679. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:6131): ok (0m0.051s 0m0.018s) 680. LINE/COLUMN 0 exceptions (run_misc.at:6172): ok (0m0.056s 0m0.014s) 681. SET LAST EXCEPTION TO OFF (run_misc.at:6210): ok (0m0.049s 0m0.020s) 682. void PROCEDURE (run_misc.at:6246): ok (0m0.102s 0m0.019s) 683. Figurative constants to numeric field (run_misc.at:6275): ok (0m0.132s 0m0.020s) 684. MF FIGURATIVE to NUMERIC (run_misc.at:6337): ok (0m0.077s 0m0.028s) 685. CALL RETURNING (run_misc.at:6472): ok (0m0.151s 0m0.060s) 686. void PROCEDURE, NOTHING return (run_misc.at:6511): ok (0m0.169s 0m0.046s) 687. READY TRACE / RESET TRACE (run_misc.at:6546): ok (0m0.558s 0m0.195s) 688. Trace feature with subroutine (run_misc.at:6908): skipped (run_misc.at:6913) 689. stack and dump feature (run_misc.at:8977): ok (0m0.446s 0m0.109s) 690. Test dump feature (2) (run_misc.at:9700): ok (0m0.066s 0m0.028s) 691. CALL with program prototypes (run_misc.at:9965): ok (0m0.059s 0m0.020s) 692. REDEFINES values on FILLER and INITIALIZE (run_misc.at:10021): ok (0m0.050s 0m0.019s) 693. PICTURE with constant-name (run_misc.at:10076): ok (0m0.057s 0m0.025s) 694. Quote marks in comment paragraphs (run_misc.at:10104): ok (0m0.097s 0m0.034s) 695. Numeric MOVE with/without -fbinary-truncate (run_misc.at:10130): ok (0m0.110s 0m0.036s) 696. Alphanumeric MOVE with truncation (run_misc.at:10190): ok (0m0.050s 0m0.019s) 697. PROGRAM-ID / CALL literal/variable with spaces (run_misc.at:10241): ok (0m0.050s 0m0.027s) 698. C-API Test (param based) (run_misc.at:10309): ok (0m0.083s 0m0.021s) 699. C-API Test (field based) (run_misc.at:10544): ok (0m0.086s 0m0.017s) 700. DEFAULT ROUNDED MODE (run_misc.at:10771): ok (0m0.054s 0m0.016s) 701. OCCURS INDEXED ASCENDING (run_misc.at:10801): ok (0m0.049s 0m0.020s) 702. ZERO unsigned and negative binary subscript (run_misc.at:10899): ok (0m0.097s 0m0.038s) 703. Default Arithmetic (1) (run_misc.at:10963): ok (0m0.066s 0m0.016s) 704. Default Arithmetic Test (2) (run_misc.at:11067): ok (0m0.062s 0m0.014s) 705. OSVS Arithmetic (1) (run_misc.at:11118): ok (0m0.062s 0m0.023s) 706. OSVS Arithmetic Test (2) (run_misc.at:11235): ok (0m0.069s 0m0.015s) 707. SET CONSTANT directive (run_misc.at:11292): ok (0m0.160s 0m0.050s) 708. DEFINE OVERRIDE (run_misc.at:11395): ok (0m0.056s 0m0.013s) 709. DEFINE Defaults (run_misc.at:11461): ok (0m0.061s 0m0.008s) 710. 78 VALUE (run_misc.at:11527): ok (0m0.044s 0m0.023s) 711. 01 CONSTANT (run_misc.at:11595): ok (0m0.047s 0m0.020s) 712. DISPLAY UPON (run_misc.at:11675): ok (0m0.068s 0m0.020s) 713. FLOAT-DECIMAL w/o SIZE ERROR (run_misc.at:11767): ok (0m2.336s 0m0.021s) 714. FLOAT-SHORT / FLOAT-LONG w/o SIZE ERROR (run_misc.at:11941): ok (0m0.070s 0m0.020s) 715. FLOAT-SHORT with SIZE ERROR (run_misc.at:12140): ok (0m0.057s 0m0.018s) 716. FLOAT-LONG with SIZE ERROR (run_misc.at:12191): ok (0m0.055s 0m0.019s) 717. EC-SIZE-ZERO-DIVIDE (run_misc.at:12248): ok (0m0.050s 0m0.023s) 718. EC-SIZE-OVERFLOW (run_misc.at:12291): ok (0m0.053s 0m0.017s) 719. Constant Expressions (run_misc.at:12322): ok (0m0.057s 0m0.014s) 720. ENTRY FOR GO TO / GO TO ENTRY (run_misc.at:12408): ok (0m0.062s 0m0.028s) 721. runtime checks within conditions (run_misc.at:12498): ok (0m0.252s 0m0.090s) 722. libcob version check (run_misc.at:12612): ok (0m0.232s 0m0.093s) 723. OPEN EXTEND and CLOSE, SEQUENTIAL (run_file.at:23): ok (0m0.060s 0m0.011s) 724. DELETE FILE, SEQUENTIAL (run_file.at:89): ok (0m0.066s 0m0.005s) 725. OUTPUT on SEQUENTIAL file to missing directory (run_file.at:159): ok (0m0.050s 0m0.019s) 726. OPEN EXTEND and CLOSE, INDEXED (run_file.at:195): skipped (run_file.at:198) 727. DELETE FILE, INDEXED (run_file.at:267): skipped (run_file.at:270) 728. OUTPUT on INDEXED file to missing directory (run_file.at:340): skipped (run_file.at:343) 729. READ INTO data item AT-END sequence (run_file.at:379): ok (0m0.053s 0m0.015s) 730. First READ on empty SEQUENTIAL INDEXED file (run_file.at:416): skipped (run_file.at:419) 731. READ NEXT without previous START (run_file.at:456): skipped (run_file.at:459) 732. REWRITE a RELATIVE file with RANDOM access (run_file.at:534): ok (0m0.049s 0m0.019s) 733. File SORT, SEQUENTIAL (run_file.at:601): ok (0m0.061s 0m0.011s) 734. File SORT, SEQUENTIAL variable records (run_file.at:651): ok (0m0.053s 0m0.018s) 735. File SORT, LINE SEQUENTIAL (run_file.at:733): ok (0m0.053s 0m0.023s) 736. LINAGE and LINAGE-COUNTER sample (run_file.at:792): ok (0m0.053s 0m0.027s) 737. File SORT, LINE SEQUENTIAL same file (run_file.at:1078): ok (0m0.056s 0m0.016s) 738. File SORT, LINE SEQUENTIAL variable records (run_file.at:1125): ok (0m0.052s 0m0.017s) 739. File MERGE, LINE SEQUENTIAL variable records (run_file.at:1189): ok (0m0.048s 0m0.025s) 740. SORT nonexistent file (run_file.at:1280): ok (0m0.044s 0m0.026s) 741. SORT with INPUT/OUTPUT PROCEDUREs (run_file.at:1315): ok (0m0.062s 0m0.008s) 742. SORT with key1 ASCENDING, key2 DESCENDING (run_file.at:1405): ok (0m0.038s 0m0.031s) 743. ASSIGN DYNAMIC and EXTERNAL (run_file.at:1472): ok (0m0.152s 0m0.047s) 744. ASSIGN EXTERNAL parsing (run_file.at:1520): ok (0m0.051s 0m0.015s) 745. ASSIGN directive (run_file.at:1554): ok (0m0.057s 0m0.012s) 746. ASSIGNfilename expansion (run_file.at:1597): ok (0m0.042s 0m0.026s) 747. ASSIGN filename mapping (run_file.at:1624): ok (0m0.219s 0m0.072s) 748. ASSIGN with COB_FILE_PATH (run_file.at:1796): ok (0m0.062s 0m0.016s) 749. ASSIGN DYNAMIC with LOCAL-STORAGE item (run_file.at:1833): ok (0m0.064s 0m0.005s) 750. ASSIGN DYNAMIC with LOCAL-STORAGE item and INITIAL prog (run_file.at:1870): ok (0m0.040s 0m0.024s) 751. ASSIGN DYNAMIC with BASED data item (run_file.at:1910): ok (0m0.132s 0m0.069s) 752. ASSIGN DYNAMIC with data item in LINKAGE (run_file.at:1996): ok (0m0.120s 0m0.034s) 753. ASSIGN DYNAMIC with empty data item (run_file.at:2168): ok (0m0.058s 0m0.009s) 754. ASSIGN DYNAMIC with unset implicit data item (run_file.at:2208): ok (0m0.054s 0m0.012s) 755. INDEXED file key-name (run_file.at:2240): skipped (run_file.at:2245) 756. INDEXED file sparse/split keys (run_file.at:2282): skipped (run_file.at:2287) 757. INDEXED file split keys WITH DUPLICATES (run_file.at:2802): skipped (run_file.at:2805) 758. INDEXED file variable length record (run_file.at:2960): skipped (run_file.at:2963) 759. INDEXED sample (run_file.at:3236): skipped (run_file.at:3242) 760. WRITE + REWRITE FILE name (run_file.at:3639): ok (0m0.075s 0m0.004s) 761. START RELATIVE (1) (run_file.at:3792): ok (0m0.046s 0m0.019s) 763. START RELATIVE (3) (run_file.at:3917): ok (0m0.067s 0m0.008s) 764. READ on OPTIONAL missing RELATIVE / SEQUENTIAL (run_file.at:3993): ok (0m0.064s 0m0.015s) 765. READ on OPTIONAL missing INDEXED file (run_file.at:4115): skipped (run_file.at:4118) 766. EXTERNAL RELATIVE file (run_file.at:4165): ok (0m0.048s 0m0.019s) 767. DECLARATIVES procedure referencing (run_file.at:4201): ok (0m0.051s 0m0.018s) 768. DECLARATIVES procedure referencing (multiple) (run_file.at:4241): ok (0m0.050s 0m0.017s) 769. System routines for directories (1) (run_file.at:4285): ok (0m0.056s 0m0.012s) 770. System routines for directories (2) (run_file.at:4327): ok (0m0.049s 0m0.023s) 771. System routines for files (run_file.at:4424): ok (0m0.208s 0m0.043s) 772. System routine CBL_COPY_FILE (run_file.at:4698): ok (0m0.052s 0m0.013s) 773. Default file external name (run_file.at:4733): ok (0m0.079s 0m0.042s) 774. SEQUENTIAL basic I/O (run_file.at:4807): ok (0m0.047s 0m0.021s) 775. LINE SEQUENTIAL basic I/O (run_file.at:4841): ok (0m0.060s 0m0.019s) 776. LINE SEQUENTIAL record truncation (run_file.at:4907): ok (0m0.052s 0m0.019s) 777. SEQUENTIAL file I/O with variable records (run_file.at:4954): ok (0m0.052s 0m0.022s) 778. LINE SEQUENTIAL file I/O with variable records (run_file.at:5029): ok (0m0.059s 0m0.015s) 779. SEQUENTIAL file REWRITE (run_file.at:5103): ok (0m0.068s 0m0.015s) 783. SEQUENTIAL file with SHARING READ ONLY (run_file.at:5417): ok (0m0.104s 0m0.028s) 785. RELATIVE SEQUENTIAL basic I/O (run_file.at:5561): ok (0m0.056s 0m0.010s) 786. RELATIVE RANDOM basic I/O (run_file.at:5595): ok (0m0.059s 0m0.010s) 787. RELATIVE SEQUENTIAL with variable records (run_file.at:5645): ok (0m0.054s 0m0.018s) 788. INDEXED SEQUENTIAL basic I/O (run_file.at:5719): skipped (run_file.at:5722) 789. INDEXED SEQUENTIAL with variable records (run_file.at:5757): skipped (run_file.at:5760) 790. INDEXED file with LOCK MODE EXCLUSIVE (run_file.at:5839): skipped (run_file.at:5843) 791. INDEXED file with OPEN WITH LOCK (run_file.at:5916): skipped (run_file.at:5920) 792. INDEXED file with SHARING NO (run_file.at:5992): skipped (run_file.at:5996) 793. INDEXED file with SHARING READ ONLY (run_file.at:6069): skipped (run_file.at:6073) 794. INDEXED file with blocked lock (run_file.at:6153): skipped (run_file.at:6157) 795. INDEXED file with LOCK AUTOMATIC (1) (run_file.at:6233): skipped (run_file.at:6236) 796. INDEXED file with LOCK AUTOMATIC (2) (run_file.at:6322): skipped (run_file.at:6325) 797. INDEXED file with LOCK MANUAL (run_file.at:6412): skipped (run_file.at:6415) 798. START INDEXED (run_file.at:6500): skipped (run_file.at:6503) 799. INDEXED partial keys (run_file.at:6579): skipped (run_file.at:6582) 800. INDEXED undeclared keys (run_file.at:6726): skipped (run_file.at:6729) 802. EXTFH: using ISAM callback (run_file.at:6995): skipped (run_file.at:6998) 803. EXTFH: SEQUENTIAL files (run_file.at:7695): ok (0m0.089s 0m0.027s) 804. EXTFH: LINE SEQUENTIAL files, direct EXTFH (run_file.at:8105): ok (0m0.059s 0m0.020s) 805. INDEXED File READ/DELETE/READ (run_file.at:8287): skipped (run_file.at:8290) 807. Report Line Order (run_reportwriter.at:23): ok (0m0.051s 0m0.020s) 808. REPORT COL PLUS (run_reportwriter.at:120): ok (0m0.058s 0m0.013s) 809. Report Overlapping Fields (run_reportwriter.at:189): ok (0m0.046s 0m0.023s) 810. EMPTY REPORT (run_reportwriter.at:258): ok (0m0.055s 0m0.015s) 811. PAGE LIMIT REPORT (run_reportwriter.at:327): ok (0m0.052s 0m0.015s) 812. PAGE LIMIT REPORT 2 (run_reportwriter.at:389): ok (0m0.048s 0m0.021s) 813. Sample Customer Report (run_reportwriter.at:461): ok (0m0.068s 0m0.008s) 814. Sample Charge Report (run_reportwriter.at:776): ok (0m0.067s 0m0.015s) 815. Sample Charge Report 2 (run_reportwriter.at:1129): ok (0m0.070s 0m0.016s) 816. Sample Charge Report 3 (run_reportwriter.at:1499): ok (0m0.069s 0m0.014s) 817. Sample Charge Report 4 (run_reportwriter.at:1799): ok (0m0.060s 0m0.024s) 818. Sample Payroll Report (run_reportwriter.at:2215): ok (0m0.111s 0m0.027s) 819. Sample REPORT with RIGHT/CENTER (run_reportwriter.at:2900): ok (0m0.091s 0m0.018s) 820. STUDENT REPORT with INITIAL (run_reportwriter.at:3068): ok (0m0.052s 0m0.024s) 821. ORDER REPORT; Test substring (run_reportwriter.at:3220): ok (0m0.066s 0m0.016s) 822. Sample Control Break (run_reportwriter.at:3568): ok (0m0.039s 0m0.039s) 823. Sample Inventory Report (run_reportwriter.at:3797): ok (0m0.060s 0m0.014s) 824. Duplicate Detail Line (run_reportwriter.at:3990): ok (0m0.048s 0m0.025s) 825. Report with OCCURS (run_reportwriter.at:4118): ok (0m0.060s 0m0.014s) 826. Report CODE and LIMIT COLUMNS (run_reportwriter.at:4223): ok (0m0.113s 0m0.035s) 827. Duplicate INITIATE (run_reportwriter.at:4444): ok (0m0.053s 0m0.016s) 828. Missing INITIATE and GENERATE (run_reportwriter.at:4511): ok (0m0.045s 0m0.023s) 829. Missing INITIATE and TERMINATE (run_reportwriter.at:4571): ok (0m0.047s 0m0.017s) 830. Next Group Next Page (run_reportwriter.at:4625): ok (0m0.061s 0m0.015s) 831. Report PRESENT AFTER (run_reportwriter.at:8948): ok (0m0.057s 0m0.018s) 832. RETURN-CODE moving (run_returncode.at:23): ok (0m0.047s 0m0.017s) 833. RETURN-CODE passing (run_returncode.at:49): ok (0m0.148s 0m0.026s) 834. RETURN-CODE nested (run_returncode.at:101): ok (0m0.052s 0m0.014s) 835. FUNCTION ABS (run_functions.at:24): ok (0m0.056s 0m0.009s) 836. FUNCTION ACOS (run_functions.at:46): ok (0m0.055s 0m0.009s) 837. FUNCTION ANNUITY (run_functions.at:70): ok (0m0.043s 0m0.022s) 838. FUNCTION ASIN (run_functions.at:94): ok (0m0.053s 0m0.013s) 839. FUNCTION ATAN (run_functions.at:118): ok (0m0.041s 0m0.022s) 840. FUNCTION BYTE-LENGTH (run_functions.at:142): ok (0m0.048s 0m0.018s) 841. FUNCTION CHAR (run_functions.at:212): ok (0m0.054s 0m0.025s) 842. FUNCTION COMBINED-DATETIME (run_functions.at:250): ok (0m0.039s 0m0.025s) 843. FUNCTION CONCAT / CONCATENATE (run_functions.at:275): ok (0m0.047s 0m0.021s) 844. FUNCTION CONCATENATE with reference modding (run_functions.at:322): ok (0m0.042s 0m0.024s) 845. FUNCTION CONTENT-LENGTH (run_functions.at:350): ok (0m0.046s 0m0.018s) 846. FUNCTION CONTENT-OF (run_functions.at:384): ok (0m0.057s 0m0.010s) 847. FUNCTION as CALL parameter BY CONTENT (run_functions.at:459): ok (0m0.056s 0m0.013s) 848. FUNCTION COS (run_functions.at:495): ok (0m0.047s 0m0.018s) 849. FUNCTION CURRENCY-SYMBOL (run_functions.at:519): ok (0m0.047s 0m0.019s) 850. FUNCTION CURRENT-DATE (run_functions.at:542): ok (0m0.048s 0m0.015s) 851. FUNCTION DATE-OF-INTEGER (run_functions.at:613): ok (0m0.051s 0m0.010s) 852. FUNCTION DATE-TO-YYYYMMDD (run_functions.at:638): ok (0m0.046s 0m0.019s) 853. FUNCTION DAY-OF-INTEGER (run_functions.at:663): ok (0m0.047s 0m0.014s) 854. FUNCTION DAY-TO-YYYYDDD (run_functions.at:688): ok (0m0.039s 0m0.024s) 855. FUNCTION E (run_functions.at:713): ok (0m0.043s 0m0.021s) 856. FUNCTION EXCEPTION-FILE (run_functions.at:737): ok (0m0.051s 0m0.012s) 857. FUNCTION EXCEPTION-LOCATION (run_functions.at:772): ok (0m0.034s 0m0.031s) 858. FUNCTION EXCEPTION-STATEMENT (run_functions.at:811): ok (0m0.049s 0m0.018s) 859. FUNCTION EXCEPTION-STATUS (run_functions.at:846): ok (0m0.042s 0m0.025s) 860. FUNCTION EXP (run_functions.at:881): ok (0m0.042s 0m0.023s) 861. FUNCTION EXP10 (run_functions.at:905): ok (0m0.038s 0m0.025s) 862. FUNCTION FACTORIAL (run_functions.at:930): ok (0m0.049s 0m0.016s) 863. FUNCTION FORMATTED-CURRENT-DATE (run_functions.at:955): ok (0m0.049s 0m0.016s) 864. FUNCTION FORMATTED-DATE (run_functions.at:983): ok (0m0.058s 0m0.010s) 865. FUNCTION FORMATTED-DATE with ref modding (run_functions.at:1046): ok (0m0.042s 0m0.022s) 866. FUNCTION FORMATTED-DATETIME (run_functions.at:1071): ok (0m0.054s 0m0.012s) 867. FUNCTION FORMATTED-DATETIME with ref modding (run_functions.at:1128): ok (0m0.052s 0m0.014s) 868. FUNCTION FORMATTED-TIME (run_functions.at:1154): ok (0m0.053s 0m0.016s) 869. FUNCTION FORMATTED-TIME DP.COMMA (run_functions.at:1241): ok (0m0.053s 0m0.010s) 870. FUNCTION FORMATTED-TIME with ref modding (run_functions.at:1272): ok (0m0.051s 0m0.012s) 871. FUNCTION FRACTION-PART (run_functions.at:1297): ok (0m0.051s 0m0.013s) 872. FUNCTION HIGHEST-ALGEBRAIC (run_functions.at:1328): ok (0m0.053s 0m0.014s) 873. FUNCTION INTEGER (run_functions.at:1396): ok (0m0.049s 0m0.016s) 874. FUNCTION INTEGER-OF-DATE (run_functions.at:1429): ok (0m0.044s 0m0.021s) 875. FUNCTION INTEGER-OF-DAY (run_functions.at:1454): ok (0m0.047s 0m0.015s) 876. FUNCTION INTEGER-OF-FORMATTED-DATE (run_functions.at:1479): ok (0m0.054s 0m0.013s) 877. FUNCTION INTEGER-PART (run_functions.at:1529): ok (0m0.038s 0m0.025s) 878. FUNCTION LENGTH (run_functions.at:1555): ok (0m0.051s 0m0.018s) 879. FUNCTION LOCALE-COMPARE (run_functions.at:1623): ok (0m0.045s 0m0.021s) 880. FUNCTION LOCALE-DATE (run_functions.at:1653): ok (0m0.047s 0m0.019s) 881. FUNCTION LOCALE-TIME (run_functions.at:1679): ok (0m0.050s 0m0.017s) 882. FUNCTION LOCALE-TIME-FROM-SECONDS (run_functions.at:1705): ok (0m0.049s 0m0.018s) 883. FUNCTION LOG (run_functions.at:1731): ok (0m0.048s 0m0.018s) 884. FUNCTION LOG10 (run_functions.at:1755): ok (0m0.058s 0m0.008s) 885. FUNCTION LOWER-CASE (run_functions.at:1779): ok (0m0.048s 0m0.017s) 886. FUNCTION LOWER-CASE with reference modding (run_functions.at:1807): ok (0m0.038s 0m0.025s) 887. FUNCTION LOWEST-ALGEBRAIC (run_functions.at:1833): ok (0m0.044s 0m0.023s) 888. FUNCTION MAX (run_functions.at:1886): ok (0m0.049s 0m0.015s) 889. FUNCTION MEAN (run_functions.at:1908): ok (0m0.036s 0m0.030s) 890. FUNCTION MEDIAN (run_functions.at:1930): ok (0m0.049s 0m0.016s) 891. FUNCTION MIDRANGE (run_functions.at:1952): ok (0m0.052s 0m0.013s) 892. FUNCTION MIN (run_functions.at:1974): ok (0m0.050s 0m0.016s) 893. FUNCTION MOD (valid) (run_functions.at:1996): ok (0m0.046s 0m0.016s) 894. FUNCTION MOD (invalid) (run_functions.at:2026): ok (0m0.044s 0m0.021s) 895. FUNCTION MODULE-CALLER-ID (run_functions.at:2057): ok (0m0.085s 0m0.039s) 896. FUNCTION MODULE-DATE (run_functions.at:2091): ok (0m0.054s 0m0.012s) 897. FUNCTION MODULE-FORMATTED-DATE (run_functions.at:2116): ok (0m0.040s 0m0.026s) 898. FUNCTION MODULE-ID (run_functions.at:2141): ok (0m0.053s 0m0.011s) 899. FUNCTION MODULE-PATH (run_functions.at:2162): ok (0m0.043s 0m0.022s) 900. FUNCTION MODULE-SOURCE (run_functions.at:2187): ok (0m0.050s 0m0.016s) 901. FUNCTION MODULE-TIME (run_functions.at:2208): ok (0m0.052s 0m0.014s) 902. FUNCTION MONETARY-DECIMAL-POINT (run_functions.at:2233): ok (0m0.055s 0m0.012s) 903. FUNCTION MONETARY-THOUSANDS-SEPARATOR (run_functions.at:2256): ok (0m0.053s 0m0.014s) 904. FUNCTION NUMERIC-DECIMAL-POINT (run_functions.at:2279): ok (0m0.049s 0m0.017s) 905. FUNCTION NUMERIC-THOUSANDS-SEPARATOR (run_functions.at:2302): ok (0m0.042s 0m0.022s) 906. FUNCTION NUMVAL (run_functions.at:2325): ok (0m0.049s 0m0.016s) 907. FUNCTION NUMVAL-C (run_functions.at:2356): ok (0m0.050s 0m0.013s) 908. FUNCTION NUMVAL-C DP.COMMA (run_functions.at:2387): ok (0m0.043s 0m0.019s) 909. FUNCTION NUMVAL-F (run_functions.at:2417): ok (0m0.053s 0m0.009s) 910. FUNCTION ORD (run_functions.at:2440): ok (0m0.038s 0m0.026s) 911. FUNCTION ORD-MAX (run_functions.at:2462): ok (0m0.051s 0m0.013s) 912. FUNCTION ORD-MIN (run_functions.at:2484): ok (0m0.056s 0m0.009s) 913. FUNCTION PI (run_functions.at:2506): ok (0m0.048s 0m0.017s) 914. FUNCTION PRESENT-VALUE (run_functions.at:2530): ok (0m0.055s 0m0.012s) 915. FUNCTION RANDOM (run_functions.at:2552): ok (0m0.054s 0m0.010s) 916. FUNCTION RANGE (run_functions.at:2576): ok (0m0.044s 0m0.020s) 917. FUNCTION REM (valid) (run_functions.at:2600): ok (0m0.051s 0m0.015s) 918. FUNCTION REM (invalid) (run_functions.at:2623): ok (0m0.049s 0m0.016s) 919. FUNCTION REVERSE (run_functions.at:2654): ok (0m0.053s 0m0.012s) 920. FUNCTION REVERSE with reference modding (run_functions.at:2679): ok (0m0.048s 0m0.015s) 921. FUNCTION SECONDS-FROM-FORMATTED-TIME (run_functions.at:2704): ok (0m0.053s 0m0.015s) 922. FUNCTION SECONDS-PAST-MIDNIGHT (run_functions.at:2771): ok (0m0.057s 0m0.006s) 923. FUNCTION SIGN (run_functions.at:2795): ok (0m0.043s 0m0.024s) 924. FUNCTION SIN (run_functions.at:2834): ok (0m0.043s 0m0.020s) 925. FUNCTION SQRT (run_functions.at:2858): ok (0m0.047s 0m0.016s) 926. FUNCTION STANDARD-DEVIATION (run_functions.at:2882): ok (0m0.049s 0m0.014s) 927. FUNCTION STORED-CHAR-LENGTH (run_functions.at:2906): ok (0m0.040s 0m0.023s) 928. FUNCTION SUBSTITUTE (run_functions.at:2932): ok (0m0.046s 0m0.016s) 929. FUNCTION SUBSTITUTE with reference modding (run_functions.at:2961): ok (0m0.059s 0m0.004s) 930. FUNCTION SUBSTITUTE-CASE (run_functions.at:2989): ok (0m0.056s 0m0.006s) 931. FUNCTION SUBSTITUTE-CASE with reference mod (run_functions.at:3016): ok (0m0.053s 0m0.011s) 932. FUNCTION SUM (run_functions.at:3044): ok (0m0.051s 0m0.014s) 933. FUNCTION TAN (run_functions.at:3068): ok (0m0.056s 0m0.009s) 934. FUNCTION TEST-DATE-YYYYMMDD (run_functions.at:3092): ok (0m0.044s 0m0.022s) 935. FUNCTION TEST-DAY-YYYYDDD (run_functions.at:3114): ok (0m0.056s 0m0.010s) 936. FUNCTION TEST-FORMATTED-DATETIME with dates (run_functions.at:3136): ok (0m0.051s 0m0.021s) 937. FUNCTION TEST-FORMATTED-DATETIME with times (run_functions.at:3263): ok (0m0.061s 0m0.007s) 938. FUNCTION TEST-FORMATTED-DATETIME with datetimes (run_functions.at:3344): ok (0m0.048s 0m0.019s) 939. FUNCTION TEST-FORMATTED-DATETIME DP.COMMA (run_functions.at:3397): ok (0m0.042s 0m0.022s) 940. FUNCTION TEST-NUMVAL (run_functions.at:3438): ok (0m0.045s 0m0.024s) 941. FUNCTION TEST-NUMVAL-C (run_functions.at:3536): ok (0m0.043s 0m0.026s) 942. FUNCTION TEST-NUMVAL-F (run_functions.at:3634): ok (0m0.054s 0m0.014s) 943. FUNCTION TRIM (run_functions.at:3732): ok (0m0.048s 0m0.019s) 944. FUNCTION TRIM with reference modding (run_functions.at:3758): ok (0m0.054s 0m0.010s) 945. FUNCTION TRIM zero length (run_functions.at:3784): ok (0m0.047s 0m0.020s) 946. FUNCTION UPPER-CASE (run_functions.at:3811): ok (0m0.050s 0m0.014s) 947. FUNCTION UPPER-CASE with reference modding (run_functions.at:3836): ok (0m0.054s 0m0.008s) 948. FUNCTION VARIANCE (run_functions.at:3861): ok (0m0.047s 0m0.017s) 949. FUNCTION WHEN-COMPILED (run_functions.at:3885): ok (0m0.052s 0m0.014s) 950. FUNCTION YEAR-TO-YYYY (run_functions.at:3939): ok (0m0.056s 0m0.009s) 951. Formatted funcs w/ invalid variable format (run_functions.at:3963): ok (0m0.042s 0m0.025s) 952. FORMATTED-(DATE)TIME with SYSTEM-OFFSET (run_functions.at:4044): ok (0m0.048s 0m0.017s) 953. Intrinsics without FUNCTION keyword (1) (run_functions.at:4082): ok (0m0.051s 0m0.013s) 954. Intrinsics without FUNCTION keyword (2) (run_functions.at:4103): ok (0m0.050s 0m0.015s) 955. User-Defined FUNCTION with/without parameter (run_functions.at:4126): ok (0m0.061s 0m0.011s) 956. UDF in COMPUTE (run_functions.at:4177): ok (0m0.059s 0m0.014s) 957. UDF replacing intrinsic function (run_functions.at:4220): ok (0m0.054s 0m0.016s) 958. UDF with recursion (run_functions.at:4263): skipped (run_functions.at:4266) 959. CALL BY CONTENT binary and literal (run_extensions.at:25): ok (0m0.081s 0m0.026s) 960. Numeric Boolean literals (run_extensions.at:72): ok (0m0.046s 0m0.016s) 961. ACUCOBOL literals (run_extensions.at:101): ok (0m0.044s 0m0.019s) 963. Hexadecimal numeric literals (run_extensions.at:188): ok (0m0.050s 0m0.014s) 964. Semi-parenthesized condition (run_extensions.at:217): ok (0m0.044s 0m0.021s) 965. ADDRESS OF (run_extensions.at:237): ok (0m0.049s 0m0.012s) 966. LENGTH OF (run_extensions.at:287): ok (0m0.063s 0m0.014s) 967. SET TO SIZE OF (run_extensions.at:451): ok (0m0.051s 0m0.009s) 968. WHEN-COMPILED (run_extensions.at:488): ok (0m0.052s 0m0.008s) 969. Complex OCCURS DEPENDING ON (1) (run_extensions.at:517): ok (0m0.048s 0m0.022s) 970. Complex OCCURS DEPENDING ON (2) (run_extensions.at:546): ok (0m0.061s 0m0.020s) 971. Complex OCCURS DEPENDING ON (3) (run_extensions.at:609): ok (0m0.055s 0m0.018s) 972. Complex OCCURS DEPENDING ON (4) (run_extensions.at:672): ok (0m0.047s 0m0.025s) 973. Complex OCCURS DEPENDING ON (5) (run_extensions.at:738): ok (0m0.065s 0m0.007s) 974. Complex OCCURS DEPENDING ON (6) (run_extensions.at:804): ok (0m0.052s 0m0.017s) 975. OCCURS UNBOUNDED (1) (run_extensions.at:845): ok (0m0.101s 0m0.035s) 977. INITIALIZE OCCURS UNBOUNDED (run_extensions.at:1060): ok (0m0.063s 0m0.010s) 978. INITIALIZE OCCURS ODOSLIDE (run_extensions.at:1134): ok (0m0.063s 0m0.008s) 979. DEPENDING ON with ODOSLIDE (run_extensions.at:1231): ok (0m0.075s 0m0.013s) 980. DEPENDING ON with ODOSLIDE for IBM (run_extensions.at:1446): ok (0m0.070s 0m0.012s) 981. INITIALIZE level 01 (run_extensions.at:1551): ok (0m0.035s 0m0.031s) 982. MOVE of non-integer to alphanumeric (run_extensions.at:1603): ok (0m0.060s 0m0.015s) 984. CALL unusual PROGRAM-ID. (run_extensions.at:1738): ok (0m0.222s 0m0.063s) 985. CALL / GOBACK with LOCAL-STORAGE (run_extensions.at:1802): ok (0m0.099s 0m0.023s) 986. CALL BY VALUE alphanumeric item (run_extensions.at:1852): ok (0m0.054s 0m0.013s) 987. CALL BY VALUE numeric literal WITH SIZE (run_extensions.at:1889): ok (0m0.063s 0m0.014s) 988. Case-sensitive PROGRAM-ID (run_extensions.at:1993): ok (0m0.050s 0m0.016s) 989. Quoted PROGRAM-ID (run_extensions.at:2018): ok (0m0.056s 0m0.012s) 990. PROGRAM-ID AS clause (run_extensions.at:2041): ok (0m0.037s 0m0.030s) 991. NUMBER-OF-CALL-PARAMETERS (run_extensions.at:2064): ok (0m0.076s 0m0.050s) 992. TALLY register (run_extensions.at:2119): ok (0m0.075s 0m0.015s) 993. Redefining TALLY (run_extensions.at:2153): ok (0m0.051s 0m0.029s) 994. PROCEDURE DIVISION USING BY ... (run_extensions.at:2189): ok (0m0.099s 0m0.037s) 995. PROCEDURE DIVISION CHAINING (run_extensions.at:2242): ok (0m0.368s 0m0.113s) 996. STOP RUN RETURNING/GIVING (run_extensions.at:2365): ok (0m0.201s 0m0.054s) 997. GOBACK/EXIT PROGRAM RETURNING/GIVING (run_extensions.at:2421): ok (0m0.089s 0m0.027s) 998. ENTRY (run_extensions.at:2471): ok (0m0.091s 0m0.038s) 999. LINE SEQUENTIAL write (run_extensions.at:2517): ok (0m0.048s 0m0.023s) 1000. LINE SEQUENTIAL read (run_extensions.at:2563): ok (0m0.052s 0m0.021s) 1001. ASSIGN to KEYBOARD/DISPLAY (run_extensions.at:2630): ok (0m0.057s 0m0.016s) 1003. Environment/Argument variable (run_extensions.at:2750): ok (0m0.051s 0m0.016s) 1004. 78 Level (1) (run_extensions.at:2796): ok (0m0.055s 0m0.012s) 1005. 78 Level (2) (run_extensions.at:2819): ok (0m0.046s 0m0.023s) 1006. 78 Level (3) (run_extensions.at:2845): ok (0m0.044s 0m0.023s) 1007. SWITCHES with non-standard names (run_extensions.at:2869): ok (0m0.051s 0m0.026s) 1008. Larger REDEFINES lengths (run_extensions.at:2982): ok (0m0.054s 0m0.016s) 1009. REDEFINES: non-referenced ambiguous item (run_extensions.at:3066): ok (0m0.057s 0m0.009s) 1010. Obsolete 2002 keywords with COBOL2014 (run_extensions.at:3092): ok (0m0.048s 0m0.031s) 1011. System routine with wrong number of parameters (run_extensions.at:3122): ok (0m0.064s 0m0.027s) 1012. System routine C$NARG (run_extensions.at:3165): ok (0m0.132s 0m0.057s) 1013. System routine C$PARAMSIZE (run_extensions.at:3242): ok (0m0.089s 0m0.031s) 1014. System routine C$CALLEDBY (run_extensions.at:3284): ok (0m0.091s 0m0.030s) 1015. System routine C$JUSTIFY (run_extensions.at:3330): ok (0m0.039s 0m0.023s) 1016. System routine C$PRINTABLE (run_extensions.at:3355): ok (0m0.036s 0m0.026s) 1017. System routine C$MAKEDIR (run_extensions.at:3384): ok (0m0.058s 0m0.009s) 1018. System routine C$GETPID (run_extensions.at:3405): ok (0m0.052s 0m0.013s) 1019. System routine C$TOUPPER (run_extensions.at:3430): ok (0m0.037s 0m0.025s) 1020. System routine C$TOLOWER (run_extensions.at:3455): ok (0m0.040s 0m0.024s) 1021. System routine CBL_OR (run_extensions.at:3480): ok (0m0.041s 0m0.027s) 1022. System routine CBL_NOR (run_extensions.at:3507): ok (0m0.047s 0m0.018s) 1023. System routine CBL_AND (run_extensions.at:3534): ok (0m0.054s 0m0.010s) 1024. System routine CBL_XOR (run_extensions.at:3561): ok (0m0.056s 0m0.010s) 1025. System routine CBL_IMP (run_extensions.at:3588): ok (0m0.034s 0m0.031s) 1026. System routine CBL_NIMP (run_extensions.at:3615): ok (0m0.046s 0m0.020s) 1027. System routine CBL_NOT (run_extensions.at:3642): ok (0m0.040s 0m0.026s) 1028. System routine CBL_EQ (run_extensions.at:3668): ok (0m0.045s 0m0.020s) 1029. System routine CBL_GC_GETOPT (run_extensions.at:3695): ok (0m0.257s 0m0.106s) 1030. System routine CBL_GC_FORK (run_extensions.at:4132): ok (0m0.060s 0m0.010s) 1031. System routine CBL_GC_WAITPID (run_extensions.at:4200): ok (0m0.057s 0m0.017s) 1032. System routine CBL_GC_HOSTED (run_extensions.at:4252): ok (0m0.128s 0m0.037s) 1033. System routine SYSTEM, parameter handling (run_extensions.at:4382): ok (0m0.072s 0m0.019s) 1034. System routine CBL_ERROR_PROC (1) (run_extensions.at:4493): ok (0m0.121s 0m0.030s) 1035. System routine CBL_ERROR_PROC (2) (run_extensions.at:4592): ok (0m0.069s 0m0.017s) 1036. DISPLAY DIRECTIVE and $DISPLAY (run_extensions.at:4673): ok (0m0.051s 0m0.015s) 1037. Conditional / define directives (1) (run_extensions.at:4706): ok (0m0.057s 0m0.011s) 1038. Conditional / define directives (2) (run_extensions.at:4731): ok (0m0.058s 0m0.009s) 1039. Conditional / define directives (3) (run_extensions.at:4756): ok (0m0.048s 0m0.019s) 1040. Conditional / define directives (4) (run_extensions.at:4784): ok (0m0.041s 0m0.023s) 1041. Variable format (run_extensions.at:4810): ok (0m0.061s 0m0.004s) 1042. Binary COMP-1 (1) (run_extensions.at:4832): ok (0m0.094s 0m0.044s) 1043. Binary COMP-1 (2) (run_extensions.at:4863): ok (0m0.107s 0m0.032s) 1044. EXHIBIT statement (run_extensions.at:4899): ok (0m0.047s 0m0.018s) 1045. XML GENERATE general (run_ml.at:19): skipped (run_ml.at:22) 1046. XML GENERATE SUPPRESS (run_ml.at:127): skipped (run_ml.at:130) 1047. XML GENERATE exceptions (run_ml.at:204): skipped (run_ml.at:207) 1048. XML GENERATE record selection (run_ml.at:300): skipped (run_ml.at:303) 1049. XML GENERATE trimming (run_ml.at:344): skipped (run_ml.at:347) 1050. XML DPC-IN-DATA directive (run_ml.at:441): skipped (run_ml.at:444) 1051. XML dpc-in-data config option (run_ml.at:472): skipped (run_ml.at:475) 1052. JSON GENERATE general (run_ml.at:516): skipped (run_ml.at:519) 1053. JSON GENERATE SUPPRESS (run_ml.at:573): skipped (run_ml.at:576) 1054. JSON GENERATE exceptions (run_ml.at:612): skipped (run_ml.at:615) 1055. JSON GENERATE record selection (run_ml.at:677): skipped (run_ml.at:680) 1056. JSON GENERATE trimming (run_ml.at:721): skipped (run_ml.at:724) 1057. JSON DPC-IN-DATA directive (run_ml.at:821): skipped (run_ml.at:824) 1058. JSON dpc-in-data config option (run_ml.at:852): skipped (run_ml.at:855) 1059. BINARY: 2-4-8 big-endian (data_binary.at:23): ok (0m0.203s 0m0.046s) 1060. BINARY: 2-4-8 native (data_binary.at:205): ok (0m0.203s 0m0.050s) 1061. BINARY: 1-2-4-8 big-endian (data_binary.at:393): ok (0m0.194s 0m0.055s) 1062. BINARY: 1-2-4-8 native (data_binary.at:575): ok (0m0.198s 0m0.050s) 1063. BINARY: 1--8 big-endian (data_binary.at:763): ok (0m0.198s 0m0.044s) 1064. BINARY: 1--8 native (data_binary.at:945): ok (0m0.204s 0m0.038s) 1065. BINARY: full-print (data_binary.at:1133): ok (0m0.057s 0m0.014s) 1066. BINARY: 64bit unsigned compare (data_binary.at:1185): ok (0m0.050s 0m0.018s) 1067. BINARY: 64bit unsigned arithmetic notrunc (data_binary.at:1210): ok (0m0.053s 0m0.020s) 1068. BINARY: 64bit signed negative constant range (data_binary.at:1240): ok (0m0.050s 0m0.016s) 1069. COMP-4 Truncate (data_binary.at:1261): ok (0m0.063s 0m0.007s) 1070. COMP-4 No Truncate (data_binary.at:1322): ok (0m0.042s 0m0.026s) 1071. DISPLAY: Sign ASCII (data_display.at:21): ok (0m0.043s 0m0.025s) 1072. DISPLAY: Sign ASCII (2) (data_display.at:80): ok (0m0.045s 0m0.021s) 1073. DISPLAY: Sign EBCDIC (data_display.at:126): ok (0m0.052s 0m0.016s) 1074. DISPLAY: unsigned (data_display.at:171): ok (0m0.041s 0m0.028s) 1075. PACKED-DECIMAL dump (data_packed.at:25): ok (0m0.114s 0m0.053s) 1076. PACKED-DECIMAL used with DISPLAY (data_packed.at:161): ok (0m0.053s 0m0.012s) 1077. PACKED-DECIMAL used with MOVE (data_packed.at:216): ok (0m0.059s 0m0.007s) 1078. PACKED-DECIMAL used with INITIALIZE (data_packed.at:273): ok (0m0.050s 0m0.018s) 1079. PACKED-DECIMAL arithmetic (data_packed.at:312): ok (0m0.059s 0m0.013s) 1080. PACKED-DECIMAL numeric test (1) (data_packed.at:348): ok (0m0.045s 0m0.024s) 1081. PACKED-DECIMAL numeric test (2) (data_packed.at:490): ok (0m0.059s 0m0.017s) 1082. COMP-6 used with DISPLAY (data_packed.at:606): ok (0m0.046s 0m0.019s) 1083. COMP-6 used with MOVE (data_packed.at:643): ok (0m0.048s 0m0.018s) 1084. COMP-6 arithmetic (data_packed.at:690): ok (0m0.058s 0m0.012s) 1085. COMP-6 numeric test (data_packed.at:722): ok (0m0.050s 0m0.017s) 1086. POINTER: display (data_pointer.at:21): ok (0m0.052s 0m0.015s) testsuite: ending at: Sat Nov 26 17:03:41 CET 2022 testsuite: test suite duration: 0h 1m 30s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 1042 tests were run, 24 failed (22 expected failures). 44 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 762: run_file.at:3841 START RELATIVE (2) fundamental runfile 983: run_extensions.at:1693 CALL USING file-name extensions Skipped tests: GnuCOBOL 3.1.2 test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 273: syn_misc.at:3598 ACUCOBOL 32bit literal size extensions literals 464: run_fundamental.at:1187 function with variable-length RETURNING item fundamental udf 688: run_misc.at:6908 Trace feature with subroutine trace 726: run_file.at:195 OPEN EXTEND and CLOSE, INDEXED runfile empty close optional write read 727: run_file.at:267 DELETE FILE, INDEXED runfile file open i-o optional 728: run_file.at:340 OUTPUT on INDEXED file to missing directory runfile open assign 730: run_file.at:416 First READ on empty SEQUENTIAL INDEXED file runfile 731: run_file.at:456 READ NEXT without previous START runfile write indexed 755: run_file.at:2240 INDEXED file key-name runfile split key 756: run_file.at:2282 INDEXED file sparse/split keys runfile split key sparse suppress 757: run_file.at:2802 INDEXED file split keys WITH DUPLICATES runfile key 758: run_file.at:2960 INDEXED file variable length record runfile optional suppress write start read 759: run_file.at:3236 INDEXED sample runfile optional file status read write duplicates start 765: run_file.at:4115 READ on OPTIONAL missing INDEXED file runfile 788: run_file.at:5719 INDEXED SEQUENTIAL basic I/O runfile 789: run_file.at:5757 INDEXED SEQUENTIAL with variable records runfile 790: run_file.at:5839 INDEXED file with LOCK MODE EXCLUSIVE runfile 791: run_file.at:5916 INDEXED file with OPEN WITH LOCK runfile 792: run_file.at:5992 INDEXED file with SHARING NO runfile 793: run_file.at:6069 INDEXED file with SHARING READ ONLY runfile 794: run_file.at:6153 INDEXED file with blocked lock runfile 795: run_file.at:6233 INDEXED file with LOCK AUTOMATIC (1) runfile 796: run_file.at:6322 INDEXED file with LOCK AUTOMATIC (2) runfile 797: run_file.at:6412 INDEXED file with LOCK MANUAL runfile 798: run_file.at:6500 START INDEXED runfile 799: run_file.at:6579 INDEXED partial keys runfile 800: run_file.at:6726 INDEXED undeclared keys runfile 802: run_file.at:6995 EXTFH: using ISAM callback runfile extfh 805: run_file.at:8287 INDEXED File READ/DELETE/READ runfile read delete 958: run_functions.at:4263 UDF with recursion functions local-storage 1045: run_ml.at:19 XML GENERATE general extensions 1046: run_ml.at:127 XML GENERATE SUPPRESS extensions 1047: run_ml.at:204 XML GENERATE exceptions extensions xml-code 1048: run_ml.at:300 XML GENERATE record selection extensions 1049: run_ml.at:344 XML GENERATE trimming extensions 1050: run_ml.at:441 XML DPC-IN-DATA directive extensions 1051: run_ml.at:472 XML dpc-in-data config option extensions 1052: run_ml.at:516 JSON GENERATE general extensions 1053: run_ml.at:573 JSON GENERATE SUPPRESS extensions 1054: run_ml.at:612 JSON GENERATE exceptions extensions json-code 1055: run_ml.at:677 JSON GENERATE record selection extensions 1056: run_ml.at:721 JSON GENERATE trimming extensions 1057: run_ml.at:821 JSON DPC-IN-DATA directive extensions 1058: run_ml.at:852 JSON dpc-in-data config option extensions ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 762. run_file.at:3841: testing START RELATIVE (2) ... ./run_file.at:3911: $COMPILE prog.cob ./run_file.at:3912: $COBCRUN_DIRECT ./prog --- /dev/null 2022-11-24 14:49:09.707094785 +0100 +++ /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/tests/testsuite.dir/at-groups/762/stdout 2022-11-26 17:03:09.225123356 +0100 @@ -0,0 +1,5 @@ +WRITE 24 +WRITE 24 +START 23 +READ 46 +READ RECORD 762. run_file.at:3841: 762. START RELATIVE (2) (run_file.at:3841): FAILED (run_file.at:3912) # -*- compilation -*- 983. run_extensions.at:1693: testing CALL USING file-name ... ./run_extensions.at:1731: $COMPILE_MODULE setfilename.c ./run_extensions.at:1732: $COMPILE prog.cob ./run_extensions.at:1733: $COBCRUN_DIRECT ./prog --- /dev/null 2022-11-24 14:49:09.707094785 +0100 +++ /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/tests/testsuite.dir/at-groups/983/stderr 2022-11-26 17:03:26.262460192 +0100 @@ -0,0 +1 @@ +libcob: prog.cob:18: error: permanent file error (status = 30) for file TEST-FILE ('TESTFILE' => /media/dati/chroot_at/etc/portage/package.keywords/test) on OPEN ./run_extensions.at:1733: exit code was 1, expected 0 983. run_extensions.at:1693: 983. CALL USING file-name (run_extensions.at:1693): FAILED (run_extensions.at:1733) ## ------------- ## ## ../config.log ## ## ------------- ## | This file contains any messages produced by compilers while | running configure, to aid debugging if configure makes a mistake. | | It was created by GnuCOBOL configure 3.1.2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | $ ./configure --prefix=/usr --build=x86_64-pc-linux-gnu --host=x86_64-pc-linux-gnu --mandir=/usr/share/man --infodir=/usr/share/info --datadir=/usr/share --sysconfdir=/etc --localstatedir=/var/lib --datarootdir=/usr/share --disable-dependency-tracking --disable-silent-rules --disable-static --docdir=/usr/share/doc/gnucobol-3.1.2 --htmldir=/usr/share/doc/gnucobol-3.1.2/html --with-sysroot=/ --libdir=/usr/lib64 --without-db --without-json --without-xml2 --enable-nls | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = localhost | uname -m = x86_64 | uname -r = 5.15.77-gentoo-dist | uname -s = Linux | uname -v = #1 SMP Thu Nov 3 18:21:44 -00 2022 | | /usr/bin/uname -p = AMD EPYC 7513 32-Core Processor | /bin/uname -X = unknown | | /bin/arch = unknown | /usr/bin/arch -k = unknown | /usr/convex/getsysinfo = unknown | /usr/bin/hostinfo = unknown | /bin/machine = unknown | /usr/bin/oslevel = unknown | /bin/universe = unknown | | PATH: /usr/lib/portage/python3.10/ebuild-helpers/xattr/ | PATH: /usr/lib/portage/python3.10/ebuild-helpers/ | PATH: /usr/local/sbin/ | PATH: /usr/local/bin/ | PATH: /usr/sbin/ | PATH: /usr/bin/ | PATH: /sbin/ | PATH: /bin/ | PATH: /opt/bin/ | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2761: looking for aux files: config.rpath config.guess config.sub ltmain.sh compile missing install-sh | configure:2774: trying ./build_aux/ | configure:2803: ./build_aux/config.rpath found | configure:2803: ./build_aux/config.guess found | configure:2803: ./build_aux/config.sub found | configure:2803: ./build_aux/ltmain.sh found | configure:2803: ./build_aux/compile found | configure:2803: ./build_aux/missing found | configure:2785: ./build_aux/install-sh found | configure:2972: checking for a BSD-compatible install | configure:3045: result: /usr/lib/portage/python3.10/ebuild-helpers/xattr/install -c | configure:3056: checking whether build environment is sane | configure:3111: result: yes | configure:3270: checking for a race-free mkdir -p | configure:3314: result: /bin/mkdir -p | configure:3321: checking for gawk | configure:3342: found /usr/bin/gawk | configure:3353: result: gawk | configure:3364: checking whether make sets $(MAKE) | configure:3387: result: yes | configure:3417: checking whether make supports nested variables | configure:3435: result: yes | configure:3756: checking for make | configure:3777: found /usr/bin/make | configure:3788: result: make | configure:3853: checking whether make supports order-only prerequisites | configure:3868: make -f confmf.mk && make -f confmf.mk && cat confinc.out | target am__prereq. | target confprereq. | target am__doit. | target am__prereq. | target am__doit. | configure:3871: $? = 0 | configure:3882: result: yes | configure:3896: checking whether CFLAGS -O can be modified | configure:3904: result: no | configure:3929: checking for x86_64-pc-linux-gnu-gcc | configure:3950: found /usr/bin/x86_64-pc-linux-gnu-gcc | configure:3961: result: x86_64-pc-linux-gnu-gcc | configure:4041: checking for C compiler version | configure:4050: x86_64-pc-linux-gnu-gcc --version >&5 | x86_64-pc-linux-gnu-gcc (Gentoo 12.2.1_p20221008 p1) 12.2.1 20221008 | Copyright (C) 2022 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:4061: $? = 0 | configure:4050: x86_64-pc-linux-gnu-gcc -v >&5 | Using built-in specs. | COLLECT_GCC=x86_64-pc-linux-gnu-gcc | COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-pc-linux-gnu/12/lto-wrapper | Target: x86_64-pc-linux-gnu | Configured with: /var/tmp/portage/sys-devel/gcc-12.2.1_p20221008/work/gcc-12-20221008/configure --host=x86_64-pc-linux-gnu --build=x86_64-pc-linux-gnu --prefix=/usr --bindir=/usr/x86_64-pc-linux-gnu/gcc-bin/12 --includedir=/usr/lib/gcc/x86_64-pc-linux-gnu/12/include --datadir=/usr/share/gcc-data/x86_64-pc-linux-gnu/12 --mandir=/usr/share/gcc-data/x86_64-pc-linux-gnu/12/man --infodir=/usr/share/gcc-data/x86_64-pc-linux-gnu/12/info --with-gxx-include-dir=/usr/lib/gcc/x86_64-pc-linux-gnu/12/include/g++-v12 --with-python-dir=/share/gcc-data/x86_64-pc-linux-gnu/12/python --enable-languages=c,c++,fortran --enable-obsolete --enable-secureplt --disable-werror --with-system-zlib --enable-nls --without-included-gettext --disable-libunwind-exceptions --enable-checking=release --with-bugurl=https://bugs.gentoo.org/ --with-pkgversion='Gentoo 12.2.1_p20221008 p1' --with-gcc-major-version-only --disable-esp --enable-libstdcxx-time --disable-libstdcxx-pch --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-multilib --with-multilib-list=m32,m64 --disable-fixed-point --enable-targets=all --enable-libgomp --disable-libssp --disable-libada --disable-cet --disable-systemtap --disable-valgrind-annotations --disable-vtable-verify --disable-libvtv --without-zstd --enable-lto --with-isl --disable-isl-version-check --enable-default-pie --enable-default-ssp --with-build-config=bootstrap-lto | Thread model: posix | Supported LTO compression algorithms: zlib | gcc version 12.2.1 20221008 (Gentoo 12.2.1_p20221008 p1) | configure:4061: $? = 0 | configure:4050: x86_64-pc-linux-gnu-gcc -V >&5 | x86_64-pc-linux-gnu-gcc: error: unrecognized command-line option '-V' | x86_64-pc-linux-gnu-gcc: fatal error: no input files | compilation terminated. | configure:4061: $? = 1 | configure:4050: x86_64-pc-linux-gnu-gcc -qversion >&5 | x86_64-pc-linux-gnu-gcc: error: unrecognized command-line option '-qversion'; did you mean '--version'? | x86_64-pc-linux-gnu-gcc: fatal error: no input files | compilation terminated. | configure:4061: $? = 1 | configure:4050: x86_64-pc-linux-gnu-gcc -version >&5 | x86_64-pc-linux-gnu-gcc: error: unrecognized command-line option '-version' | x86_64-pc-linux-gnu-gcc: fatal error: no input files | compilation terminated. | configure:4061: $? = 1 | configure:4081: checking whether the C compiler works | configure:4103: x86_64-pc-linux-gnu-gcc -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:4107: $? = 0 | configure:4157: result: yes | configure:4160: checking for C compiler default output file name | configure:4162: result: a.out | configure:4168: checking for suffix of executables | configure:4175: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:4179: $? = 0 | configure:4202: result: | configure:4224: checking whether we are cross compiling | configure:4232: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:4236: $? = 0 | configure:4243: ./conftest | configure:4247: $? = 0 | configure:4262: result: no | configure:4267: checking for suffix of object files | configure:4290: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4294: $? = 0 | configure:4316: result: o | configure:4320: checking whether the compiler supports GNU C | configure:4340: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4340: $? = 0 | configure:4350: result: yes | configure:4361: checking whether x86_64-pc-linux-gnu-gcc accepts -g | configure:4382: x86_64-pc-linux-gnu-gcc -c -g conftest.c >&5 | configure:4382: $? = 0 | configure:4426: result: yes | configure:4446: checking for x86_64-pc-linux-gnu-gcc option to enable C11 features | configure:4461: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4461: $? = 0 | configure:4479: result: none needed | configure:4595: checking whether x86_64-pc-linux-gnu-gcc understands -c and -o together | configure:4618: x86_64-pc-linux-gnu-gcc -c conftest.c -o conftest2.o | configure:4621: $? = 0 | configure:4618: x86_64-pc-linux-gnu-gcc -c conftest.c -o conftest2.o | configure:4621: $? = 0 | configure:4633: result: yes | configure:4653: checking whether make supports the include directive | configure:4668: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4671: $? = 0 | configure:4690: result: yes (GNU style) | configure:4716: checking dependency style of x86_64-pc-linux-gnu-gcc | configure:4828: result: none | configure:4850: checking how to run the C preprocessor | configure:4876: x86_64-pc-linux-gnu-gcc -E conftest.c | configure:4876: $? = 0 | configure:4891: x86_64-pc-linux-gnu-gcc -E conftest.c | conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory | 13 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:4891: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4918: result: x86_64-pc-linux-gnu-gcc -E | configure:4932: x86_64-pc-linux-gnu-gcc -E conftest.c | configure:4932: $? = 0 | configure:4947: x86_64-pc-linux-gnu-gcc -E conftest.c | conftest.c:13:10: fatal error: ac_nonexistent.h: No such file or directory | 13 | #include | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:4947: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4983: checking for stdio.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for stdlib.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for string.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for inttypes.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for stdint.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for strings.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for sys/stat.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for sys/types.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for unistd.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for wchar.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:4983: $? = 0 | configure:4983: result: yes | configure:4983: checking for minix/config.h | configure:4983: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:51:10: fatal error: minix/config.h: No such file or directory | 51 | #include | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:4983: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:4983: result: no | configure:5014: checking whether it is safe to define __EXTENSIONS__ | configure:5033: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:5033: $? = 0 | configure:5041: result: yes | configure:5044: checking whether _XOPEN_SOURCE should be defined | configure:5066: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:5066: $? = 0 | configure:5093: result: no | configure:5283: checking build system type | configure:5298: result: x86_64-pc-linux-gnu | configure:5318: checking host system type | configure:5332: result: x86_64-pc-linux-gnu | configure:5373: checking how to print strings | configure:5400: result: printf | configure:5421: checking for a sed that does not truncate output | configure:5491: result: /bin/sed | configure:5509: checking for grep that handles long lines and -e | configure:5573: result: /bin/grep | configure:5578: checking for egrep | configure:5646: result: /bin/grep -E | configure:5651: checking for fgrep | configure:5719: result: /bin/grep -F | configure:5755: checking for ld used by x86_64-pc-linux-gnu-gcc | configure:5823: result: /usr/x86_64-pc-linux-gnu/bin/ld | configure:5830: checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld) is GNU ld | configure:5846: result: yes | configure:5858: checking for BSD- or MS-compatible name lister (nm) | configure:5913: result: /usr/bin/x86_64-pc-linux-gnu-nm -B | configure:6053: checking the name lister (/usr/bin/x86_64-pc-linux-gnu-nm -B) interface | configure:6061: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:6064: /usr/bin/x86_64-pc-linux-gnu-nm -B "conftest.o" | configure:6067: output | 0000000000000000 B some_variable | configure:6074: result: BSD nm | configure:6077: checking whether ln -s works | configure:6081: result: yes | configure:6089: checking the maximum length of command line arguments | configure:6226: result: 1572864 | configure:6274: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format | configure:6315: result: func_convert_file_noop | configure:6322: checking how to convert x86_64-pc-linux-gnu file names to toolchain format | configure:6343: result: func_convert_file_noop | configure:6350: checking for /usr/x86_64-pc-linux-gnu/bin/ld option to reload object files | configure:6358: result: -r | configure:6392: checking for x86_64-pc-linux-gnu-file | configure:6427: result: no | configure:6437: checking for file | configure:6458: found /usr/bin/file | configure:6469: result: file | configure:6500: checking for x86_64-pc-linux-gnu-objdump | configure:6521: found /usr/bin/x86_64-pc-linux-gnu-objdump | configure:6532: result: x86_64-pc-linux-gnu-objdump | configure:6606: checking how to recognize dependent libraries | configure:6807: result: pass_all | configure:6852: checking for x86_64-pc-linux-gnu-dlltool | configure:6887: result: no | configure:6897: checking for dlltool | configure:6932: result: no | configure:6959: checking how to associate runtime and link libraries | configure:6987: result: printf %s\n | configure:7003: checking for x86_64-pc-linux-gnu-ar | configure:7024: found /usr/bin/x86_64-pc-linux-gnu-ar | configure:7035: result: x86_64-pc-linux-gnu-ar | configure:7137: checking for archiver @FILE support | configure:7155: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:7155: $? = 0 | configure:7159: x86_64-pc-linux-gnu-ar cr libconftest.a @conftest.lst >&5 | configure:7162: $? = 0 | configure:7167: x86_64-pc-linux-gnu-ar cr libconftest.a @conftest.lst >&5 | x86_64-pc-linux-gnu-ar: conftest.o: No such file or directory | configure:7170: $? = 1 | configure:7182: result: @ | configure:7200: checking for x86_64-pc-linux-gnu-strip | configure:7221: found /usr/bin/x86_64-pc-linux-gnu-strip | configure:7232: result: x86_64-pc-linux-gnu-strip | configure:7309: checking for x86_64-pc-linux-gnu-ranlib | configure:7330: found /usr/bin/x86_64-pc-linux-gnu-ranlib | configure:7341: result: x86_64-pc-linux-gnu-ranlib | configure:7488: checking command to parse /usr/bin/x86_64-pc-linux-gnu-nm -B output from x86_64-pc-linux-gnu-gcc object | configure:7642: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:7645: $? = 0 | configure:7649: /usr/bin/x86_64-pc-linux-gnu-nm -B conftest.o \| /bin/sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | /bin/sed '/ __gnu_lto/d' \> conftest.nm | configure:7652: $? = 0 | configure:7718: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c conftstm.o >&5 | configure:7721: $? = 0 | configure:7759: result: ok | configure:7806: checking for sysroot | configure:7837: result: / | configure:7844: checking for a working dd | configure:7888: result: /bin/dd | configure:7892: checking how to truncate binary pipes | configure:7908: result: /bin/dd bs=4096 count=1 | configure:8045: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:8048: $? = 0 | configure:8200: checking for x86_64-pc-linux-gnu-mt | configure:8235: result: no | configure:8245: checking for mt | configure:8280: result: no | configure:8300: checking if : is a manifest tool | configure:8307: : '-?' | configure:8315: result: no | configure:9036: checking for dlfcn.h | configure:9036: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:9036: $? = 0 | configure:9036: result: yes | configure:9622: checking for objdir | configure:9638: result: .libs | configure:9902: checking if x86_64-pc-linux-gnu-gcc supports -fno-rtti -fno-exceptions | configure:9921: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -fno-rtti -fno-exceptions conftest.c >&5 | cc1: warning: command-line option '-fno-rtti' is valid for C++/D/ObjC++ but not for C | configure:9925: $? = 0 | configure:9938: result: no | configure:10296: checking for x86_64-pc-linux-gnu-gcc option to produce PIC | configure:10304: result: -fPIC -DPIC | configure:10312: checking if x86_64-pc-linux-gnu-gcc PIC flag -fPIC -DPIC works | configure:10331: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -fPIC -DPIC -DPIC conftest.c >&5 | configure:10335: $? = 0 | configure:10348: result: yes | configure:10377: checking if x86_64-pc-linux-gnu-gcc static flag -static works | configure:10406: result: yes | configure:10421: checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o | configure:10443: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -o out/conftest2.o conftest.c >&5 | configure:10447: $? = 0 | configure:10469: result: yes | configure:10477: checking if x86_64-pc-linux-gnu-gcc supports -c -o file.o | configure:10525: result: yes | configure:10558: checking whether the x86_64-pc-linux-gnu-gcc linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) supports shared libraries | configure:11826: result: yes | configure:11863: checking whether -lc should be explicitly linked in | configure:11872: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:11875: $? = 0 | configure:11890: x86_64-pc-linux-gnu-gcc -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 | configure:11893: $? = 0 | configure:11907: result: no | configure:12067: checking dynamic linker characteristics | configure:12662: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:12662: $? = 0 | configure:12901: result: GNU/Linux ld.so | configure:13023: checking how to hardcode library paths into programs | configure:13048: result: immediate | configure:13156: checking for shl_load | configure:13156: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /var/tmp/portage/dev-lang/gnucobol-3.1.2/temp/cc5def7g.o: in function `main': | conftest.c:(.text.startup+0x5): undefined reference to `shl_load' | collect2: error: ld returned 1 exit status | configure:13156: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | /* Define shl_load to an innocuous variant, in case declares shl_load. | | For example, HP-UX 11i declares gettimeofday. */ | | #define shl_load innocuous_shl_load | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char shl_load (void); below. */ | | | | #include | | #undef shl_load | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char shl_load (void); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_shl_load || defined __stub___shl_load | | choke me | | #endif | | | | int | | main (void) | | { | | return shl_load (); | | ; | | return 0; | | } | configure:13156: result: no | configure:13161: checking for shl_load in -ldld | configure:13190: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -ldld >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: cannot find -ldld: No such file or directory | collect2: error: ld returned 1 exit status | configure:13190: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char shl_load (void); | | int | | main (void) | | { | | return shl_load (); | | ; | | return 0; | | } | configure:13200: result: no | configure:13206: checking for dlopen | configure:13206: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:13206: $? = 0 | configure:13206: result: yes | configure:13382: checking whether a program can dlopen itself | configure:13463: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -DHAVE_DLFCN_H -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,--export-dynamic conftest.c >&5 | configure:13466: $? = 0 | configure:13484: result: yes | configure:13489: checking whether a statically linked program can dlopen itself | configure:13570: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -DHAVE_DLFCN_H -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,--export-dynamic -static conftest.c >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /var/tmp/portage/dev-lang/gnucobol-3.1.2/temp/ccRudYPf.o: in function `main': | conftest.c:(.text.startup+0x9): warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking | configure:13573: $? = 0 | conftest: undefined symbol: _fnord | configure:13591: result: no | configure:13630: checking whether stripping libraries is possible | configure:13639: result: yes | configure:13681: checking if libtool supports shared libraries | configure:13683: result: yes | configure:13686: checking whether to build shared libraries | configure:13711: result: yes | configure:13714: checking whether to build static libraries | configure:13718: result: no | configure:13756: checking for egrep | configure:13824: result: /bin/grep -E | configure:13835: checking for flex | configure:13856: found /usr/bin/flex | configure:13867: result: flex | configure:13916: checking for lex output file root | configure:13929: flex conftest.l | configure:13933: $? = 0 | configure:13941: result: lex.yy | configure:13956: checking for lex library | configure:13981: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:13981: $? = 0 | configure:13994: result: none needed | configure:14009: checking for library containing yywrap | configure:14045: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /var/tmp/portage/dev-lang/gnucobol-3.1.2/temp/ccQIGfS1.o: in function `main': | conftest.c:(.text.startup+0x5): undefined reference to `yywrap' | collect2: error: ld returned 1 exit status | configure:14045: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. | | The 'extern "C"' is for builds by C++ compilers; | | although this is not generally supported in C code supporting it here | | has little cost and some practical benefit (sr 110532). */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char yywrap (void); | | int | | main (void) | | { | | return yywrap (); | | ; | | return 0; | | } | configure:14045: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lfl >&5 | configure:14045: $? = 0 | configure:14065: result: -lfl | configure:14081: checking whether yytext is a pointer | configure:14097: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14097: $? = 0 | configure:14104: result: yes | configure:14123: checking for bison | configure:14144: found /usr/bin/bison | configure:14155: result: bison -y | configure:14171: checking for x86_64-pc-linux-gnu-windres | configure:14206: result: no | configure:14216: checking for windres | configure:14251: result: no | configure:14351: checking how to disable yacc compatibility warnings | configure:14365: result: -Wno-yacc | configure:14380: checking for diff arguments | configure:14395: result: --strip-trailing-cr | configure:14408: checking whether ln -s works | configure:14412: result: yes | configure:14421: checking whether make sets $(MAKE) | configure:14444: result: yes | configure:14479: checking for ld used by x86_64-pc-linux-gnu-gcc | configure:14547: result: /usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64 | configure:14554: checking if the linker (/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64) is GNU ld | configure:14570: result: yes | configure:14578: checking for shared library run path origin | configure:14592: result: done | configure:14618: checking for egrep | configure:14686: result: /bin/grep -E | configure:14692: checking for stdint.h | configure:14692: result: yes | configure:14698: checking for sys/types.h | configure:14698: result: yes | configure:14704: checking for signal.h | configure:14704: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14704: $? = 0 | configure:14704: result: yes | configure:14710: checking for fcntl.h | configure:14710: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14710: $? = 0 | configure:14710: result: yes | configure:14716: checking for malloc.h | configure:14716: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14716: $? = 0 | configure:14716: result: yes | configure:14722: checking for locale.h | configure:14722: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14722: $? = 0 | configure:14722: result: yes | configure:14728: checking for stddef.h | configure:14728: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14728: $? = 0 | configure:14728: result: yes | configure:14734: checking for wchar.h | configure:14734: result: yes | configure:14740: checking for dlfcn.h | configure:14740: result: yes | configure:14746: checking for sys/time.h | configure:14746: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14746: $? = 0 | configure:14746: result: yes | configure:14752: checking for sys/wait.h | configure:14752: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14752: $? = 0 | configure:14752: result: yes | configure:14762: checking for an ANSI C-conforming const | configure:14829: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14829: $? = 0 | configure:14837: result: yes | configure:14845: checking whether byte ordering is bigendian | configure:14861: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:55:16: error: unknown type name 'not' | 55 | not a universal capable compiler | | ^~~ | conftest.c:55:22: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | 55 | not a universal capable compiler | | ^~~~~~~~~ | conftest.c:55:22: error: unknown type name 'universal' | configure:14861: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:14907: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:14907: $? = 0 | configure:14926: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:61:18: error: unknown type name 'not'; did you mean 'ino_t'? | 61 | not big endian | | ^~~ | | ino_t | conftest.c:61:26: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | 61 | not big endian | | ^~~~~~ | configure:14926: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main (void) | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:15062: result: no | configure:15080: checking for size_t | configure:15080: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15080: $? = 0 | configure:15080: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:85:21: error: expected expression before ')' token | 85 | if (sizeof ((size_t))) | | ^ | configure:15080: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_STDIO_H | | # include | | #endif | | #ifdef HAVE_STDLIB_H | | # include | | #endif | | #ifdef HAVE_STRING_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main (void) | | { | | if (sizeof ((size_t))) | | return 0; | | ; | | return 0; | | } | configure:15080: result: yes | configure:15090: checking whether struct tm is in sys/time.h or time.h | configure:15111: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15111: $? = 0 | configure:15119: result: time.h | configure:15127: checking for sig_atomic_t | configure:15127: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15127: $? = 0 | configure:15127: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:59:27: error: expected expression before ')' token | 59 | if (sizeof ((sig_atomic_t))) | | ^ | configure:15127: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:15127: result: yes | configure:15140: checking for inline keyword | configure:15164: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15164: $? = 0 | configure:15171: result: __inline | configure:15181: checking for vprintf | configure:15181: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:72:6: warning: conflicting types for built-in function 'vprintf'; expected 'int(const char *, __va_list_tag *)' [-Wbuiltin-declaration-mismatch] | 72 | char vprintf (void); | | ^~~~~~~ | conftest.c:64:1: note: 'vprintf' is declared in header '' | 63 | #include | 64 | #undef vprintf | configure:15181: $? = 0 | configure:15181: result: yes | configure:15202: checking for memmove | configure:15202: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:73:6: warning: conflicting types for built-in function 'memmove'; expected 'void *(void *, const void *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 73 | char memmove (void); | | ^~~~~~~ | conftest.c:65:1: note: 'memmove' is declared in header '' | 64 | #include | 65 | #undef memmove | configure:15202: $? = 0 | configure:15202: result: yes | configure:15208: checking for memset | configure:15208: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:74:6: warning: conflicting types for built-in function 'memset'; expected 'void *(void *, int, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 74 | char memset (void); | | ^~~~~~ | conftest.c:66:1: note: 'memset' is declared in header '' | 65 | #include | 66 | #undef memset | configure:15208: $? = 0 | configure:15208: result: yes | configure:15214: checking for setlocale | configure:15214: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15214: $? = 0 | configure:15214: result: yes | configure:15220: checking for fcntl | configure:15220: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15220: $? = 0 | configure:15220: result: yes | configure:15226: checking for strerror | configure:15226: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15226: $? = 0 | configure:15226: result: yes | configure:15232: checking for strcasecmp | configure:15232: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:78:6: warning: conflicting types for built-in function 'strcasecmp'; expected 'int(const char *, const char *)' [-Wbuiltin-declaration-mismatch] | 78 | char strcasecmp (void); | | ^~~~~~~~~~ | configure:15232: $? = 0 | configure:15232: result: yes | configure:15238: checking for strchr | configure:15238: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:79:6: warning: conflicting types for built-in function 'strchr'; expected 'char *(const char *, int)' [-Wbuiltin-declaration-mismatch] | 79 | char strchr (void); | | ^~~~~~ | conftest.c:71:1: note: 'strchr' is declared in header '' | 70 | #include | 71 | #undef strchr | configure:15238: $? = 0 | configure:15238: result: yes | configure:15244: checking for strrchr | configure:15244: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:80:6: warning: conflicting types for built-in function 'strrchr'; expected 'char *(const char *, int)' [-Wbuiltin-declaration-mismatch] | 80 | char strrchr (void); | | ^~~~~~~ | conftest.c:72:1: note: 'strrchr' is declared in header '' | 71 | #include | 72 | #undef strrchr | configure:15244: $? = 0 | configure:15244: result: yes | configure:15250: checking for strdup | configure:15250: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:81:6: warning: conflicting types for built-in function 'strdup'; expected 'char *(const char *)' [-Wbuiltin-declaration-mismatch] | 81 | char strdup (void); | | ^~~~~~ | configure:15250: $? = 0 | configure:15250: result: yes | configure:15256: checking for strstr | configure:15256: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | conftest.c:82:6: warning: conflicting types for built-in function 'strstr'; expected 'char *(const char *, const char *)' [-Wbuiltin-declaration-mismatch] | 82 | char strstr (void); | | ^~~~~~ | conftest.c:74:1: note: 'strstr' is declared in header '' | 73 | #include | 74 | #undef strstr | configure:15256: $? = 0 | configure:15256: result: yes | configure:15262: checking for strtol | configure:15262: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15262: $? = 0 | configure:15262: result: yes | configure:15268: checking for gettimeofday | configure:15268: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15268: $? = 0 | configure:15268: result: yes | configure:15274: checking for localeconv | configure:15274: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15274: $? = 0 | configure:15274: result: yes | configure:15280: checking for getexecname | configure:15280: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /var/tmp/portage/dev-lang/gnucobol-3.1.2/temp/ccEsTTNc.o: in function `main': | conftest.c:(.text.startup+0x5): undefined reference to `getexecname' | collect2: error: ld returned 1 exit status | configure:15280: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | /* end confdefs.h. */ | | /* Define getexecname to an innocuous variant, in case declares getexecname. | | For example, HP-UX 11i declares gettimeofday. */ | | #define getexecname innocuous_getexecname | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char getexecname (void); below. */ | | | | #include | | #undef getexecname | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char getexecname (void); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_getexecname || defined __stub___getexecname | | choke me | | #endif | | | | int | | main (void) | | { | | return getexecname (); | | ; | | return 0; | | } | configure:15280: result: no | configure:15286: checking for canonicalize_file_name | configure:15286: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15286: $? = 0 | configure:15286: result: yes | configure:15292: checking for popen | configure:15292: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15292: $? = 0 | configure:15292: result: yes | configure:15298: checking for raise | configure:15298: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15298: $? = 0 | configure:15298: result: yes | configure:15304: checking for readlink | configure:15304: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15304: $? = 0 | configure:15304: result: yes | configure:15310: checking for realpath | configure:15310: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15310: $? = 0 | configure:15310: result: yes | configure:15316: checking for setenv | configure:15316: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15316: $? = 0 | configure:15316: result: yes | configure:15322: checking for strcoll | configure:15322: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15322: $? = 0 | configure:15322: result: yes | configure:15328: checking for flockfile | configure:15328: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:15328: $? = 0 | configure:15328: result: yes | configure:15337: checking for timezone variable access | configure:15350: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15350: $? = 0 | configure:15354: result: yes | configure:15363: checking for designated initializers | configure:15379: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15379: $? = 0 | configure:15382: result: yes | configure:15398: checking for __GNUC__ | configure:15407: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:15407: $? = 0 | configure:15410: result: yes | configure:15418: checking for __INTEL_COMPILER | configure:15427: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:82:11: error: #error macro not defined | 82 | # error macro not defined | | ^~~~~ | configure:15427: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __INTEL_COMPILER | | # error macro not defined | | #endif | configure:15436: result: no | configure:15442: checking for __clang__ | configure:15451: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:82:11: error: #error macro not defined | 82 | # error macro not defined | | ^~~~~ | configure:15451: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __clang__ | | # error macro not defined | | #endif | configure:15457: result: no | configure:15462: checking for __xlc__ | configure:15471: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:82:11: error: #error macro not defined | 82 | # error macro not defined | | ^~~~~ | configure:15471: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __xlc__ | | # error macro not defined | | #endif | configure:15477: result: no | configure:15482: checking for __WATCOMC__ | configure:15491: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:82:11: error: #error macro not defined | 82 | # error macro not defined | | ^~~~~ | configure:15491: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __WATCOMC__ | | # error macro not defined | | #endif | configure:15497: result: no | configure:15560: checking whether to build with code coverage support | configure:15581: result: no | configure:15936: checking for x86_64-pc-linux-gnu-pkg-config | configure:15959: found /usr/bin/x86_64-pc-linux-gnu-pkg-config | configure:15971: result: /usr/bin/x86_64-pc-linux-gnu-pkg-config | configure:16044: checking pkg-config is at least version 0.9.0 | configure:16047: result: yes | configure:16058: Checks for GMP/MPIR ... | configure:16096: checking for gmp | configure:16103: $PKG_CONFIG --exists --print-errors "gmp" | configure:16106: $? = 0 | configure:16120: $PKG_CONFIG --exists --print-errors "gmp" | configure:16123: $? = 0 | configure:16309: result: yes | configure:16322: checking for gmp.h | configure:16322: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:16322: $? = 0 | configure:16322: result: yes | configure:16327: checking if linking against libgmp with "-lgmp " works | configure:16340: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lgmp >&5 | configure:16340: $? = 0 | configure:16342: result: yes | configure:16511: checking matching GMP version | configure:16544: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lgmp >&5 | configure:16544: $? = 0 | configure:16544: ./conftest | configure:16544: $? = 0 | configure:16583: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lgmp >&5 | configure:16583: $? = 0 | configure:16583: ./conftest | configure:16583: $? = 0 | configure:16601: result: yes (6.2) | configure:16613: checking for __gmp_get_memory_functions in -lgmp | configure:16642: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lgmp >&5 | configure:16642: $? = 0 | configure:16653: result: yes | configure:16975: Checks for JSON handler | configure:17519: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:17519: $? = 0 | configure:17637: checking for clock_gettime and CLOCK_REALTIME | configure:17650: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:17650: $? = 0 | configure:17653: result: yes | configure:17662: checking for isfinite | configure:17675: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:17675: $? = 0 | configure:17678: result: yes | configure:17736: checking for fdatasync | configure:17736: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:17736: $? = 0 | configure:17736: result: yes | configure:17742: checking for sigaction | configure:17742: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:17742: $? = 0 | configure:17742: result: yes | configure:17748: checking for fmemopen | configure:17748: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:17748: $? = 0 | configure:17748: result: yes | configure:17755: checking for x86_64-pc-linux-gnu-gcc options needed to detect all undeclared functions | configure:17777: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:94:8: error: 'strchr' undeclared (first use in this function) | 94 | (void) strchr; | | ^~~~~~ | conftest.c:1:1: note: 'strchr' is defined in header ''; did you forget to '#include '? | 1 | /* confdefs.h */ | conftest.c:94:8: note: each undeclared identifier is reported only once for each function it appears in | 94 | (void) strchr; | | ^~~~~~ | configure:17777: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "disabled" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | /* end confdefs.h. */ | | | | int | | main (void) | | { | | (void) strchr; | | ; | | return 0; | | } | configure:17804: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:17804: $? = 0 | configure:17821: result: none needed | configure:17835: checking whether fdatasync is declared | configure:17835: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:17835: $? = 0 | configure:17835: result: yes | configure:17844: checking whether fmemopen is declared | configure:17844: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:17844: $? = 0 | configure:17844: result: yes | configure:17866: Checks for curses ... | configure:17895: checking for initscr in -lncursesw | configure:17924: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | configure:17924: $? = 0 | configure:17934: result: yes | configure:17947: checking for ncursesw/ncurses.h | configure:17947: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:17947: $? = 0 | configure:17947: result: yes | configure:18275: checking for ncurses _nc_freeall function | configure:18289: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | configure:18289: $? = 0 | configure:18292: result: yes | configure:18300: checking for ncurses use_legacy_coding function | configure:18314: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | configure:18314: $? = 0 | configure:18317: result: yes | configure:18328: checking for curses color_set function | configure:18356: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /var/tmp/portage/dev-lang/gnucobol-3.1.2/temp/ccFejUyI.o: undefined reference to symbol 'stdscr' | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /lib64/libtinfow.so.6: error adding symbols: DSO missing from command line | collect2: error: ld returned 1 exit status | configure:18356: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "disabled" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | /* end confdefs.h. */ | | | | #ifdef HAVE_NCURSESW_NCURSES_H | | #include | | #elif defined (HAVE_NCURSESW_CURSES_H) | | #include | | #elif defined (HAVE_NCURSES_H) | | #include | | #elif defined (HAVE_NCURSES_NCURSES_H) | | #include | | #elif defined (HAVE_PDCURSES_H) | | #include | | #elif defined (HAVE_CURSES_H) | | #include | | #endif | | int | | main (void) | | { | | | | color_set (0, NULL); | | | | ; | | return 0; | | } | configure:18362: result: no | configure:18368: checking for curses define_key function | configure:18396: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | /usr/lib/gcc/x86_64-pc-linux-gnu/12/../../../../x86_64-pc-linux-gnu/bin/ld: /var/tmp/portage/dev-lang/gnucobol-3.1.2/temp/cc9JpZZW.o: in function `main': | conftest.c:(.text.startup+0x11): undefined reference to `define_key' | collect2: error: ld returned 1 exit status | configure:18396: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "disabled" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | /* end confdefs.h. */ | | | | #ifdef HAVE_NCURSESW_NCURSES_H | | #include | | #elif defined (HAVE_NCURSESW_CURSES_H) | | #include | | #elif defined (HAVE_NCURSES_H) | | #include | | #elif defined (HAVE_NCURSES_NCURSES_H) | | #include | | #elif defined (HAVE_PDCURSES_H) | | #include | | #elif defined (HAVE_CURSES_H) | | #include | | #endif | | int | | main (void) | | { | | | | define_key ("\E-3;3~", (KEY_MAX + 1)); | | | | ; | | return 0; | | } | configure:18402: result: no | configure:18408: checking for curses mouseinterval function | configure:18436: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | configure:18436: $? = 0 | configure:18439: result: yes | configure:18448: checking for curses has_mouse function | configure:18476: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lncursesw >&5 | configure:18476: $? = 0 | configure:18479: result: yes | configure:18970: checking for _WIN32 | configure:18979: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | conftest.c:101:11: error: #error macro not defined | 101 | # error macro not defined | | ^~~~~ | configure:18979: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "disabled" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | /* end confdefs.h. */ | | | | #ifndef _WIN32 | | # error macro not defined | | #endif | configure:18985: result: no | configure:18992: checking for dlopen in -lc | configure:19021: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lc >&5 | configure:19021: $? = 0 | configure:19031: result: yes | configure:19239: checking for dladdr in -lc | configure:19268: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -lc >&5 | configure:19268: $? = 0 | configure:19278: result: yes | configure:19354: checking for support of computed gotos | configure:19371: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:19371: $? = 0 | configure:19375: result: yes | configure:19384: checking if size of long int = size of long long | configure:19421: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:19421: $? = 0 | configure:19421: ./conftest | configure:19421: $? = 0 | configure:19424: result: yes | configure:19435: checking if long is 32 bits | configure:19472: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:19472: $? = 0 | configure:19472: ./conftest | configure:19472: $? = 1 | configure: program exited with status 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "disabled" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define USE_LIBDL 1 | | #define HAVE_DLADDR 1 | | #define COB_COMPUTED_GOTO 1 | | #define COB_LI_IS_LL 1 | | /* end confdefs.h. */ | | | | int | | main (void) | | { | | | | if (sizeof (long) == 4) | | return 0; | | return 1; | | | | ; | | return 0; | | } | configure:19478: result: no | configure:19490: checking if pointer is longer than 32 bits | configure:19533: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:19533: $? = 0 | configure:19533: ./conftest | configure:19533: $? = 0 | configure:19538: result: yes | configure:19566: checking for aligned attribute | configure:19579: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 conftest.c >&5 | configure:19579: $? = 0 | configure:19582: result: yes | configure:19603: checking whether NLS is requested | configure:19613: result: yes | configure:19653: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:19686: result: /usr/bin/msgfmt | configure:19695: checking for gmsgfmt | configure:19718: found /usr/bin/gmsgfmt | configure:19731: result: /usr/bin/gmsgfmt | configure:19776: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:19809: result: /usr/bin/xgettext | configure:19854: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:19886: result: /usr/bin/msgmerge | configure:20482: checking for CFPreferencesCopyAppValue | configure:20511: result: no | configure:20518: checking for CFLocaleCopyPreferredLanguages | configure:20537: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:105:10: fatal error: CoreFoundation/CFLocale.h: No such file or directory | 105 | #include | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:20537: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.1.2" | | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.1.2" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | #define HAVE_STDIO_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_WCHAR_H 1 | | #define STDC_HEADERS 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define __EXTENSIONS__ 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define YYTEXT_POINTER 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SIGNAL_H 1 | | #define HAVE_FCNTL_H 1 | | #define HAVE_MALLOC_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_STDDEF_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_DLFCN_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define COB_KEYWORD_INLINE __inline | | #define HAVE_VPRINTF 1 | | #define HAVE_MEMMOVE 1 | | #define HAVE_MEMSET 1 | | #define HAVE_SETLOCALE 1 | | #define HAVE_FCNTL 1 | | #define HAVE_STRERROR 1 | | #define HAVE_STRCASECMP 1 | | #define HAVE_STRCHR 1 | | #define HAVE_STRRCHR 1 | | #define HAVE_STRDUP 1 | | #define HAVE_STRSTR 1 | | #define HAVE_STRTOL 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_LOCALECONV 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_POPEN 1 | | #define HAVE_RAISE 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_SETENV 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_FLOCKFILE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define WITH_JSON "disabled" | | #define WITH_VARSEQ 0 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_FMEMOPEN 1 | | #define HAVE_DECL_FDATASYNC 1 | | #define HAVE_DECL_FMEMOPEN 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define USE_LIBDL 1 | | #define HAVE_DLADDR 1 | | #define COB_COMPUTED_GOTO 1 | | #define COB_LI_IS_LL 1 | | #define COB_64_BIT_POINTER 1 | | #define HAVE_ATTRIBUTE_ALIGNED 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | CFLocaleCopyPreferredLanguages(); | | ; | | return 0; | | } | configure:20547: result: no | configure:20597: checking for GNU gettext in libc | configure:20627: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:20627: $? = 0 | configure:20637: result: yes | configure:21506: checking whether to use NLS | configure:21508: result: yes | configure:21511: checking where the gettext function comes from | configure:21522: result: libc | configure:21592: checking for nl_langinfo and CODESET | configure:21609: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:21609: $? = 0 | configure:21619: result: yes | configure:21672: checking for debug option -ggdb3 | configure:21685: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -ggdb3 -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:21685: $? = 0 | configure:21687: result: yes | configure:21727: checking for debug option -fasynchronous-unwind-tables | configure:21740: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -fasynchronous-unwind-tables -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 conftest.c >&5 | configure:21740: $? = 0 | configure:21742: result: yes | configure:21917: checking for gcc pointer sign option | configure:21930: x86_64-pc-linux-gnu-gcc -c -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -Wno-pointer-sign conftest.c >&5 | configure:21930: $? = 0 | configure:21932: result: yes | configure:22099: checking for ld bind now option | configure:22112: x86_64-pc-linux-gnu-gcc -o conftest -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,-z,relro,-z,now,-O1 conftest.c >&5 | configure:22112: $? = 0 | configure:22114: result: yes | configure:22495: checking that generated files are newer than configure | configure:22501: result: done | configure:22545: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.1.2, which was | generated by GNU Autoconf 2.71. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on localhost | | config.status:1349: creating Makefile | config.status:1349: creating libcob/Makefile | config.status:1349: creating lib/Makefile | config.status:1349: creating cobc/Makefile | config.status:1349: creating bin/Makefile | config.status:1349: creating po/Makefile.in | config.status:1349: creating doc/Makefile | config.status:1349: creating config/Makefile | config.status:1349: creating copy/Makefile | config.status:1349: creating tests/Makefile | config.status:1349: creating tests/cobol85/Makefile | config.status:1349: creating extras/Makefile | config.status:1349: creating bin/cob-config | config.status:1349: creating pre-inst-env | config.status:1349: creating tests/atlocal | config.status:1349: creating tests/run_prog_manual.sh | config.status:1349: creating config.h | config.status:1578: executing tests/atconfig commands | config.status:1578: executing depfiles commands | config.status:1578: executing libtool commands | config.status:1578: executing po-directories commands | config.status:1578: executing chmod commands | configure:25084: GnuCOBOL Configuration: | configure:25086: CC x86_64-pc-linux-gnu-gcc | configure:25088: CFLAGS -O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k | configure:25090: LDFLAGS -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,-z,relro,-z,now,-O1 | configure:25096: COB_CC x86_64-pc-linux-gnu-gcc | configure:25098: COB_CFLAGS -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -Wno-unused -fsigned-char -Wno-pointer-sign | configure:25100: COB_LDFLAGS -Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 | configure:25102: COB_DEBUG_FLAGS -ggdb3 -fasynchronous-unwind-tables | configure:25104: COB_LIBS -L/usr/lib64 -lcob -lm | configure:25106: COB_CONFIG_DIR /usr/share/gnucobol/config | configure:25108: COB_COPY_DIR /usr/share/gnucobol/copy | configure:25110: COB_LIBRARY_PATH /usr/lib64/gnucobol | configure:25112: COB_OBJECT_EXT o | configure:25114: COB_MODULE_EXT so | configure:25116: COB_EXE_EXT | configure:25118: COB_SHARED_OPT -shared | configure:25120: COB_PIC_FLAGS -fPIC -DPIC | configure:25122: COB_EXPORT_DYN -Wl,--export-dynamic | configure:25125: COB_STRIP_CMD x86_64-pc-linux-gnu-strip --strip-unneeded | configure:25129: Dynamic loading: System | configure:25135: Use gettext for international messages: yes | configure:25137: Use fcntl for file locking: yes | configure:25139: Use math multiple precision library: gmp | configure:25151: Use curses library for screen I/O: ncursesw | configure:25183: INDEXED I/O (no handler configured): NO | configure:25193: XML I/O (disabled): NO | configure:25207: JSON I/O (disabled): NO | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_const=yes | ac_cv_c_undeclared_builtin_options='none needed' | ac_cv_env_CC_set= | ac_cv_env_CC_value= | ac_cv_env_CFLAGS_set=set | ac_cv_env_CFLAGS_value='-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0' | ac_cv_env_CJSON_CFLAGS_set= | ac_cv_env_CJSON_CFLAGS_value= | ac_cv_env_CJSON_LIBS_set= | ac_cv_env_CJSON_LIBS_value= | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_DIFF_FLAGS_set= | ac_cv_env_DIFF_FLAGS_value= | ac_cv_env_GMP_CFLAGS_set= | ac_cv_env_GMP_CFLAGS_value= | ac_cv_env_GMP_LIBS_set= | ac_cv_env_GMP_LIBS_value= | ac_cv_env_JSON_C_CFLAGS_set= | ac_cv_env_JSON_C_CFLAGS_value= | ac_cv_env_JSON_C_LIBS_set= | ac_cv_env_JSON_C_LIBS_value= | ac_cv_env_LDFLAGS_set=set | ac_cv_env_LDFLAGS_value='-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0' | ac_cv_env_LIBCOB_CPPFLAGS_set= | ac_cv_env_LIBCOB_CPPFLAGS_value= | ac_cv_env_LIBCOB_LIBS_set= | ac_cv_env_LIBCOB_LIBS_value= | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_LT_SYS_LIBRARY_PATH_set= | ac_cv_env_LT_SYS_LIBRARY_PATH_value= | ac_cv_env_MPIR_CFLAGS_set= | ac_cv_env_MPIR_CFLAGS_value= | ac_cv_env_MPIR_LIBS_set= | ac_cv_env_MPIR_LIBS_value= | ac_cv_env_PKG_CONFIG_LIBDIR_set= | ac_cv_env_PKG_CONFIG_LIBDIR_value= | ac_cv_env_PKG_CONFIG_PATH_set= | ac_cv_env_PKG_CONFIG_PATH_value= | ac_cv_env_PKG_CONFIG_set= | ac_cv_env_PKG_CONFIG_value= | ac_cv_env_PROGRAMS_LIBS_set= | ac_cv_env_PROGRAMS_LIBS_value= | ac_cv_env_XML2_CFLAGS_set= | ac_cv_env_XML2_CFLAGS_value= | ac_cv_env_XML2_LIBS_set= | ac_cv_env_XML2_LIBS_value= | ac_cv_env_YACC_set= | ac_cv_env_YACC_value= | ac_cv_env_YFLAGS_set= | ac_cv_env_YFLAGS_value= | ac_cv_env_build_alias_set=set | ac_cv_env_build_alias_value=x86_64-pc-linux-gnu | ac_cv_env_host_alias_set=set | ac_cv_env_host_alias_value=x86_64-pc-linux-gnu | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_func_canonicalize_file_name=yes | ac_cv_func_dlopen=yes | ac_cv_func_fcntl=yes | ac_cv_func_fdatasync=yes | ac_cv_func_flockfile=yes | ac_cv_func_fmemopen=yes | ac_cv_func_getexecname=no | ac_cv_func_gettimeofday=yes | ac_cv_func_localeconv=yes | ac_cv_func_memmove=yes | ac_cv_func_memset=yes | ac_cv_func_popen=yes | ac_cv_func_raise=yes | ac_cv_func_readlink=yes | ac_cv_func_realpath=yes | ac_cv_func_setenv=yes | ac_cv_func_setlocale=yes | ac_cv_func_shl_load=no | ac_cv_func_sigaction=yes | ac_cv_func_strcasecmp=yes | ac_cv_func_strchr=yes | ac_cv_func_strcoll=yes | ac_cv_func_strdup=yes | ac_cv_func_strerror=yes | ac_cv_func_strrchr=yes | ac_cv_func_strstr=yes | ac_cv_func_strtol=yes | ac_cv_func_vprintf=yes | ac_cv_have_decl_fdatasync=yes | ac_cv_have_decl_fmemopen=yes | ac_cv_header_dlfcn_h=yes | ac_cv_header_fcntl_h=yes | ac_cv_header_gmp_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_locale_h=yes | ac_cv_header_malloc_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_ncursesw_ncurses_h=yes | ac_cv_header_signal_h=yes | ac_cv_header_stddef_h=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_h=yes | ac_cv_header_stdlib_h=yes | ac_cv_header_string_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_time_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_sys_wait_h=yes | ac_cv_header_unistd_h=yes | ac_cv_header_wchar_h=yes | ac_cv_host=x86_64-pc-linux-gnu | ac_cv_lib_c_dladdr=yes | ac_cv_lib_c_dlopen=yes | ac_cv_lib_dld_shl_load=no | ac_cv_lib_gmp___gmp_get_memory_functions=yes | ac_cv_lib_lex='none needed' | ac_cv_lib_ncursesw_initscr=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_FGREP='/bin/grep -F' | ac_cv_path_GMSGFMT=/usr/bin/gmsgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/bin/msgmerge | ac_cv_path_PKG_CONFIG=/usr/bin/x86_64-pc-linux-gnu-pkg-config | ac_cv_path_SED=/bin/sed | ac_cv_path_XGETTEXT=/usr/bin/xgettext | ac_cv_path_install='/usr/lib/portage/python3.10/ebuild-helpers/xattr/install -c' | ac_cv_path_lt_DD=/bin/dd | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AR=x86_64-pc-linux-gnu-ar | ac_cv_prog_AWK=gawk | ac_cv_prog_CC=x86_64-pc-linux-gnu-gcc | ac_cv_prog_CPP='x86_64-pc-linux-gnu-gcc -E' | ac_cv_prog_LEX=flex | ac_cv_prog_OBJDUMP=x86_64-pc-linux-gnu-objdump | ac_cv_prog_RANLIB=x86_64-pc-linux-gnu-ranlib | ac_cv_prog_STRIP=x86_64-pc-linux-gnu-strip | ac_cv_prog_YACC='bison -y' | ac_cv_prog_ac_ct_FILECMD=file | ac_cv_prog_cc_c11= | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_configured_make=make | ac_cv_prog_lex_root=lex.yy | ac_cv_prog_lex_yytext_pointer=yes | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_search_yywrap=-lfl | ac_cv_should_define__xopen_source=no | ac_cv_struct_tm=time.h | ac_cv_type_sig_atomic_t=yes | ac_cv_type_size_t=yes | acl_cv_hardcode_direct=no | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | acl_cv_hardcode_libdir_separator= | acl_cv_hardcode_minus_L=no | acl_cv_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD='/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64' | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=none | am_cv_langinfo_codeset=yes | am_cv_make_support_nested_variables=yes | am_cv_prog_cc_c_o=yes | gt_cv_func_CFLocaleCopyCurrent=no | gt_cv_func_CFLocaleCopyPreferredLanguages=no | gt_cv_func_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext1_libc=yes | lt_cv_ar_at_file=@ | lt_cv_archive_cmds_need_lc=no | lt_cv_deplibs_check_method=pass_all | lt_cv_dlopen=dlopen | lt_cv_dlopen_libs= | lt_cv_dlopen_self=yes | lt_cv_dlopen_self_static=no | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_nm_interface='BSD nm' | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/x86_64-pc-linux-gnu/bin/ld | lt_cv_path_NM='/usr/bin/x86_64-pc-linux-gnu-nm -B' | lt_cv_path_mainfest_tool=no | lt_cv_prog_compiler_c_o=yes | lt_cv_prog_compiler_c_o_RC=yes | lt_cv_prog_compiler_pic='-fPIC -DPIC' | lt_cv_prog_compiler_pic_works=yes | lt_cv_prog_compiler_rtti_exceptions=no | lt_cv_prog_compiler_static_works=yes | lt_cv_prog_gnu_ld=yes | lt_cv_sharedlib_from_linklib_cmd='printf %s\n' | lt_cv_shlibpath_overrides_runpath=yes | lt_cv_sys_global_symbol_pipe='/bin/sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | /bin/sed '\''/ __gnu_lto/d'\''' | lt_cv_sys_global_symbol_to_c_name_address='/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='/bin/sed -n -e '\''s/^: \(.*\) .*$/ {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/ {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/ {"lib\1", (void *) \&\1},/p'\''' | lt_cv_sys_global_symbol_to_cdecl='/bin/sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\''' | lt_cv_sys_global_symbol_to_import= | lt_cv_sys_max_cmd_len=1572864 | lt_cv_to_host_file_cmd=func_convert_file_noop | lt_cv_to_tool_file_cmd=func_convert_file_noop | lt_cv_truncate_bin='/bin/dd bs=4096 count=1' | pkg_cv_GMP_CFLAGS= | pkg_cv_GMP_LIBS='-lgmp ' | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} '\''/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/missing'\'' aclocal-1.16' | AMDEPBACKSLASH='' | AMDEP_FALSE='' | AMDEP_TRUE='#' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='1' | AM_V='$(V)' | AR='x86_64-pc-linux-gnu-ar' | AS='as' | AUTOCONF='${SHELL} '\''/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/missing'\'' autoconf' | AUTOHEADER='${SHELL} '\''/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/missing'\'' autoheader' | AUTOMAKE='${SHELL} '\''/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/missing'\'' automake-1.16' | AWK='gawk' | CC='x86_64-pc-linux-gnu-gcc' | CCDEPMODE='depmode=none' | CFLAGS='-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k' | CJSON_CFLAGS='' | CJSON_LIBS='' | COB_BIGENDIAN='no' | COB_CC='x86_64-pc-linux-gnu-gcc' | COB_CFLAGS=' -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -Wno-unused -fsigned-char -Wno-pointer-sign' | COB_CONFIG_DIR='/usr/share/gnucobol/config' | COB_COPY_DIR='/usr/share/gnucobol/copy' | COB_EXE_EXT='' | COB_FIX_LIBTOOL='' | COB_HAS_64_BIT_POINTER='yes' | COB_HAS_CURSES='yes' | COB_HAS_ISAM='no' | COB_HAS_JSON='no' | COB_HAS_XML2='no' | COB_LDFLAGS='-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0' | COB_LIBRARY_PATH='/usr/lib64/gnucobol' | COB_LIBS='-L/usr/lib64 -lcob -lm' | COB_MAKE_IX_FALSE='' | COB_MAKE_IX_TRUE='#' | COB_MAKE_RUN_BINARIES_FALSE='#' | COB_MAKE_RUN_BINARIES_TRUE='' | COB_MODULE_EXT='so' | COB_OBJECT_EXT='o' | COB_PATCH_LEVEL='0' | CODE_COVERAGE_CFLAGS='' | CODE_COVERAGE_CPPFLAGS='' | CODE_COVERAGE_CXXFLAGS='' | CODE_COVERAGE_ENABLED='no' | CODE_COVERAGE_ENABLED_FALSE='' | CODE_COVERAGE_ENABLED_TRUE='#' | CODE_COVERAGE_LIBS='' | CPP='x86_64-pc-linux-gnu-gcc -E' | CPPFLAGS='' | CSCOPE='cscope' | CTAGS='ctags' | CYGPATH_W='echo' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | DIFF_FLAGS='--strip-trailing-cr' | DLLTOOL='false' | DSYMUTIL='' | DUMPBIN='' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | ETAGS='etags' | EXEEXT='' | FGREP='/bin/grep -F' | FILECMD='file' | GCOV='' | GENHTML='' | GETTEXT_MACRO_VERSION='0.20' | GMP_CFLAGS='' | GMP_LIBS='-lgmp ' | GMSGFMT='/usr/bin/gmsgfmt' | GMSGFMT_015='/usr/bin/gmsgfmt' | GREP='/bin/grep' | HELP2MAN='${SHELL} '\''/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/missing'\'' help2man' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | INTLLIBS='' | INTL_MACOSX_LIBS='' | JSON_C_CFLAGS='' | JSON_C_LIBS='' | LCOV='' | LD='/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64' | LDFLAGS='-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,-z,relro,-z,now,-O1' | LEX='flex' | LEXLIB='-lfl ' | LEX_OUTPUT_ROOT='lex.yy' | LIBCOB_CPPFLAGS='' | LIBCOB_LIBS='-lm -lgmp -lncursesw' | LIBICONV='-liconv' | LIBINTL='' | LIBOBJS='' | LIBS='' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LIPO='' | LN_S='ln -s' | LOCAL_CJSON_FALSE='' | LOCAL_CJSON_TRUE='#' | LTLIBICONV='-liconv' | LTLIBINTL='' | LTLIBOBJS='' | LT_SYS_LIBRARY_PATH='' | MAKE='make' | MAKEINFO='${SHELL} '\''/var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/missing'\'' makeinfo' | MAKE_HAS_PREREQ_ONLY_FALSE='#' | MAKE_HAS_PREREQ_ONLY_TRUE='' | MANIFEST_TOOL=':' | MKDIR_P='/bin/mkdir -p' | MPIR_CFLAGS='' | MPIR_LIBS='' | MSGFMT='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | MSGMERGE_FOR_MSGFMT_OPTION='--for-msgfmt' | NM='/usr/bin/x86_64-pc-linux-gnu-nm -B' | NMEDIT='' | OBJDUMP='x86_64-pc-linux-gnu-objdump' | OBJEXT='o' | OTOOL64='' | OTOOL='' | PACKAGE='gnucobol' | PACKAGE_BUGREPORT='bug-gnucobol@gnu.org' | PACKAGE_NAME='GnuCOBOL' | PACKAGE_STRING='GnuCOBOL 3.1.2' | PACKAGE_TARNAME='gnucobol' | PACKAGE_URL='https://www.gnu.org/software/gnucobol/' | PACKAGE_VERSION='3.1.2' | PATH_SEPARATOR=':' | PKG_CONFIG='/usr/bin/x86_64-pc-linux-gnu-pkg-config' | PKG_CONFIG_LIBDIR='' | PKG_CONFIG_PATH='' | POSUB='po' | PROGRAMS_LIBS='' | RANLIB='x86_64-pc-linux-gnu-ranlib' | RC='' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/sh' | STRIP='x86_64-pc-linux-gnu-strip' | USE_NLS='yes' | VERSION='3.1.2' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS='' | XML2_CFLAGS='' | XML2_LIBS='' | YACC='bison -y' | YFLAGS='-Wno-yacc' | ac_ct_AR='' | ac_ct_CC='' | ac_ct_DUMPBIN='' | am__EXEEXT_FALSE='' | am__EXEEXT_TRUE='#' | am__fastdepCC_FALSE='' | am__fastdepCC_TRUE='#' | am__include='include' | am__isrc='' | am__leading_dot='.' | am__nodep='' | am__quote='' | am__tar='$${TAR-tar} chof - "$$tardir"' | am__untar='$${TAR-tar} xf -' | bindir='${exec_prefix}/bin' | build='x86_64-pc-linux-gnu' | build_alias='x86_64-pc-linux-gnu' | build_cpu='x86_64' | build_os='linux-gnu' | build_vendor='pc' | configured_make='make' | datadir='/usr/share' | datarootdir='/usr/share' | docdir='/usr/share/doc/gnucobol-3.1.2' | dvidir='${docdir}' | exec_prefix='${prefix}' | host='x86_64-pc-linux-gnu' | host_alias='x86_64-pc-linux-gnu' | host_cpu='x86_64' | host_os='linux-gnu' | host_vendor='pc' | htmldir='/usr/share/doc/gnucobol-3.1.2/html' | ifGNUmake='' | ifnGNUmake='' | includedir='${prefix}/include' | infodir='/usr/share/info' | install_sh='${SHELL} /var/tmp/portage/dev-lang/gnucobol-3.1.2/work/gnucobol-3.1.2/build_aux/install-sh' | libdir='/usr/lib64' | libexecdir='${exec_prefix}/libexec' | localedir='${datarootdir}/locale' | localstatedir='/var/lib' | mandir='/usr/share/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='/etc' | target_alias='' | xml2_config_found='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GnuCOBOL" | #define PACKAGE_TARNAME "gnucobol" | #define PACKAGE_VERSION "3.1.2" | #define PACKAGE_STRING "GnuCOBOL 3.1.2" | #define PACKAGE_BUGREPORT "bug-gnucobol@gnu.org" | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | #define PACKAGE "gnucobol" | #define VERSION "3.1.2" | #define PATCH_LEVEL 0 | #define MAX_CALL_FIELD_PARAMS 192 | #define HAVE_STDIO_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_WCHAR_H 1 | #define STDC_HEADERS 1 | #define _ALL_SOURCE 1 | #define _DARWIN_C_SOURCE 1 | #define _GNU_SOURCE 1 | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | #define _NETBSD_SOURCE 1 | #define _OPENBSD_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | #define __STDC_WANT_LIB_EXT2__ 1 | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | #define _TANDEM_SOURCE 1 | #define __EXTENSIONS__ 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define YYTEXT_POINTER 1 | #define HAVE_STDINT_H 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SIGNAL_H 1 | #define HAVE_FCNTL_H 1 | #define HAVE_MALLOC_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_STDDEF_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_DLFCN_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_SIG_ATOMIC_T 1 | #define COB_KEYWORD_INLINE __inline | #define HAVE_VPRINTF 1 | #define HAVE_MEMMOVE 1 | #define HAVE_MEMSET 1 | #define HAVE_SETLOCALE 1 | #define HAVE_FCNTL 1 | #define HAVE_STRERROR 1 | #define HAVE_STRCASECMP 1 | #define HAVE_STRCHR 1 | #define HAVE_STRRCHR 1 | #define HAVE_STRDUP 1 | #define HAVE_STRSTR 1 | #define HAVE_STRTOL 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_LOCALECONV 1 | #define HAVE_CANONICALIZE_FILE_NAME 1 | #define HAVE_POPEN 1 | #define HAVE_RAISE 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_SETENV 1 | #define HAVE_STRCOLL 1 | #define HAVE_FLOCKFILE 1 | #define HAVE_TIMEZONE 1 | #define HAVE_DESIGNATED_INITS 1 | #define HAVE_GMP_H 1 | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | #define WITH_JSON "disabled" | #define WITH_VARSEQ 0 | #define HAVE_NANO_SLEEP 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_ISFINITE 1 | #define HAVE_FDATASYNC 1 | #define HAVE_SIGACTION 1 | #define HAVE_FMEMOPEN 1 | #define HAVE_DECL_FDATASYNC 1 | #define HAVE_DECL_FMEMOPEN 1 | #define HAVE_LIBNCURSESW 1 | #define HAVE_NCURSESW_NCURSES_H 1 | #define WITH_CURSES "ncursesw" | #define HAVE_CURSES_FREEALL 1 | #define HAVE_USE_LEGACY_CODING 1 | #define HAVE_MOUSEINTERVAL 1 | #define HAVE_HAS_MOUSE 1 | #define USE_LIBDL 1 | #define HAVE_DLADDR 1 | #define COB_COMPUTED_GOTO 1 | #define COB_LI_IS_LL 1 | #define COB_64_BIT_POINTER 1 | #define HAVE_ATTRIBUTE_ALIGNED 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_LANGINFO_CODESET 1 | #define COB_CC "x86_64-pc-linux-gnu-gcc" | #define COB_CFLAGS " -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -Wno-unused -fsigned-char -Wno-pointer-sign" | #define COB_LDFLAGS "-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0" | #define COB_LIBS "-L/usr/lib64 -lcob -lm" | #define COB_PIC_FLAGS "-fPIC -DPIC" | #define COB_DEBUG_FLAGS "-ggdb3 -fasynchronous-unwind-tables" | #define COB_EXPORT_DYN "-Wl,--export-dynamic" | #define COB_SHARED_OPT "-shared" | #define COB_MODULE_EXT "so" | #define COB_OBJECT_EXT "o" | #define COB_EXE_EXT "" | #define COB_LIBRARY_PATH "/usr/lib64/gnucobol" | #define COB_STRIP_CMD "x86_64-pc-linux-gnu-strip --strip-unneeded" | #define COB_CONFIG_DIR "/usr/share/gnucobol/config" | #define COB_COPY_DIR "/usr/share/gnucobol/copy" | #define COBCRUN_NAME "" | #define COB_BLD_CC "x86_64-pc-linux-gnu-gcc" | #define COB_BLD_CFLAGS "-O2 -pipe -march=x86-64 -frecord-gcc-switches -fno-diagnostics-color -fmessage-length=0 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k" | #define COB_BLD_CPPFLAGS "" | #define COB_BLD_LD "/usr/x86_64-pc-linux-gnu/bin/ld -m elf_x86_64" | #define COB_BLD_LDFLAGS "-Wl,-O1 -Wl,--as-needed -Wl,--defsym=__gentoo_check_ldflags__=0 -Wl,-z,relro,-z,now,-O1" | #define COB_BLD_BUILD "x86_64-pc-linux-gnu" | | configure: exit 0