## ------------------------------------------ ## ## 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 = vivobookasuslaptopx409fa uname -m = x86_64 uname -r = 5.10.70-1-MANJARO uname -s = Linux uname -v = #1 SMP PREEMPT Thu Sep 30 15:29:01 UTC 2021 /usr/bin/uname -p = unknown /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: /home/xebuzer0/Descargas/gnucobol-3.1.2/tests PATH: /home/xebuzer0/Descargas/gnucobol-3.1.2/cobc PATH: /home/xebuzer0/Descargas/gnucobol-3.1.2/bin PATH: /home/xebuzer0/Descargas/gnucobol-3.1.2/libcob/.libs PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/local/sbin PATH: /usr/lib/jvm/default/bin PATH: /usr/bin/site_perl PATH: /usr/bin/vendor_perl PATH: /usr/bin/core_perl PATH: /opt/intelFPGA/20.1/quartus/bin PATH: /opt/intelFPGA/20.1/quartus/sopc_builder/bin PATH: /var/lib/snapd/snap/bin testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2012 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/home/xebuzer0/Descargas/gnucobol-3.1.2/tests' | at_srcdir='.' | abs_srcdir='/home/xebuzer0/Descargas/gnucobol-3.1.2/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/xebuzer0/Descargas/gnucobol-3.1.2' | at_top_build_prefix='../' | abs_top_builddir='/home/xebuzer0/Descargas/gnucobol-3.1.2' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | 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=/usr/bin/grep | SED=/usr/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/local" | 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} -I/usr/local/include -Wno-pointer-sign" | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -L${exec_prefix}/lib -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="db" | COB_HAS_XML2="yes" | COB_HAS_JSON="json-c" | 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: /home/xebuzer0/Descargas/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 Oct 22 2021 16:44:05 Packaged Dec 23 2020 12:04:58 UTC C version (Tiny C) 927 ./testsuite.at:26: /home/xebuzer0/Descargas/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 Oct 22 2021 16:44:05 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 Oct 22 2021 16:44:03 Packaged Dec 23 2020 12:04:58 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Fri Oct 22 17:10:40 CDT 2021 1. compiler help and information (used_binaries.at:27): ok (0m0.365s 0m0.083s) 2. compiler warnings (used_binaries.at:50): ok (0m0.697s 0m0.117s) 3. compiler outputs (general) (used_binaries.at:178): ok (0m0.302s 0m0.084s) 4. compiler outputs (file specified) (used_binaries.at:218): ok (0m0.359s 0m0.100s) 5. compiler outputs (path specified) (used_binaries.at:263): ok (0m0.287s 0m0.077s) 7. source file not found (used_binaries.at:327): ok (0m0.017s 0m0.005s) 8. temporary path invalid (used_binaries.at:337): ok (0m0.132s 0m0.029s) 9. use of full path for cobc (used_binaries.at:372): ok (0m0.065s 0m0.015s) 10. C Compiler optimizations (used_binaries.at:390): ok (0m0.477s 0m0.117s) 11. invalid cobc option (used_binaries.at:427): ok (0m0.033s 0m0.012s) 12. cobcrun help and information (used_binaries.at:447): ok (0m0.076s 0m0.047s) 13. cobcrun validation (used_binaries.at:462): ok (0m0.133s 0m0.022s) 14. cobcrun -M DSO entry argument (used_binaries.at:502): ok (0m0.132s 0m0.026s) 15. cobcrun -M directory/ default (used_binaries.at:562): ok (0m0.133s 0m0.026s) 16. cobcrun -M directory/dso alternate (used_binaries.at:601): ok (0m0.126s 0m0.027s) 17. cobcrun -M DSO entry multiple arguments (used_binaries.at:652): ok (0m0.114s 0m0.029s) 18. cobcrun error messages (used_binaries.at:698): ok (0m0.069s 0m0.016s) 19. run job after compilation (used_binaries.at:721): ok (0m0.150s 0m0.019s) 20. run job after compilation (path specified) (used_binaries.at:740): ok (0m0.156s 0m0.020s) 21. run job with optional arguments (used_binaries.at:760): ok (0m0.197s 0m0.051s) 22. compile from stdin (used_binaries.at:782): ok (0m0.139s 0m0.028s) 23. run job after compilation from stdin (used_binaries.at:812): ok (0m0.143s 0m0.030s) 24. cobc with standard configuration file (configuration.at:22): ok (0m0.038s 0m0.011s) 25. cobc dialect features for all -std (configuration.at:43): ok (0m0.763s 0m0.129s) 26. cobc with configuration file via -std (configuration.at:101): ok (0m0.024s 0m0.010s) 27. cobc with standard configuration file via -conf (configuration.at:122): ok (0m0.028s 0m0.005s) 28. cobc with own configuration file via -conf (configuration.at:143): ok (0m0.081s 0m0.017s) 29. cobc configuration: recursive include (configuration.at:172): ok (0m0.021s 0m0.005s) 30. cobc with -std and -conf (configuration.at:210): ok (0m0.073s 0m0.007s) 31. cobc compiler flag on command line (configuration.at:237): ok (0m0.043s 0m0.004s) 32. cobc compiler flag on command line (priority) (configuration.at:256): ok (0m0.126s 0m0.022s) 33. cobc configuration: entries (configuration.at:289): ok (0m0.126s 0m0.034s) 34. cobc configuration: conf missing (configuration.at:336): ok (0m0.057s 0m0.011s) 35. cobc configuration: conf optional (configuration.at:364): ok (0m0.085s 0m0.016s) 36. cobc configuration: incomplete (configuration.at:400): ok (0m0.018s 0m0.006s) 37. runtime configuration (configuration.at:524): ok (0m0.043s 0m0.028s) 38. runtime configuration file (configuration.at:543): ok (0m0.123s 0m0.056s) 39. runtime configuration: recursive include (configuration.at:586): ok (0m0.016s 0m0.008s) 40. runtime configuration: environment priority (configuration.at:615): ok (0m0.017s 0m0.009s) 41. runtime configuration: entries (configuration.at:628): ok (0m0.014s 0m0.011s) 42. runtime configuration: conf missing (configuration.at:709): ok (0m0.048s 0m0.019s) 43. runtime configuration: conf optional (configuration.at:738): ok (0m0.021s 0m0.001s) 44. runtime configuration: strings and environment (configuration.at:751): ok (0m0.038s 0m0.013s) 45. validation of COB_CONFIG_DIR (configuration.at:765): ok (0m0.022s 0m0.003s) 46. COPY: IN / OF / -I (syn_copy.at:21): ok (0m0.304s 0m0.035s) 48. COPY: extension (syn_copy.at:168): ok (0m0.236s 0m0.039s) 49. COPY: within comment (syn_copy.at:255): ok (0m0.077s 0m0.014s) 50. COPY: file not found (syn_copy.at:284): ok (0m0.181s 0m0.017s) 51. COPY: recursive (syn_copy.at:340): ok (0m0.050s 0m0.003s) 52. COPY: replacement order (syn_copy.at:380): ok (0m0.069s 0m0.013s) 53. COPY: separators (syn_copy.at:407): ok (0m0.068s 0m0.013s) 54. COPY: partial replacement (syn_copy.at:436): ok (0m0.053s 0m0.026s) 55. COPY: LEADING replacement (syn_copy.at:466): ok (0m0.068s 0m0.012s) 56. COPY: TRAILING replacement (syn_copy.at:496): ok (0m0.066s 0m0.016s) 57. COPY: recursive replacement (syn_copy.at:526): ok (0m0.068s 0m0.015s) 58. COPY: fixed/free format (syn_copy.at:556): ok (0m0.068s 0m0.014s) 59. Invalid source name (syn_definition.at:25): ok (0m0.021s 0m0.002s) 60. Invalid PROGRAM-ID (syn_definition.at:37): ok (0m0.045s 0m0.004s) 61. Invalid PROGRAM-ID type clause (1) (syn_definition.at:54): ok (0m0.044s 0m0.009s) 62. invalid PROGRAM-ID type clause (2) (syn_definition.at:71): ok (0m0.043s 0m0.005s) 63. INITIAL / RECURSIVE before COMMON (syn_definition.at:88): ok (0m0.042s 0m0.005s) 64. Undefined data name (syn_definition.at:120): ok (0m0.049s 0m0.002s) 65. Undefined group name (syn_definition.at:139): ok (0m0.048s 0m0.003s) 66. Undefined data name in group (syn_definition.at:161): ok (0m0.045s 0m0.007s) 67. Reference not a group name (syn_definition.at:185): ok (0m0.041s 0m0.010s) 68. Incomplete 01 definition (syn_definition.at:207): ok (0m0.033s 0m0.014s) 69. error handling in conditions (syn_definition.at:225): ok (0m0.043s 0m0.008s) 70. Same labels in different sections (syn_definition.at:298): ok (0m0.046s 0m0.004s) 71. Redefinition of 01 items (syn_definition.at:322): ok (0m0.203s 0m0.034s) 72. Redefinition of 01 and 02 items (syn_definition.at:351): ok (0m0.045s 0m0.003s) 73. Redefinition of 02 items (syn_definition.at:371): ok (0m0.047s 0m0.001s) 74. Redefinition of 77 items (syn_definition.at:392): ok (0m0.037s 0m0.010s) 75. Redefinition of 01 and 77 items (syn_definition.at:412): ok (0m0.035s 0m0.013s) 76. Redefinition of 88 items (syn_definition.at:432): ok (0m0.041s 0m0.007s) 77. Redefinition of program-name by other programs (syn_definition.at:453): ok (0m0.077s 0m0.018s) 78. Redefinition of program-name within program (syn_definition.at:533): ok (0m0.085s 0m0.010s) 79. Redefinition of function-prototype name (syn_definition.at:563): ok (0m0.043s 0m0.007s) 80. PROCEDURE DIVISION RETURNING OMITTED: main (syn_definition.at:588): ok (0m0.087s 0m0.024s) 81. PROCEDURE DIVISION RETURNING OMITTED: FUNCTION (syn_definition.at:608): ok (0m0.043s 0m0.005s) 82. PROCEDURE DIVISION RETURNING item (syn_definition.at:627): ok (0m0.215s 0m0.027s) 83. Data item with same name as program-name (syn_definition.at:722): ok (0m0.033s 0m0.012s) 84. Ambiguous reference to 02 items (syn_definition.at:749): ok (0m0.037s 0m0.010s) 85. Ambiguous reference to 02 and 03 items (syn_definition.at:776): ok (0m0.041s 0m0.008s) 86. Ambiguous reference with qualification (syn_definition.at:802): ok (0m0.040s 0m0.010s) 87. Unique reference with ambiguous qualifiers (syn_definition.at:831): ok (0m0.035s 0m0.010s) 88. Undefined procedure name (syn_definition.at:867): ok (0m0.041s 0m0.006s) 89. Redefinition of section names (syn_definition.at:887): ok (0m0.044s 0m0.008s) 90. Redefinition of section and paragraph names (syn_definition.at:912): ok (0m0.043s 0m0.004s) 92. Redefinition of paragraph names (syn_definition.at:975): ok (0m0.042s 0m0.004s) 93. Ambiguous reference to paragraph name (syn_definition.at:1001): ok (0m0.048s 0m0.009s) 94. Non-matching level numbers (extension) (syn_definition.at:1027): ok (0m0.040s 0m0.007s) 95. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:1051): ok (0m0.046s 0m0.003s) 96. CALL BY VALUE national item (extension) (syn_definition.at:1073): ok (0m0.039s 0m0.008s) 97. CALL BY VALUE figurative constants (syn_definition.at:1096): ok (0m0.041s 0m0.006s) 98. Duplicate identification division header (syn_definition.at:1130): ok (0m0.045s 0m0.004s) 99. RETURNING in STOP RUN / GOBACK / EXIT PROGRAM (syn_definition.at:1145): ok (0m0.126s 0m0.034s) 100. Invalid ENVIRONMENT DIVISION order (syn_definition.at:1196): ok (0m0.041s 0m0.010s) 101. Function without END FUNCTION (syn_definition.at:1221): ok (0m0.042s 0m0.007s) 102. Nested programs without END PROGRAM (syn_definition.at:1235): ok (0m0.048s 0m0.003s) 103. Nested programs not in procedure division (syn_definition.at:1257): ok (0m0.044s 0m0.006s) 104. Screen section starts with 78-level (syn_definition.at:1276): ok (0m0.043s 0m0.005s) 105. Invalid PICTURE strings (syn_definition.at:1292): ok (0m0.068s 0m0.023s) 106. PICTURE string with control character (syn_definition.at:1552): ok (0m0.040s 0m0.008s) 107. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1570): ok (0m0.036s 0m0.012s) 108. PICTURE strings invalid with USAGE (syn_definition.at:1593): ok (0m0.041s 0m0.008s) 109. ALPHABET definition (syn_definition.at:1613): ok (0m0.040s 0m0.008s) 110. PROGRAM COLLATING SEQUENCE (syn_definition.at:1636): ok (0m0.128s 0m0.020s) 111. RENAMES item (syn_definition.at:1819): ok (0m0.024s 0m0.008s) 112. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1893): ok (0m0.067s 0m0.009s) 113. SAME AS clause (syn_definition.at:1919): ok (0m0.110s 0m0.022s) 114. TYPEDEF clause (syn_definition.at:1983): ok (0m0.262s 0m0.053s) 116. APPLY COMMIT clause (syn_definition.at:2272): ok (0m0.043s 0m0.009s) 117. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.048s 0m0.002s) 118. Subscript range check (syn_subscripts.at:50): ok (0m0.085s 0m0.013s) 119. Subscript bounds with OCCURS DEPENDING ON (syn_subscripts.at:98): ok (0m0.036s 0m0.010s) 120. Subscripted item requires OCCURS clause (syn_subscripts.at:125): ok (0m0.037s 0m0.013s) 121. Number of subscripts (syn_subscripts.at:151): ok (0m0.071s 0m0.023s) 122. SET SSRANGE syntax (syn_subscripts.at:195): ok (0m0.048s 0m0.003s) 123. OCCURS with level 01 and 77 (syn_occurs.at:29): ok (0m0.106s 0m0.015s) 124. OCCURS with level 66 (syn_occurs.at:84): ok (0m0.038s 0m0.008s) 125. OCCURS with level 78 (syn_occurs.at:103): ok (0m0.044s 0m0.003s) 126. OCCURS with level 88 (syn_occurs.at:121): ok (0m0.037s 0m0.010s) 127. OCCURS with variable-occurrence data item (syn_occurs.at:141): ok (0m0.158s 0m0.027s) 128. OCCURS data-items for INDEXED and KEY (syn_occurs.at:189): ok (0m0.039s 0m0.007s) 129. Nested OCCURS clause (syn_occurs.at:229): ok (0m0.041s 0m0.005s) 130. OCCURS DEPENDING with wrong size (syn_occurs.at:266): ok (0m0.039s 0m0.008s) 131. OCCURS DEPENDING followed by another field (syn_occurs.at:305): ok (0m0.080s 0m0.010s) 132. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:347): ok (0m0.106s 0m0.021s) 133. OCCURS INDEXED before KEY (syn_occurs.at:390): ok (0m0.084s 0m0.012s) 134. OCCURS size check (syn_occurs.at:428): ok (0m0.082s 0m0.012s) 135. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.086s 0m0.010s) 136. REDEFINES: level 02 by 01 (syn_redefines.at:53): ok (0m0.041s 0m0.006s) 137. REDEFINES: level 03 by 02 (syn_redefines.at:74): ok (0m0.042s 0m0.007s) 138. REDEFINES: level 66 (syn_redefines.at:96): ok (0m0.040s 0m0.007s) 139. REDEFINES: level 88 (syn_redefines.at:118): ok (0m0.045s 0m0.001s) 140. REDEFINES: lower level number (syn_redefines.at:147): ok (0m0.038s 0m0.010s) 141. REDEFINES: with OCCURS (syn_redefines.at:173): ok (0m0.033s 0m0.015s) 142. REDEFINES: with subscript (syn_redefines.at:194): ok (0m0.042s 0m0.007s) 143. REDEFINES: with variable occurrence (syn_redefines.at:216): ok (0m0.037s 0m0.015s) 144. REDEFINES: with qualification (syn_redefines.at:251): ok (0m0.040s 0m0.008s) 145. REDEFINES: multiple redefinition (syn_redefines.at:277): ok (0m0.099s 0m0.010s) 146. REDEFINES: size exceeds (syn_redefines.at:305): ok (0m0.043s 0m0.005s) 147. REDEFINES: with VALUE (syn_redefines.at:338): ok (0m0.101s 0m0.017s) 148. REDEFINES: with intervention (syn_redefines.at:370): ok (0m0.044s 0m0.003s) 149. REDEFINES: within REDEFINES (syn_redefines.at:399): ok (0m0.034s 0m0.010s) 150. REDEFINES: non-referenced ambiguous item (syn_redefines.at:420): ok (0m0.041s 0m0.007s) 151. Numeric item (integer) (syn_value.at:43): ok (0m0.046s 0m0.002s) 152. Numeric item (non-integer) (syn_value.at:70): ok (0m0.040s 0m0.010s) 153. Numeric item with picture P (syn_value.at:94): ok (0m0.041s 0m0.006s) 154. Signed numeric literal (syn_value.at:126): ok (0m0.048s 0m0.004s) 155. Alphabetic item (syn_value.at:152): ok (0m0.040s 0m0.008s) 156. Alphanumeric item (syn_value.at:179): ok (0m0.038s 0m0.009s) 157. Alphanumeric group item (syn_value.at:204): ok (0m0.037s 0m0.010s) 158. Numeric-edited item (syn_value.at:239): ok (0m0.131s 0m0.014s) 159. Alphanumeric-edited item (syn_value.at:272): ok (0m0.041s 0m0.008s) 160. Implicit picture from value (syn_value.at:340): ok (0m0.089s 0m0.004s) 161. Missing SELECT (syn_file.at:23): ok (0m0.040s 0m0.009s) 162. Duplicated SELECT (syn_file.at:50): ok (0m0.044s 0m0.005s) 163. Missing FD (syn_file.at:82): ok (0m0.044s 0m0.005s) 164. Duplicated FD (syn_file.at:108): ok (0m0.041s 0m0.006s) 165. ASSIGN to device-name (syn_file.at:137): ok (0m0.243s 0m0.014s) 166. ASSIGN to printer-name (syn_file.at:204): ok (0m0.217s 0m0.031s) 167. ASSIGN to lsq-device-name (syn_file.at:271): ok (0m0.079s 0m0.005s) 168. ASSIGN to variable (syn_file.at:326): ok (0m0.086s 0m0.008s) 169. SELECT without ASSIGN (syn_file.at:431): ok (0m0.045s 0m0.002s) 170. START on SEQUENTIAL file (syn_file.at:459): ok (0m0.043s 0m0.006s) 171. OPEN SEQUENTIAL file REVERSED (syn_file.at:496): ok (0m0.084s 0m0.015s) 172. OPEN SEQUENTIAL file NO REWIND (syn_file.at:544): ok (0m0.034s 0m0.013s) 173. valid key items (syn_file.at:583): ok (0m0.038s 0m0.009s) 174. INDEXED file invalid key items (syn_file.at:633): ok (0m0.042s 0m0.004s) 175. variable record length (syn_file.at:697): ok (0m0.186s 0m0.031s) 176. variable record length DEPENDING item (syn_file.at:808): ok (0m0.090s 0m0.007s) 177. DECLARATIVES invalid procedure reference (1) (syn_file.at:882): ok (0m0.172s 0m0.027s) 178. DECLARATIVES invalid procedure reference (2) (syn_file.at:971): ok (0m0.042s 0m0.011s) 179. EXTERNAL file (syn_file.at:1012): ok (0m0.041s 0m0.005s) 180. RECORDING MODE (syn_file.at:1040): ok (0m0.039s 0m0.008s) 181. CODE-SET clause (syn_file.at:1069): ok (0m0.043s 0m0.004s) 182. CODE-SET FOR clause (syn_file.at:1103): ok (0m0.043s 0m0.004s) 183. WRITE / REWRITE FROM clause and FILE (syn_file.at:1137): ok (0m0.044s 0m0.005s) 184. Clauses following invalid ACCESS clause (syn_file.at:1198): ok (0m0.042s 0m0.009s) 185. RELATIVE KEY type checks (syn_file.at:1222): ok (0m0.041s 0m0.007s) 186. Mismatched KEY clause (syn_file.at:1282): ok (0m0.041s 0m0.006s) 187. RECORD DELIMITER (syn_file.at:1309): ok (0m0.044s 0m0.006s) 188. FILE STATUS (syn_file.at:1417): ok (0m0.043s 0m0.006s) 189. VSAM status (syn_file.at:1516): ok (0m0.119s 0m0.031s) 190. INDEXED file PASSWORD clause (syn_file.at:1562): ok (0m0.049s 0m0.004s) 191. RECORD clause equal limits (syn_file.at:1613): ok (0m0.040s 0m0.008s) 192. FILE ... FROM literal (syn_file.at:1653): ok (0m0.119s 0m0.013s) 193. WRITE / REWRITE on LINE SEQUENTIAL files (syn_file.at:1712): ok (0m0.044s 0m0.005s) 194. WRITE / REWRITE on REPORT files (syn_file.at:1747): ok (0m0.041s 0m0.008s) 195. SELECT without fd-name (syn_file.at:1784): ok (0m0.042s 0m0.006s) 196. Undeclared FILE-ID variable (syn_file.at:1805): ok (0m0.041s 0m0.009s) 197. Undeclared ASSIGN variable (syn_file.at:1830): ok (0m0.039s 0m0.009s) 198. OPEN I-O with LINE SEQUENTIAL (syn_file.at:1909): ok (0m0.042s 0m0.007s) 199. ACCESS RANDOM with ORG SEQUENTIAL (syn_file.at:1934): ok (0m0.043s 0m0.005s) 200. ALTERNATE RECORD KEY SUPPRESS WHEN (syn_file.at:1961): ok (0m0.074s 0m0.004s) 201. RECORD definition with SOURCE IS / = (syn_file.at:2006): ok (0m0.043s 0m0.005s) 204. SELECT/OPEN syntax extensions (syn_file.at:2116): ok (0m0.080s 0m0.014s) 205. GLOBAL FD nested progam (syn_file.at:2211): ok (0m0.036s 0m0.019s) 206. Invalid file name in SELECT (syn_file.at:2249): ok (0m0.035s 0m0.012s) 207. REPORT error/warning (syn_reportwriter.at:23): ok (0m0.047s 0m0.004s) 208. REPORT not positive integers in COL / LINE PLUS (syn_reportwriter.at:124): ok (0m0.043s 0m0.009s) 209. Missing DETAIL line (syn_reportwriter.at:177): ok (0m0.040s 0m0.007s) 210. REPORT LINE PLUS ZERO (syn_reportwriter.at:220): ok (0m0.046s 0m0.004s) 211. Incorrect REPORT NAME (syn_reportwriter.at:270): ok (0m0.051s 0m0.017s) 212. REPORT with PLUS RIGHT/CENTER (syn_reportwriter.at:387): ok (0m0.044s 0m0.005s) 213. PAGE LIMITS clause (syn_reportwriter.at:480): ok (0m0.039s 0m0.011s) 214. Report FD without period (syn_reportwriter.at:515): ok (0m0.045s 0m0.006s) 215. REPORT with unreferenced control field (syn_reportwriter.at:548): ok (0m0.056s 0m0.015s) 216. Incorrect USAGE clause (syn_reportwriter.at:576): ok (0m0.044s 0m0.005s) 217. valid reference modification (syn_refmod.at:25): ok (0m0.057s 0m0.013s) 218. Static out of bounds (syn_refmod.at:51): ok (0m0.046s 0m0.002s) 219. constant-folding out of bounds (syn_refmod.at:95): ok (0m0.082s 0m0.010s) 220. ambiguous AND/OR (syn_misc.at:23): ok (0m0.044s 0m0.006s) 221. warn constant expressions (syn_misc.at:54): ok (0m0.039s 0m0.009s) 222. warn literal size (syn_misc.at:87): ok (0m0.039s 0m0.011s) 223. warn literal size in constant expr. (level 88) (syn_misc.at:352): ok (0m0.049s 0m0.001s) 224. Invalid conditional expression (1) (syn_misc.at:402): ok (0m0.043s 0m0.008s) 225. Invalid conditional expression (2) (syn_misc.at:515): ok (0m0.042s 0m0.006s) 226. Invalid conditional expression (3) (syn_misc.at:571): ok (0m0.053s 0m0.003s) 227. Valid conditional expression (syn_misc.at:635): ok (0m0.071s 0m0.022s) 228. missing headers (syn_misc.at:668): ok (0m0.080s 0m0.018s) 229. one line program (syn_misc.at:718): ok (0m0.088s 0m0.012s) 230. empty program (syn_misc.at:737): ok (0m0.376s 0m0.091s) 231. INITIALIZE constant (syn_misc.at:783): ok (0m0.039s 0m0.008s) 232. CLASS duplicate values (syn_misc.at:810): ok (0m0.041s 0m0.009s) 233. INSPECT invalid size (syn_misc.at:843): ok (0m0.036s 0m0.014s) 234. INSPECT invalid target (syn_misc.at:884): ok (0m0.046s 0m0.004s) 235. INSPECT missing keyword (syn_misc.at:907): ok (0m0.043s 0m0.005s) 236. INSPECT repeated keywords (syn_misc.at:928): ok (0m0.038s 0m0.010s) 237. INSPECT incomplete clause (syn_misc.at:964): ok (0m0.041s 0m0.006s) 238. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:986): ok (0m0.047s 0m0.000s) 239. maximum data size (syn_misc.at:1009): ok (0m0.046s 0m0.004s) 240. unreachable statement (syn_misc.at:1038): ok (0m0.046s 0m0.003s) 241. CRT STATUS (syn_misc.at:1088): ok (0m0.080s 0m0.014s) 242. SPECIAL-NAMES clause (syn_misc.at:1130): ok (0m0.213s 0m0.041s) 243. CURRENCY SIGN (syn_misc.at:1219): ok (0m0.305s 0m0.052s) 244. SWITCHES (syn_misc.at:1331): ok (0m0.107s 0m0.013s) 245. unexpected mnemonic-name location (syn_misc.at:1457): ok (0m0.057s 0m0.004s) 246. wrong device for mnemonic-name (syn_misc.at:1484): ok (0m0.048s 0m0.004s) 247. missing mnemonic-name declaration (syn_misc.at:1509): ok (0m0.038s 0m0.012s) 248. unknown device in dialect (syn_misc.at:1530): ok (0m0.071s 0m0.024s) 249. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:1560): ok (0m0.040s 0m0.006s) 250. ACCEPT WITH AUTO / TAB (syn_misc.at:1585): ok (0m0.040s 0m0.005s) 251. ACCEPT WITH LOWER / UPPER (syn_misc.at:1610): ok (0m0.033s 0m0.014s) 252. ACCEPT WITH SIZE (syn_misc.at:1632): ok (0m0.045s 0m0.003s) 253. DISPLAY WITH SIZE (syn_misc.at:1661): ok (0m0.042s 0m0.006s) 254. source text after program-text area (syn_misc.at:1686): ok (0m0.046s 0m0.003s) 255. line overflow in fixed-form / free-form (syn_misc.at:1707): ok (0m0.121s 0m0.026s) 256. missing newline in fixed-form / free-form (syn_misc.at:1755): ok (0m0.166s 0m0.025s) 257. continuation Indicator - too many lines (syn_misc.at:1788): ok (0m0.409s 0m0.010s) 258. continuation of COBOL words (syn_misc.at:2345): ok (0m0.058s 0m0.018s) 259. literal too long (syn_misc.at:2366): ok (0m0.248s 0m0.033s) 260. line and floating comments (syn_misc.at:2601): ok (0m0.550s 0m0.086s) 261. word length (syn_misc.at:2766): ok (0m0.297s 0m0.038s) 262. Segmentation Module (syn_misc.at:2929): ok (0m0.064s 0m0.011s) 263. ACCEPT FROM ESCAPE KEY (syn_misc.at:3021): ok (0m0.039s 0m0.008s) 264. Numeric literals (syn_misc.at:3046): ok (0m0.127s 0m0.017s) 265. floating-point literals (syn_misc.at:3225): ok (0m0.082s 0m0.018s) 266. X literals (syn_misc.at:3332): ok (0m0.042s 0m0.005s) 267. national literals (syn_misc.at:3359): ok (0m0.056s 0m0.021s) 268. NX literals (syn_misc.at:3397): ok (0m0.065s 0m0.008s) 269. binary literals (syn_misc.at:3435): ok (0m0.092s 0m0.016s) 270. binary-hexadecimal literals (syn_misc.at:3471): ok (0m0.066s 0m0.014s) 271. HP COBOL octal literals (syn_misc.at:3500): ok (0m0.070s 0m0.008s) 272. ACUCOBOL literals (syn_misc.at:3536): ok (0m0.098s 0m0.019s) 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.107s 0m0.016s) 275. ACUCOBOL USAGE HANDLE (syn_misc.at:3658): ok (0m0.065s 0m0.008s) 276. ACUCOBOL WINDOW statements (syn_misc.at:3766): ok (0m0.078s 0m0.018s) 277. ACUCOBOL GRAPHICAL controls (syn_misc.at:3851): ok (0m0.036s 0m0.007s) 278. DISPLAY MESSAGE BOX (syn_misc.at:3930): ok (0m0.040s 0m0.005s) 279. DISPLAY OMITTED (syn_misc.at:3973): ok (0m0.045s 0m0.005s) 280. CGI: EXTERNAL-FORM (syn_misc.at:3994): ok (0m0.041s 0m0.007s) 281. adding/removing reserved words (syn_misc.at:4049): ok (0m0.085s 0m0.013s) 282. adding aliases (syn_misc.at:4079): ok (0m0.158s 0m0.032s) 283. overriding default words (syn_misc.at:4113): ok (0m0.082s 0m0.020s) 284. complete specified word list (syn_misc.at:4143): ok (0m0.121s 0m0.007s) 285. ANY LENGTH item as formal parameter (syn_misc.at:4163): ok (0m0.082s 0m0.019s) 286. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:4198): ok (0m0.041s 0m0.009s) 287. swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:4221): ok (0m0.133s 0m0.005s) 288. CONF. SECTION paragraphs in wrong order (syn_misc.at:4243): ok (0m0.158s 0m0.021s) 289. NOT ON EXCEPTION with STATIC CALL convention (syn_misc.at:4315): ok (0m0.172s 0m0.033s) 290. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:4363): ok (0m0.058s 0m0.022s) 291. wrong dialect hints (syn_misc.at:4427): ok (0m0.027s 0m0.002s) 292. redundant periods (syn_misc.at:4451): ok (0m0.046s 0m0.008s) 293. IF-ELSE statement list with invalid syntax (syn_misc.at:4481): ok (0m0.047s 0m0.005s) 294. EVALUATE statement with invalid syntax (syn_misc.at:4514): ok (0m0.048s 0m0.007s) 295. MF reserved word directives (syn_misc.at:4564): ok (0m0.043s 0m0.010s) 296. TURN directive (syn_misc.at:4620): ok (0m0.043s 0m0.008s) 297. STRING / UNSTRING with invalid syntax (syn_misc.at:4653): ok (0m0.046s 0m0.006s) 298. UNSTRING COUNT clause (syn_misc.at:4718): ok (0m0.043s 0m0.009s) 299. use of program-prototypes (syn_misc.at:4766): ok (0m0.041s 0m0.013s) 300. invalid INSPECT/TRANSFORM operands (syn_misc.at:4793): ok (0m0.044s 0m0.005s) 301. SIGN clause checks (syn_misc.at:4837): ok (0m0.043s 0m0.008s) 302. conflicting entry conventions (syn_misc.at:4862): ok (0m0.126s 0m0.030s) 303. conflicting call conventions (syn_misc.at:4931): ok (0m0.070s 0m0.014s) 304. dangling LINKAGE items (syn_misc.at:4960): ok (0m0.044s 0m0.010s) 305. duplicate PROCEDURE DIVISION/ENTRY USING items (syn_misc.at:5016): ok (0m0.046s 0m0.008s) 306. duplicate CALL USING BY REFERENCE items (syn_misc.at:5037): ok (0m0.047s 0m0.002s) 307. ADD / SUBTRACT TABLE (syn_misc.at:5063): ok (0m0.042s 0m0.006s) 308. USE FOR DEBUGGING invalid ref-mod / subscripts (syn_misc.at:5106): ok (0m0.042s 0m0.006s) 309. USE FOR DEBUGGING duplicate targets (syn_misc.at:5151): ok (0m0.044s 0m0.007s) 310. USE FOR DEBUGGING implicit statements (syn_misc.at:5204): ok (0m0.048s 0m0.006s) 312. Empty PERFORM with DEBUGGING MODE (syn_misc.at:5323): ok (0m0.035s 0m0.011s) 313. whitespace handling (syn_misc.at:5351): ok (0m0.089s 0m0.007s) 314. STOP identifier (syn_misc.at:5439): ok (0m0.079s 0m0.018s) 315. 01 CONSTANT (syn_misc.at:5465): ok (0m0.182s 0m0.020s) 316. 78 VALUE (syn_misc.at:5513): ok (0m0.140s 0m0.010s) 317. level 78 NEXT / START OF (syn_misc.at:5560): ok (0m0.048s 0m0.005s) 318. SYMBOLIC CONSTANT (syn_misc.at:5619): ok (0m0.110s 0m0.012s) 319. Constant Expressions (1) (syn_misc.at:5668): ok (0m0.048s 0m0.001s) 320. Constant Expressions (2) (syn_misc.at:5793): ok (0m0.039s 0m0.010s) 321. Constant Expressions (3) (syn_misc.at:5849): ok (0m0.212s 0m0.046s) 322. Constant Expressions (4) (syn_misc.at:5940): ok (0m0.049s 0m0.006s) 323. Constant Expressions (5) (syn_misc.at:5973): ok (0m0.088s 0m0.011s) 324. Missing imperative statements (syn_misc.at:6073): ok (0m0.082s 0m0.016s) 326. CONSTANT LENGTH / BYTE-LENGTH (syn_misc.at:6203): ok (0m0.046s 0m0.009s) 327. ANY LENGTH/NUMERIC with incorrect PIC (syn_misc.at:6227): ok (0m0.041s 0m0.009s) 328. VOLATILE clause (syn_misc.at:6273): ok (0m0.043s 0m0.009s) 329. SET SOURCEFORMAT syntax checks (syn_misc.at:6316): ok (0m0.015s 0m0.009s) 330. WHEN-COMPILED register in dialect (syn_misc.at:6349): ok (0m0.296s 0m0.037s) 331. LIN / COL register (syn_misc.at:6375): ok (0m0.190s 0m0.029s) 332. tokens consisting of multiple words (syn_misc.at:6407): ok (0m0.039s 0m0.008s) 333. zero-length literals (syn_misc.at:6434): ok (0m0.081s 0m0.013s) 334. @OPTIONS parsing (syn_misc.at:6495): ok (0m0.038s 0m0.010s) 335. system routines with wrong number of parameters (syn_misc.at:6537): ok (0m0.040s 0m0.009s) 336. invalid use of condition-name (syn_misc.at:6566): ok (0m0.041s 0m0.009s) 337. XML GENERATE syntax checks (syn_misc.at:6630): ok (0m0.043s 0m0.010s) 338. BASED clause, ALLOCATE / FREE statements (syn_misc.at:6848): ok (0m0.044s 0m0.007s) 339. CONTINUE statement (syn_misc.at:6906): ok (0m0.068s 0m0.013s) 340. conflict markers (syn_misc.at:6950): ok (0m0.089s 0m0.009s) 341. SORT syntax (syn_misc.at:7009): ok (0m0.040s 0m0.009s) 342. OSVS I/O extensions (syn_misc.at:7063): ok (0m0.038s 0m0.012s) 343. long literal in error message (syn_misc.at:7130): ok (0m0.046s 0m0.004s) 344. literal missing terminating character (syn_misc.at:7162): ok (0m0.043s 0m0.006s) 345. EQUALS in expressions (syn_misc.at:7183): ok (0m0.067s 0m0.008s) 346. Invalid parentheses around condition (syn_misc.at:7209): ok (0m0.043s 0m0.008s) 347. DISPLAY directive (1) (syn_misc.at:7232): ok (0m0.045s 0m0.004s) 348. DISPLAY directive (2) (syn_misc.at:7255): ok (0m0.043s 0m0.004s) 349. DISPLAY directive (3) (syn_misc.at:7275): ok (0m0.044s 0m0.002s) 350. conditional / define directives (1) (syn_misc.at:7294): ok (0m0.039s 0m0.009s) 351. conditional / define directives (2) (syn_misc.at:7319): ok (0m0.084s 0m0.010s) 352. conditional / define directives (3) (syn_misc.at:7347): ok (0m0.042s 0m0.005s) 353. conditional / define directives (4) (syn_misc.at:7377): ok (0m0.040s 0m0.005s) 354. error handling in conditional directives (syn_misc.at:7399): ok (0m0.047s 0m0.002s) 357. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.042s 0m0.007s) 358. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.041s 0m0.007s) 359. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.045s 0m0.004s) 360. MOVE alphanumeric TO x (syn_move.at:120): ok (0m0.041s 0m0.008s) 361. MOVE alphanumeric-edited TO x (syn_move.at:148): ok (0m0.044s 0m0.004s) 362. MOVE numeric (integer) TO x (syn_move.at:179): ok (0m0.047s 0m0.009s) 363. MOVE numeric (non-integer) TO x (syn_move.at:209): ok (0m0.040s 0m0.008s) 364. MOVE numeric-edited TO x (syn_move.at:241): ok (0m0.042s 0m0.006s) 365. CORRESPONDING - Operands must be groups (syn_move.at:276): ok (0m0.043s 0m0.008s) 366. CORRESPONDING - Target has no matching items (syn_move.at:306): ok (0m0.051s 0m0.001s) 367. MOVE to erroneous field (syn_move.at:332): ok (0m0.048s 0m0.006s) 368. Overlapping MOVE (syn_move.at:355): ok (0m0.199s 0m0.041s) 369. invalid source for MOVE (syn_move.at:454): ok (0m0.045s 0m0.003s) 370. invalid target for MOVE (syn_move.at:484): ok (0m0.043s 0m0.005s) 371. SET error (syn_move.at:520): ok (0m0.049s 0m0.006s) 372. MOVE FIGURATIVE to NUMERIC (syn_move.at:552): ok (0m0.216s 0m0.033s) 373. Category check of Format 1 (syn_multiply.at:28): ok (0m0.038s 0m0.010s) 374. Category check of Format 2 (syn_multiply.at:64): ok (0m0.054s 0m0.008s) 375. Category check of literals (syn_multiply.at:102): ok (0m0.051s 0m0.009s) 376. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.047s 0m0.002s) 377. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.041s 0m0.007s) 378. AT clause (syn_screen.at:121): ok (0m0.042s 0m0.007s) 379. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.044s 0m0.012s) 380. FROM clause (syn_screen.at:211): ok (0m0.036s 0m0.011s) 381. Incorrect USAGE clause (syn_screen.at:237): ok (0m0.039s 0m0.013s) 382. SCREEN SECTION clause numbers (syn_screen.at:268): ok (0m0.041s 0m0.008s) 383. Screen clauses (syn_screen.at:300): ok (0m0.046s 0m0.002s) 384. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:326): ok (0m0.044s 0m0.002s) 385. Referencing 88-level (syn_screen.at:356): ok (0m0.050s 0m0.010s) 386. Conflicting screen clauses (syn_screen.at:387): ok (0m0.092s 0m0.022s) 387. Redundant screen clauses (syn_screen.at:448): ok (0m0.042s 0m0.008s) 388. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:481): ok (0m0.120s 0m0.027s) 389. VALUE clause missing (syn_screen.at:541): ok (0m0.037s 0m0.011s) 390. FULL on numeric item (syn_screen.at:565): ok (0m0.037s 0m0.012s) 391. Compiler-specific SCREEN SECTION clause rules (syn_screen.at:589): ok (0m0.256s 0m0.042s) 392. MS-COBOL position-spec (syn_screen.at:747): ok (0m0.094s 0m0.010s) 393. Screen with invalid FROM clause (syn_screen.at:795): ok (0m0.086s 0m0.015s) 394. SET ADDRESS OF item (syn_set.at:24): ok (0m0.046s 0m0.004s) 395. SET item TO 88-level (syn_set.at:53): ok (0m0.043s 0m0.006s) 396. ANY LENGTH / NUMERIC as function RETURNING item (syn_functions.at:22): ok (0m0.081s 0m0.017s) 397. REPOSITORY INTRINSIC phrase (syn_functions.at:64): ok (0m0.045s 0m0.006s) 398. REPOSITORY FUNCTION phrase (syn_functions.at:87): ok (0m0.048s 0m0.008s) 399. Redundant REPOSITORY entries (syn_functions.at:135): ok (0m0.043s 0m0.007s) 400. Missing prototype/definition (syn_functions.at:174): ok (0m0.041s 0m0.007s) 401. Empty function (syn_functions.at:205): ok (0m0.042s 0m0.006s) 402. Function definition inside program (syn_functions.at:232): ok (0m0.049s 0m0.001s) 403. Intrinsic functions: dialect (syn_functions.at:255): ok (0m0.082s 0m0.016s) 404. Intrinsic functions: replaced (syn_functions.at:280): ok (0m0.094s 0m0.009s) 405. Intrinsic functions: number of arguments (syn_functions.at:324): ok (0m0.046s 0m0.002s) 406. Intrinsic functions: reference modification (syn_functions.at:364): ok (0m0.043s 0m0.008s) 407. Intrinsic functions: argument type (syn_functions.at:412): ok (0m0.043s 0m0.006s) 408. invalid formatted date/time args (syn_functions.at:435): ok (0m0.048s 0m0.007s) 409. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:516): ok (0m0.050s 0m0.004s) 410. Specified offset and SYSTEM-OFFSET (syn_functions.at:550): ok (0m0.042s 0m0.006s) 411. FUNCTION LENGTH / BYTE-LENGTH (syn_functions.at:574): ok (0m0.037s 0m0.010s) 412. Minimal lines per listing pages (listings.at:21): ok (0m0.049s 0m0.008s) 413. COPY within comment (listings.at:85): ok (0m0.091s 0m0.019s) 414. Replacement w/o strings (listings.at:161): ok (0m0.052s 0m0.005s) 415. COPY replacement order (listings.at:224): ok (0m0.107s 0m0.028s) 416. COPY separators (listings.at:327): ok (0m0.050s 0m0.012s) 417. COPY partial replacement (listings.at:393): ok (0m0.106s 0m0.014s) 418. COPY LEADING replacement (listings.at:609): ok (0m0.043s 0m0.019s) 419. COPY TRAILING replacement (listings.at:679): ok (0m0.052s 0m0.006s) 420. COPY recursive replacement (listings.at:750): ok (0m0.051s 0m0.005s) 421. COPY multiple files (listings.at:816): ok (0m0.056s 0m0.005s) 422. Error/Warning messages (listings.at:1037): ok (0m0.310s 0m0.078s) 423. Two source files (listings.at:1423): ok (0m0.052s 0m0.005s) 424. Multiple programs in one file (listings.at:1491): ok (0m0.334s 0m0.063s) 425. Multiple programs in one compilation group (listings.at:1710): ok (0m0.124s 0m0.027s) 426. Wide listing (listings.at:1898): ok (0m0.097s 0m0.016s) 427. Symbols: simple (listings.at:1986): ok (0m0.216s 0m0.029s) 428. Symbols: pointer (listings.at:2140): ok (0m0.047s 0m0.010s) 429. Symbols: multiple programs/functions (listings.at:2420): ok (0m0.047s 0m0.008s) 430. Symbols: OCCURS/REDEFINES (listings.at:2547): ok (0m0.053s 0m0.007s) 431. Conditional compilation (listings.at:2660): ok (0m0.090s 0m0.020s) 432. File descriptions (listings.at:2771): ok (0m0.043s 0m0.016s) 433. Invalid PICTURE strings (listings.at:3127): ok (0m0.053s 0m0.007s) 434. Variable format (listings.at:3631): ok (0m0.043s 0m0.014s) 435. LISTING directive (listings.at:3675): ok (0m0.051s 0m0.010s) 436. Listing-directive statements (listings.at:3776): ok (0m0.067s 0m0.011s) 437. Eject page (listings.at:3845): ok (0m0.202s 0m0.019s) 438. Cross reference (listings.at:4043): ok (0m0.103s 0m0.025s) 439. Report Writer (listings.at:5570): ok (0m0.054s 0m0.005s) 440. huge REPLACE (listings.at:5879): ok (0m0.109s 0m0.017s) 441. Long concatenated literal (listings.at:6801): ok (0m0.040s 0m0.017s) 442. DISPLAY literals (run_fundamental.at:24): ok (0m0.067s 0m0.014s) 443. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:86): ok (0m0.074s 0m0.009s) 444. Hexadecimal literal (run_fundamental.at:125): ok (0m0.092s 0m0.030s) 445. DISPLAY data items with VALUE clause (run_fundamental.at:166): ok (0m0.065s 0m0.015s) 446. DISPLAY data items with MOVE statement (run_fundamental.at:213): ok (0m0.068s 0m0.016s) 447. MOVE to edited item (1) (run_fundamental.at:267): ok (0m0.071s 0m0.015s) 448. MOVE to edited item (2) (run_fundamental.at:316): ok (0m0.063s 0m0.018s) 449. MOVE to item with simple and floating insertion (run_fundamental.at:365): ok (0m0.064s 0m0.017s) 450. MOVE to JUSTIFIED item (run_fundamental.at:400): ok (0m0.060s 0m0.021s) 451. MOVE integer literal to alphanumeric (run_fundamental.at:445): ok (0m0.076s 0m0.010s) 452. Compare FLOAT-LONG with floating-point literal (run_fundamental.at:470): ok (0m0.068s 0m0.012s) 453. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:523): ok (0m0.064s 0m0.018s) 454. Overlapping MOVE (run_fundamental.at:646): ok (0m0.180s 0m0.047s) 455. Overlapping MOVE (run_fundamental.at:747): ok (0m0.070s 0m0.011s) 456. IBM MOVE (run_fundamental.at:789): ok (0m0.068s 0m0.016s) 457. ALPHABETIC test (run_fundamental.at:828): ok (0m0.062s 0m0.018s) 458. ALPHABETIC-UPPER test (run_fundamental.at:860): ok (0m0.063s 0m0.017s) 459. ALPHABETIC-LOWER test (run_fundamental.at:892): ok (0m0.070s 0m0.007s) 460. GLOBAL at same level (run_fundamental.at:924): ok (0m0.071s 0m0.009s) 461. GLOBAL at lower level (run_fundamental.at:973): ok (0m0.064s 0m0.017s) 462. GLOBAL CONSTANT (run_fundamental.at:1022): ok (0m0.067s 0m0.017s) 463. GLOBAL identifiers from ENVIRONMENT DIVISION (run_fundamental.at:1106): ok (0m0.062s 0m0.021s) 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.108s 0m0.038s) 466. Entry point visibility (2) (run_fundamental.at:1302): ok (0m0.101s 0m0.019s) 467. Contained program visibility (1) (run_fundamental.at:1336): ok (0m0.059s 0m0.021s) 468. Contained program visibility (2) (run_fundamental.at:1391): ok (0m0.066s 0m0.018s) 469. Contained program visibility (3) (run_fundamental.at:1444): ok (0m0.073s 0m0.021s) 470. Contained program visibility (4) (run_fundamental.at:1495): ok (0m0.062s 0m0.021s) 471. CALL/CANCEL with program-prototype-name (run_fundamental.at:1550): ok (0m0.074s 0m0.011s) 472. GLOBAL FD (1) (run_fundamental.at:1623): ok (0m0.061s 0m0.018s) 473. GLOBAL FD (2) (run_fundamental.at:1673): ok (0m0.065s 0m0.011s) 474. GLOBAL FD (3) (run_fundamental.at:1723): ok (0m0.064s 0m0.015s) 475. GLOBAL FD (4) (run_fundamental.at:1773): ok (0m0.060s 0m0.020s) 476. CANCEL test (1) (run_fundamental.at:1823): ok (0m0.079s 0m0.011s) 477. CANCEL test (2) (run_fundamental.at:1850): ok (0m0.133s 0m0.037s) 478. CANCEL test (3) (run_fundamental.at:1890): ok (0m0.130s 0m0.035s) 479. Separate sign positions (1) (run_fundamental.at:1933): ok (0m0.070s 0m0.018s) 480. Separate sign positions (2) (run_fundamental.at:1957): ok (0m0.141s 0m0.040s) 481. Context sensitive words (1) (run_fundamental.at:1990): ok (0m0.072s 0m0.008s) 482. Context sensitive words (2) (run_fundamental.at:2013): ok (0m0.066s 0m0.014s) 483. Context sensitive words (3) (run_fundamental.at:2037): ok (0m0.065s 0m0.020s) 484. Context sensitive words (4) (run_fundamental.at:2061): ok (0m0.064s 0m0.017s) 485. Context sensitive words (5) (run_fundamental.at:2086): ok (0m0.067s 0m0.011s) 486. Context sensitive words (6) (run_fundamental.at:2109): ok (0m0.059s 0m0.024s) 487. Context sensitive words (7) (run_fundamental.at:2131): ok (0m0.067s 0m0.015s) 488. Context sensitive words (8) (run_fundamental.at:2158): ok (0m0.046s 0m0.017s) 489. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:2185): ok (0m0.060s 0m0.022s) 490. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:2248): ok (0m0.065s 0m0.018s) 491. ROUNDED NEAREST-EVEN (run_fundamental.at:2311): ok (0m0.068s 0m0.018s) 492. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2374): ok (0m0.072s 0m0.009s) 493. ROUNDED TOWARD-GREATER (run_fundamental.at:2437): ok (0m0.077s 0m0.008s) 494. ROUNDED TOWARD-LESSER (run_fundamental.at:2500): ok (0m0.066s 0m0.016s) 495. ROUNDED TRUNCATION (run_fundamental.at:2563): ok (0m0.075s 0m0.015s) 496. Numeric operations (1) (run_fundamental.at:2626): ok (0m0.069s 0m0.009s) 497. Numeric operations (2) (run_fundamental.at:2670): ok (0m0.081s 0m0.011s) 498. Numeric operations (3) (run_fundamental.at:2976): ok (0m0.072s 0m0.021s) 499. Numeric operations (4) (run_fundamental.at:3282): ok (0m0.076s 0m0.011s) 500. Numeric operations (5) (run_fundamental.at:3588): ok (0m0.077s 0m0.006s) 501. Numeric operations (6) (run_fundamental.at:3894): ok (0m0.104s 0m0.027s) 502. Numeric operations (7) (run_fundamental.at:3963): ok (0m0.059s 0m0.023s) 503. Numeric operations (8) (run_fundamental.at:4255): ok (0m0.072s 0m0.012s) 504. ADD CORRESPONDING (run_fundamental.at:4305): ok (0m0.059s 0m0.025s) 505. ADD CORRESPONDING no match (run_fundamental.at:4353): ok (0m0.068s 0m0.012s) 506. SYNC in OCCURS (run_fundamental.at:4403): ok (0m0.065s 0m0.017s) 507. 88 level with THRU (run_fundamental.at:4443): ok (0m0.064s 0m0.024s) 508. 88 level with FILLER (run_fundamental.at:4538): ok (0m0.068s 0m0.012s) 509. 88 level with FALSE IS clause (run_fundamental.at:4567): ok (0m0.064s 0m0.017s) 510. BLANK WHEN ZERO (run_fundamental.at:4595): ok (0m0.069s 0m0.013s) 511. MULTIPLY BY literal in INITIAL program (run_fundamental.at:4625): ok (0m0.063s 0m0.018s) 512. debugging lines (not active) (run_fundamental.at:4649): ok (0m0.069s 0m0.012s) 513. debugging lines (-fdebugging-line) (run_fundamental.at:4672): ok (0m0.065s 0m0.015s) 514. debugging lines (WITH DEBUGGING MODE) (run_fundamental.at:4695): ok (0m0.080s 0m0.009s) 515. debugging lines, free format (not active) (run_fundamental.at:4721): ok (0m0.076s 0m0.008s) 516. debugging lines, free format (-fdebugging-line) (run_fundamental.at:4744): ok (0m0.063s 0m0.018s) 517. USE FOR DEBUGGING (no DEBUGGING MODE) (run_fundamental.at:4767): ok (0m0.064s 0m0.017s) 518. USE FOR DEBUGGING (COB_SET_DEBUG deactivated) (run_fundamental.at:4812): ok (0m0.060s 0m0.033s) 519. USE FOR DEBUGGING ON ALL PROCEDURES (run_fundamental.at:4857): ok (0m0.064s 0m0.016s) 520. USE FOR DEBUGGING ON procedure (run_fundamental.at:4908): ok (0m0.074s 0m0.008s) 521. USE FOR DEBUGGING (COB_SET_DEBUG switched) (run_fundamental.at:4956): ok (0m0.068s 0m0.015s) 522. USE FOR DEBUGGING ON [ALL] REFERENCES OF field (run_fundamental.at:5005): ok (0m0.062s 0m0.021s) 523. USE FOR DEBUGGING, reference within DEBUGGING (run_fundamental.at:5073): ok (0m0.075s 0m0.014s) 525. USE FOR DEBUGGING, reference with OCCURS (run_fundamental.at:5164): ok (0m0.068s 0m0.015s) 527. USE FOR DEBUGGING file (run_fundamental.at:5234): ok (0m0.073s 0m0.015s) 528. Abbreviated Expressions (run_fundamental.at:5277): ok (0m0.070s 0m0.015s) 529. integer arithmetic on floating-point var (run_fundamental.at:5383): ok (0m0.074s 0m0.011s) 530. TYPEDEF application (run_fundamental.at:5425): ok (0m0.135s 0m0.022s) 531. Subscript out of bounds (run_subscripts.at:26): ok (0m0.144s 0m0.026s) 532. Value of DEPENDING ON N out of bounds (run_subscripts.at:71): ok (0m0.137s 0m0.039s) 533. Subscript bounds with OCCURS DEPENDING ON (1) (run_subscripts.at:122): ok (0m0.065s 0m0.016s) 534. Subscript bounds with OCCURS DEPENDING ON (2) (run_subscripts.at:148): ok (0m0.068s 0m0.016s) 535. Subscript bounds with OCCURS DEPENDING ON (3) (run_subscripts.at:176): ok (0m0.074s 0m0.016s) 536. Subscript by arithmetic expression (run_subscripts.at:211): ok (0m0.061s 0m0.018s) 537. length of ODO w/- reference modification (run_subscripts.at:242): ok (0m0.064s 0m0.021s) 538. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:298): ok (0m0.074s 0m0.013s) 539. enable / disable subscript check (run_subscripts.at:351): ok (0m0.344s 0m0.069s) 540. BOUND and NOBOUND directives (run_subscripts.at:396): ok (0m0.185s 0m0.062s) 541. SSRANGE and NOSSRANGE directives (run_subscripts.at:465): ok (0m0.065s 0m0.019s) 542. CALL with OCCURS DEPENDING ON (run_subscripts.at:501): ok (0m0.078s 0m0.007s) 543. Static reference modification (run_refmod.at:25): ok (0m0.071s 0m0.017s) 544. Dynamic reference modification (run_refmod.at:57): ok (0m0.075s 0m0.010s) 545. Offset underflow (run_refmod.at:94): ok (0m0.072s 0m0.007s) 546. Offset overflow (run_refmod.at:118): ok (0m0.138s 0m0.030s) 547. Length underflow (run_refmod.at:145): ok (0m0.115s 0m0.027s) 548. Length overflow (run_refmod.at:189): ok (0m0.149s 0m0.027s) 549. Length overflow with offset (1) (run_refmod.at:231): ok (0m0.070s 0m0.012s) 550. Length overflow with offset (2) (run_refmod.at:254): ok (0m0.077s 0m0.011s) 551. Length overflow with offset (3) (run_refmod.at:280): ok (0m0.075s 0m0.012s) 552. enable / disable ref-mod check (run_refmod.at:313): ok (0m0.400s 0m0.089s) 553. MF SSRANGE and NOSSRANGE directives (run_refmod.at:388): ok (0m0.488s 0m0.094s) 554. ACCEPT OMITTED (simple) (run_accept.at:28): ok (0m0.064s 0m0.020s) 555. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (1) (run_accept.at:50): ok (0m0.063s 0m0.016s) 556. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (2) (run_accept.at:117): ok (0m0.069s 0m0.016s) 557. ACCEPT DATE / DAY and intrinsic functions (1) (run_accept.at:200): ok (0m0.077s 0m0.005s) 558. ACCEPT DATE / DAY and intrinsic functions (2) (run_accept.at:237): ok (0m0.075s 0m0.012s) 559. ACCEPT OMITTED (SCREEN) (run_accept.at:284): ok (0m0.070s 0m0.015s) 560. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.066s 0m0.016s) 561. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.070s 0m0.009s) 562. INITIALIZE OCCURS with SIGN LEADING / TRAILING (run_initialize.at:88): ok (0m0.064s 0m0.020s) 563. INITIALIZE complex group (1) (run_initialize.at:159): ok (0m0.067s 0m0.016s) 564. INITIALIZE complex group (2) (run_initialize.at:187): ok (0m0.071s 0m0.009s) 565. INITIALIZE group item (run_initialize.at:215): ok (0m0.125s 0m0.039s) 566. INITIALIZE with REDEFINES (run_initialize.at:325): ok (0m0.065s 0m0.014s) 567. INITIALIZE with FILLER (run_initialize.at:352): ok (0m0.066s 0m0.016s) 568. INITIALIZE of EXTERNAL data items (run_initialize.at:419): ok (0m0.068s 0m0.013s) 569. INITIALIZE with reference modification (run_initialize.at:470): ok (0m0.070s 0m0.018s) 570. Comma separator without space (run_misc.at:23): ok (0m0.067s 0m0.012s) 571. DECIMAL-POINT is COMMA (1) (run_misc.at:44): ok (0m0.058s 0m0.024s) 572. DECIMAL-POINT is COMMA (2) (run_misc.at:72): ok (0m0.068s 0m0.014s) 573. DECIMAL-POINT is COMMA (3) (run_misc.at:100): ok (0m0.065s 0m0.016s) 574. DECIMAL-POINT is COMMA (4) (run_misc.at:128): ok (0m0.061s 0m0.022s) 575. DECIMAL-POINT is COMMA (5) (run_misc.at:156): ok (0m0.060s 0m0.021s) 576. CURRENCY SIGN (run_misc.at:190): ok (0m0.059s 0m0.022s) 578. LOCAL-STORAGE (1) (run_misc.at:268): ok (0m0.119s 0m0.029s) 579. LOCAL-STORAGE (2) (run_misc.at:304): ok (0m0.168s 0m0.058s) 580. EXTERNAL data item (run_misc.at:352): ok (0m0.123s 0m0.035s) 581. EXTERNAL AS data item (run_misc.at:394): ok (0m0.124s 0m0.028s) 583. MOVE to itself (run_misc.at:528): ok (0m0.069s 0m0.013s) 584. MOVE with refmod (run_misc.at:554): ok (0m0.068s 0m0.015s) 585. MOVE with refmod (variable) (run_misc.at:578): ok (0m0.065s 0m0.022s) 586. MOVE with group refmod (run_misc.at:604): ok (0m0.059s 0m0.019s) 587. MOVE indexes (run_misc.at:629): ok (0m0.067s 0m0.013s) 588. MOVE X'00' (run_misc.at:655): ok (0m0.094s 0m0.029s) 589. MOVE Z'literal' (run_misc.at:690): ok (0m0.071s 0m0.014s) 590. Floating continuation indicator (run_misc.at:732): ok (0m0.071s 0m0.012s) 591. Fixed continuation indicator (run_misc.at:754): ok (0m0.060s 0m0.023s) 592. Concatenation operator (run_misc.at:796): ok (0m0.065s 0m0.020s) 593. SOURCE FIXED/FREE directives (run_misc.at:820): ok (0m0.073s 0m0.009s) 594. TURN directive (run_misc.at:856): ok (0m0.071s 0m0.016s) 595. Level 01 subscripts (run_misc.at:897): ok (0m0.023s 0m0.008s) 596. Class check with reference modification (run_misc.at:919): ok (0m0.075s 0m0.009s) 597. Index and parenthesized expression (run_misc.at:943): ok (0m0.062s 0m0.017s) 598. Alphanumeric and binary numeric (run_misc.at:967): ok (0m0.071s 0m0.010s) 599. Non-numeric data in numeric items (run_misc.at:992): ok (0m0.260s 0m0.071s) 600. Dynamic call with static linking (run_misc.at:1066): ok (0m0.202s 0m0.049s) 601. Static call with static linking (run_misc.at:1095): ok (0m0.249s 0m0.076s) 602. Dynamic CALL with ON EXCEPTION (run_misc.at:1126): ok (0m0.109s 0m0.039s) 603. Static CALL with ON EXCEPTION (run_misc.at:1158): ok (0m0.262s 0m0.066s) 604. CALL m1. CALL m2. CALL m1. (run_misc.at:1198): ok (0m0.187s 0m0.043s) 605. Recursive CALL of RECURSIVE program (run_misc.at:1253): ok (0m0.181s 0m0.036s) 606. Recursive CALL of INITIAL program (run_misc.at:1311): ok (0m0.173s 0m0.043s) 607. Recursive CALL with RECURSIVE assumed (run_misc.at:1362): ok (0m0.181s 0m0.030s) 608. Recursive CALL with ON EXCEPTION (run_misc.at:1408): ok (0m0.180s 0m0.036s) 609. Multiple calls of INITIAL program (run_misc.at:1465): ok (0m0.124s 0m0.025s) 610. CALL binary literal parameter/LENGTH OF (run_misc.at:1522): ok (0m0.165s 0m0.036s) 611. INSPECT REPLACING LEADING ZEROS BY SPACES (run_misc.at:1576): ok (0m0.059s 0m0.022s) 612. INSPECT No repeat conversion check (run_misc.at:1598): ok (0m0.066s 0m0.011s) 613. INSPECT CONVERTING alphabet (run_misc.at:1624): ok (0m0.069s 0m0.013s) 614. INSPECT CONVERTING TO figurative constant (run_misc.at:1659): ok (0m0.064s 0m0.015s) 615. INSPECT CONVERTING NULL (run_misc.at:1683): ok (0m0.069s 0m0.013s) 616. INSPECT CONVERTING TO NULL (run_misc.at:1707): ok (0m0.071s 0m0.015s) 617. INSPECT REPLACING figurative constant (run_misc.at:1731): ok (0m0.057s 0m0.023s) 618. INSPECT TALLYING BEFORE (run_misc.at:1755): ok (0m0.074s 0m0.013s) 619. INSPECT TALLYING AFTER (run_misc.at:1790): ok (0m0.067s 0m0.016s) 620. INSPECT REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1825): ok (0m0.068s 0m0.012s) 621. INSPECT REPLACING complex (run_misc.at:1849): ok (0m0.071s 0m0.007s) 622. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1875): ok (0m0.070s 0m0.017s) 623. Nested PERFORM (run_misc.at:1972): ok (0m0.063s 0m0.017s) 624. PERFORM VARYING BY -0.2 (run_misc.at:1996): ok (0m0.072s 0m0.015s) 625. PERFORM VARYING BY phrase omitted (run_misc.at:2023): ok (0m0.082s 0m0.027s) 626. EXIT PERFORM (run_misc.at:2054): ok (0m0.061s 0m0.024s) 627. EXIT PERFORM CYCLE (run_misc.at:2079): ok (0m0.066s 0m0.018s) 628. EXIT PARAGRAPH (run_misc.at:2104): ok (0m0.061s 0m0.018s) 629. EXIT SECTION (run_misc.at:2136): ok (0m0.074s 0m0.011s) 630. PERFORM FOREVER / PERFORM UNTIL EXIT (run_misc.at:2170): ok (0m0.063s 0m0.016s) 631. PERFORM inline (1) (run_misc.at:2211): ok (0m0.066s 0m0.012s) 632. PERFORM inline (2) (run_misc.at:2238): ok (0m0.071s 0m0.012s) 633. Non-overflow after overflow (run_misc.at:2263): ok (0m0.057s 0m0.023s) 634. PERFORM ... CONTINUE (run_misc.at:2293): ok (0m0.037s 0m0.008s) 635. STRING with subscript reference (run_misc.at:2310): ok (0m0.059s 0m0.018s) 636. STRING / UNSTRING NOT ON OVERFLOW (run_misc.at:2337): ok (0m0.060s 0m0.020s) 637. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:2454): ok (0m0.063s 0m0.016s) 638. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:2489): ok (0m0.062s 0m0.015s) 639. UNSTRING DELIMITED POINTER (run_misc.at:2554): ok (0m0.060s 0m0.019s) 640. UNSTRING DELIMITER IN (run_misc.at:2608): ok (0m0.065s 0m0.013s) 641. UNSTRING with FUNCTION / literal (run_misc.at:2650): ok (0m0.063s 0m0.024s) 642. SORT: table sort (run_misc.at:2720): ok (0m0.067s 0m0.013s) 643. SORT: table sort (2) (run_misc.at:2762): ok (0m0.083s 0m0.016s) 644. SORT: table sort (3) (run_misc.at:2887): ok (0m0.138s 0m0.030s) 645. SORT: EBCDIC table sort (run_misc.at:2980): ok (0m0.133s 0m0.037s) 646. PIC ZZZ-, ZZZ+ (run_misc.at:3047): ok (0m0.057s 0m0.023s) 647. PERFORM type OSVS (run_misc.at:3100): ok (0m0.061s 0m0.017s) 648. Sticky LINKAGE (run_misc.at:3137): ok (0m0.125s 0m0.021s) 649. COB_PRE_LOAD (run_misc.at:3184): ok (0m0.121s 0m0.030s) 650. COB_PRE_LOAD with entry points (run_misc.at:3210): ok (0m0.190s 0m0.033s) 651. Lookup ENTRY from main executable (run_misc.at:3281): ok (0m0.068s 0m0.012s) 652. COB_LOAD_CASE=UPPER test (run_misc.at:3322): ok (0m0.134s 0m0.018s) 653. ALLOCATE / FREE with BASED item (1) (run_misc.at:3348): ok (0m0.063s 0m0.016s) 654. ALLOCATE / FREE with BASED item (2) (run_misc.at:3375): ok (0m0.128s 0m0.040s) 655. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:3422): ok (0m0.070s 0m0.011s) 656. Initialized value with defaultbyte (run_misc.at:3463): ok (0m0.080s 0m0.004s) 657. CALL with OMITTED parameter (run_misc.at:3488): ok (0m0.118s 0m0.031s) 658. CALL in from C, cob_call_params explicitly set (run_misc.at:3527): ok (0m0.062s 0m0.024s) 659. CALL in from C, cob_call_params unknown (run_misc.at:3588): ok (0m0.071s 0m0.019s) 660. CALL C with callback, PROCEDURE DIVISION EXTERN (run_misc.at:3646): ok (0m0.085s 0m0.012s) 661. CALL C with callback, ENTRY-CONVENTION EXTERN (run_misc.at:3713): ok (0m0.198s 0m0.064s) 662. CALL in from C with init missing / implicit (run_misc.at:3864): ok (0m0.141s 0m0.025s) 663. CALL STATIC C from COBOL (run_misc.at:3916): ok (0m0.064s 0m0.020s) 664. ANY LENGTH (1) (run_misc.at:3972): ok (0m0.117s 0m0.026s) 665. ANY LENGTH (2) (run_misc.at:4015): ok (0m0.135s 0m0.027s) 666. ANY LENGTH (3) (run_misc.at:4059): ok (0m0.058s 0m0.023s) 667. ANY LENGTH (4) (run_misc.at:4102): ok (0m0.071s 0m0.015s) 668. ANY LENGTH (5) (run_misc.at:4145): ok (0m0.093s 0m0.006s) 669. access to BASED item without allocation (run_misc.at:4170): ok (0m0.131s 0m0.032s) 670. access to OPTIONAL LINKAGE item not passed (run_misc.at:4211): ok (0m0.132s 0m0.023s) 671. STOP RUN WITH NORMAL STATUS (run_misc.at:4253): ok (0m0.061s 0m0.017s) 672. STOP RUN WITH ERROR STATUS (run_misc.at:4271): ok (0m0.073s 0m0.010s) 673. SYMBOLIC clause (run_misc.at:4289): ok (0m0.062s 0m0.016s) 674. OCCURS clause with 1 entry (run_misc.at:4326): ok (0m0.072s 0m0.013s) 675. Computing of different USAGEs w/o decimal point (run_misc.at:4375): ok (0m0.133s 0m0.047s) 676. Computing of different USAGEs w/- decimal point (run_misc.at:5011): ok (0m0.164s 0m0.021s) 677. C/C++ reserved words/predefined identifiers (run_misc.at:5646): ok (0m0.181s 0m0.038s) 678. ON EXCEPTION clause of DISPLAY (run_misc.at:6106): ok (0m0.060s 0m0.021s) 679. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:6131): ok (0m0.077s 0m0.006s) 680. LINE/COLUMN 0 exceptions (run_misc.at:6172): ok (0m0.069s 0m0.012s) 681. SET LAST EXCEPTION TO OFF (run_misc.at:6210): ok (0m0.068s 0m0.014s) 682. void PROCEDURE (run_misc.at:6246): ok (0m0.129s 0m0.026s) 683. Figurative constants to numeric field (run_misc.at:6275): ok (0m0.193s 0m0.032s) 684. MF FIGURATIVE to NUMERIC (run_misc.at:6337): ok (0m0.117s 0m0.009s) 685. CALL RETURNING (run_misc.at:6472): ok (0m0.195s 0m0.039s) 686. void PROCEDURE, NOTHING return (run_misc.at:6511): ok (0m0.200s 0m0.041s) 687. READY TRACE / RESET TRACE (run_misc.at:6546): ok (0m0.708s 0m0.160s) 688. Trace feature with subroutine (run_misc.at:6908): ok (0m0.246s 0m0.065s) 689. stack and dump feature (run_misc.at:8977): ok (0m0.384s 0m0.121s) 690. Test dump feature (2) (run_misc.at:9700): ok (0m0.081s 0m0.021s) 691. CALL with program prototypes (run_misc.at:9965): ok (0m0.061s 0m0.023s) 692. REDEFINES values on FILLER and INITIALIZE (run_misc.at:10021): ok (0m0.069s 0m0.012s) 693. PICTURE with constant-name (run_misc.at:10076): ok (0m0.114s 0m0.019s) 694. Quote marks in comment paragraphs (run_misc.at:10104): ok (0m0.132s 0m0.024s) 695. Numeric MOVE with/without -fbinary-truncate (run_misc.at:10130): ok (0m0.133s 0m0.043s) 696. Alphanumeric MOVE with truncation (run_misc.at:10190): ok (0m0.064s 0m0.014s) 697. PROGRAM-ID / CALL literal/variable with spaces (run_misc.at:10241): ok (0m0.076s 0m0.010s) 698. C-API Test (param based) (run_misc.at:10309): ok (0m0.080s 0m0.014s) 699. C-API Test (field based) (run_misc.at:10544): ok (0m0.075s 0m0.021s) 700. DEFAULT ROUNDED MODE (run_misc.at:10771): ok (0m0.070s 0m0.011s) 701. OCCURS INDEXED ASCENDING (run_misc.at:10801): ok (0m0.067s 0m0.017s) 702. ZERO unsigned and negative binary subscript (run_misc.at:10899): ok (0m0.131s 0m0.037s) 703. Default Arithmetic (1) (run_misc.at:10963): ok (0m0.067s 0m0.019s) 704. Default Arithmetic Test (2) (run_misc.at:11067): ok (0m0.079s 0m0.009s) 705. OSVS Arithmetic (1) (run_misc.at:11118): ok (0m0.075s 0m0.015s) 706. OSVS Arithmetic Test (2) (run_misc.at:11235): ok (0m0.087s 0m0.024s) 707. SET CONSTANT directive (run_misc.at:11292): ok (0m0.227s 0m0.046s) 708. DEFINE OVERRIDE (run_misc.at:11395): ok (0m0.072s 0m0.011s) 709. DEFINE Defaults (run_misc.at:11461): ok (0m0.064s 0m0.016s) 710. 78 VALUE (run_misc.at:11527): ok (0m0.068s 0m0.013s) 711. 01 CONSTANT (run_misc.at:11595): ok (0m0.069s 0m0.012s) 712. DISPLAY UPON (run_misc.at:11675): ok (0m0.101s 0m0.036s) 713. FLOAT-DECIMAL w/o SIZE ERROR (run_misc.at:11767): ok (0m6.698s 0m0.018s) 714. FLOAT-SHORT / FLOAT-LONG w/o SIZE ERROR (run_misc.at:11941): ok (0m0.075s 0m0.019s) 715. FLOAT-SHORT with SIZE ERROR (run_misc.at:12140): ok (0m0.066s 0m0.018s) 716. FLOAT-LONG with SIZE ERROR (run_misc.at:12191): ok (0m0.073s 0m0.011s) 717. EC-SIZE-ZERO-DIVIDE (run_misc.at:12248): ok (0m0.072s 0m0.017s) 718. EC-SIZE-OVERFLOW (run_misc.at:12291): ok (0m0.076s 0m0.008s) 719. Constant Expressions (run_misc.at:12322): ok (0m0.062s 0m0.018s) 720. ENTRY FOR GO TO / GO TO ENTRY (run_misc.at:12408): ok (0m0.093s 0m0.027s) 721. runtime checks within conditions (run_misc.at:12498): ok (0m0.350s 0m0.052s) 722. libcob version check (run_misc.at:12612): ok (0m0.257s 0m0.080s) 723. OPEN EXTEND and CLOSE, SEQUENTIAL (run_file.at:23): ok (0m0.081s 0m0.006s) 724. DELETE FILE, SEQUENTIAL (run_file.at:89): ok (0m0.068s 0m0.017s) 725. OUTPUT on SEQUENTIAL file to missing directory (run_file.at:159): ok (0m0.072s 0m0.014s) 726. OPEN EXTEND and CLOSE, INDEXED (run_file.at:195): ok (0m0.073s 0m0.008s) 727. DELETE FILE, INDEXED (run_file.at:267): ok (0m0.066s 0m0.019s) 728. OUTPUT on INDEXED file to missing directory (run_file.at:340): ok (0m0.077s 0m0.010s) 729. READ INTO data item AT-END sequence (run_file.at:379): ok (0m0.059s 0m0.022s) 730. First READ on empty SEQUENTIAL INDEXED file (run_file.at:416): ok (0m0.073s 0m0.010s) 731. READ NEXT without previous START (run_file.at:456): ok (0m0.066s 0m0.015s) 732. REWRITE a RELATIVE file with RANDOM access (run_file.at:534): ok (0m0.064s 0m0.014s) 733. File SORT, SEQUENTIAL (run_file.at:601): ok (0m0.050s 0m0.034s) 734. File SORT, SEQUENTIAL variable records (run_file.at:651): ok (0m0.070s 0m0.012s) 735. File SORT, LINE SEQUENTIAL (run_file.at:733): ok (0m0.070s 0m0.015s) 736. LINAGE and LINAGE-COUNTER sample (run_file.at:792): ok (0m0.083s 0m0.011s) 737. File SORT, LINE SEQUENTIAL same file (run_file.at:1078): ok (0m0.070s 0m0.012s) 738. File SORT, LINE SEQUENTIAL variable records (run_file.at:1125): ok (0m0.058s 0m0.024s) 739. File MERGE, LINE SEQUENTIAL variable records (run_file.at:1189): ok (0m0.066s 0m0.018s) 740. SORT nonexistent file (run_file.at:1280): ok (0m0.068s 0m0.013s) 741. SORT with INPUT/OUTPUT PROCEDUREs (run_file.at:1315): ok (0m0.061s 0m0.022s) 742. SORT with key1 ASCENDING, key2 DESCENDING (run_file.at:1405): ok (0m0.073s 0m0.012s) 743. ASSIGN DYNAMIC and EXTERNAL (run_file.at:1472): ok (0m0.211s 0m0.033s) 744. ASSIGN EXTERNAL parsing (run_file.at:1520): ok (0m0.063s 0m0.020s) 745. ASSIGN directive (run_file.at:1554): ok (0m0.057s 0m0.023s) 746. ASSIGNfilename expansion (run_file.at:1597): ok (0m0.063s 0m0.021s) 747. ASSIGN filename mapping (run_file.at:1624): ok (0m0.348s 0m0.054s) 748. ASSIGN with COB_FILE_PATH (run_file.at:1796): ok (0m0.090s 0m0.013s) 749. ASSIGN DYNAMIC with LOCAL-STORAGE item (run_file.at:1833): ok (0m0.067s 0m0.014s) 750. ASSIGN DYNAMIC with LOCAL-STORAGE item and INITIAL prog (run_file.at:1870): ok (0m0.058s 0m0.022s) 751. ASSIGN DYNAMIC with BASED data item (run_file.at:1910): ok (0m0.211s 0m0.039s) 752. ASSIGN DYNAMIC with data item in LINKAGE (run_file.at:1996): ok (0m0.142s 0m0.021s) 753. ASSIGN DYNAMIC with empty data item (run_file.at:2168): ok (0m0.068s 0m0.020s) 754. ASSIGN DYNAMIC with unset implicit data item (run_file.at:2208): ok (0m0.071s 0m0.017s) 755. INDEXED file key-name (run_file.at:2240): ok (0m0.073s 0m0.014s) 756. INDEXED file sparse/split keys (run_file.at:2282): ok (0m0.081s 0m0.019s) 757. INDEXED file split keys WITH DUPLICATES (run_file.at:2802): ok (0m0.070s 0m0.016s) 758. INDEXED file variable length record (run_file.at:2960): ok (0m0.068s 0m0.023s) 759. INDEXED sample (run_file.at:3236): ok (0m0.083s 0m0.023s) 760. WRITE + REWRITE FILE name (run_file.at:3639): ok (0m0.073s 0m0.012s) 761. START RELATIVE (1) (run_file.at:3792): ok (0m0.066s 0m0.014s) 762. START RELATIVE (2) (run_file.at:3841): ok (0m0.072s 0m0.010s) 763. START RELATIVE (3) (run_file.at:3917): ok (0m0.075s 0m0.011s) 764. READ on OPTIONAL missing RELATIVE / SEQUENTIAL (run_file.at:3993): ok (0m0.062s 0m0.020s) 765. READ on OPTIONAL missing INDEXED file (run_file.at:4115): ok (0m0.059s 0m0.020s) 766. EXTERNAL RELATIVE file (run_file.at:4165): ok (0m0.078s 0m0.008s) 767. DECLARATIVES procedure referencing (run_file.at:4201): ok (0m0.064s 0m0.014s) 768. DECLARATIVES procedure referencing (multiple) (run_file.at:4241): ok (0m0.070s 0m0.013s) 769. System routines for directories (1) (run_file.at:4285): ok (0m0.064s 0m0.016s) 770. System routines for directories (2) (run_file.at:4327): ok (0m0.062s 0m0.018s) 771. System routines for files (run_file.at:4424): ok (0m0.328s 0m0.076s) 772. System routine CBL_COPY_FILE (run_file.at:4698): ok (0m0.076s 0m0.011s) 773. Default file external name (run_file.at:4733): ok (0m0.102s 0m0.022s) 774. SEQUENTIAL basic I/O (run_file.at:4807): ok (0m0.067s 0m0.012s) 775. LINE SEQUENTIAL basic I/O (run_file.at:4841): ok (0m0.059s 0m0.022s) 776. LINE SEQUENTIAL record truncation (run_file.at:4907): ok (0m0.070s 0m0.010s) 777. SEQUENTIAL file I/O with variable records (run_file.at:4954): ok (0m0.082s 0m0.009s) 778. LINE SEQUENTIAL file I/O with variable records (run_file.at:5029): ok (0m0.073s 0m0.008s) 779. SEQUENTIAL file REWRITE (run_file.at:5103): ok (0m0.063s 0m0.018s) 783. SEQUENTIAL file with SHARING READ ONLY (run_file.at:5417): ok (0m0.131s 0m0.032s) 785. RELATIVE SEQUENTIAL basic I/O (run_file.at:5561): ok (0m0.070s 0m0.012s) 786. RELATIVE RANDOM basic I/O (run_file.at:5595): ok (0m0.074s 0m0.009s) 787. RELATIVE SEQUENTIAL with variable records (run_file.at:5645): ok (0m0.067s 0m0.015s) 788. INDEXED SEQUENTIAL basic I/O (run_file.at:5719): ok (0m0.067s 0m0.017s) 789. INDEXED SEQUENTIAL with variable records (run_file.at:5757): ok (0m0.072s 0m0.011s) 796. INDEXED file with LOCK AUTOMATIC (2) (run_file.at:6322): ok (0m0.132s 0m0.034s) 798. START INDEXED (run_file.at:6500): ok (0m0.072s 0m0.012s) 799. INDEXED partial keys (run_file.at:6579): ok (0m0.072s 0m0.015s) 800. INDEXED undeclared keys (run_file.at:6726): skipped (run_file.at:6734) 802. EXTFH: using ISAM callback (run_file.at:6995): ok (0m0.078s 0m0.029s) 803. EXTFH: SEQUENTIAL files (run_file.at:7695): ok (0m0.075s 0m0.020s) 804. EXTFH: LINE SEQUENTIAL files, direct EXTFH (run_file.at:8105): ok (0m0.075s 0m0.017s) 805. INDEXED File READ/DELETE/READ (run_file.at:8287): ok (0m0.084s 0m0.018s) 807. Report Line Order (run_reportwriter.at:23): ok (0m0.057s 0m0.024s) 808. REPORT COL PLUS (run_reportwriter.at:120): ok (0m0.063s 0m0.020s) 809. Report Overlapping Fields (run_reportwriter.at:189): ok (0m0.065s 0m0.016s) 810. EMPTY REPORT (run_reportwriter.at:258): ok (0m0.076s 0m0.014s) 811. PAGE LIMIT REPORT (run_reportwriter.at:327): ok (0m0.062s 0m0.019s) 812. PAGE LIMIT REPORT 2 (run_reportwriter.at:389): ok (0m0.071s 0m0.013s) 813. Sample Customer Report (run_reportwriter.at:461): ok (0m0.074s 0m0.018s) 814. Sample Charge Report (run_reportwriter.at:776): ok (0m0.070s 0m0.026s) 815. Sample Charge Report 2 (run_reportwriter.at:1129): ok (0m0.069s 0m0.023s) 816. Sample Charge Report 3 (run_reportwriter.at:1499): ok (0m0.077s 0m0.012s) 817. Sample Charge Report 4 (run_reportwriter.at:1799): ok (0m0.078s 0m0.009s) 818. Sample Payroll Report (run_reportwriter.at:2215): ok (0m0.086s 0m0.020s) 819. Sample REPORT with RIGHT/CENTER (run_reportwriter.at:2900): ok (0m0.135s 0m0.037s) 820. STUDENT REPORT with INITIAL (run_reportwriter.at:3068): ok (0m0.074s 0m0.009s) 821. ORDER REPORT; Test substring (run_reportwriter.at:3220): ok (0m0.080s 0m0.007s) 822. Sample Control Break (run_reportwriter.at:3568): ok (0m0.081s 0m0.010s) 823. Sample Inventory Report (run_reportwriter.at:3797): ok (0m0.073s 0m0.014s) 824. Duplicate Detail Line (run_reportwriter.at:3990): ok (0m0.072s 0m0.010s) 825. Report with OCCURS (run_reportwriter.at:4118): ok (0m0.072s 0m0.010s) 826. Report CODE and LIMIT COLUMNS (run_reportwriter.at:4223): ok (0m0.117s 0m0.021s) 827. Duplicate INITIATE (run_reportwriter.at:4444): ok (0m0.066s 0m0.017s) 828. Missing INITIATE and GENERATE (run_reportwriter.at:4511): ok (0m0.074s 0m0.010s) 829. Missing INITIATE and TERMINATE (run_reportwriter.at:4571): ok (0m0.077s 0m0.009s) 830. Next Group Next Page (run_reportwriter.at:4625): ok (0m0.074s 0m0.015s) 831. Report PRESENT AFTER (run_reportwriter.at:8948): ok (0m0.072s 0m0.014s) 832. RETURN-CODE moving (run_returncode.at:23): ok (0m0.059s 0m0.021s) 833. RETURN-CODE passing (run_returncode.at:49): ok (0m0.173s 0m0.038s) 834. RETURN-CODE nested (run_returncode.at:101): ok (0m0.068s 0m0.010s) 835. FUNCTION ABS (run_functions.at:24): ok (0m0.072s 0m0.009s) 836. FUNCTION ACOS (run_functions.at:46): ok (0m0.059s 0m0.021s) 837. FUNCTION ANNUITY (run_functions.at:70): ok (0m0.067s 0m0.013s) 838. FUNCTION ASIN (run_functions.at:94): ok (0m0.068s 0m0.011s) 839. FUNCTION ATAN (run_functions.at:118): ok (0m0.068s 0m0.028s) 840. FUNCTION BYTE-LENGTH (run_functions.at:142): ok (0m0.074s 0m0.011s) 841. FUNCTION CHAR (run_functions.at:212): ok (0m0.070s 0m0.009s) 842. FUNCTION COMBINED-DATETIME (run_functions.at:250): ok (0m0.059s 0m0.025s) 843. FUNCTION CONCAT / CONCATENATE (run_functions.at:275): ok (0m0.060s 0m0.020s) 844. FUNCTION CONCATENATE with reference modding (run_functions.at:322): ok (0m0.062s 0m0.016s) 845. FUNCTION CONTENT-LENGTH (run_functions.at:350): ok (0m0.069s 0m0.011s) 846. FUNCTION CONTENT-OF (run_functions.at:384): ok (0m0.069s 0m0.012s) 847. FUNCTION as CALL parameter BY CONTENT (run_functions.at:459): ok (0m0.062s 0m0.027s) 848. FUNCTION COS (run_functions.at:495): ok (0m0.063s 0m0.016s) 849. FUNCTION CURRENCY-SYMBOL (run_functions.at:519): ok (0m0.075s 0m0.010s) 850. FUNCTION CURRENT-DATE (run_functions.at:542): ok (0m0.070s 0m0.020s) 851. FUNCTION DATE-OF-INTEGER (run_functions.at:613): ok (0m0.067s 0m0.014s) 852. FUNCTION DATE-TO-YYYYMMDD (run_functions.at:638): ok (0m0.056s 0m0.022s) 853. FUNCTION DAY-OF-INTEGER (run_functions.at:663): ok (0m0.071s 0m0.012s) 854. FUNCTION DAY-TO-YYYYDDD (run_functions.at:688): ok (0m0.075s 0m0.013s) 855. FUNCTION E (run_functions.at:713): ok (0m0.068s 0m0.012s) 856. FUNCTION EXCEPTION-FILE (run_functions.at:737): ok (0m0.082s 0m0.018s) 857. FUNCTION EXCEPTION-LOCATION (run_functions.at:772): ok (0m0.068s 0m0.016s) 858. FUNCTION EXCEPTION-STATEMENT (run_functions.at:811): ok (0m0.064s 0m0.016s) 859. FUNCTION EXCEPTION-STATUS (run_functions.at:846): ok (0m0.066s 0m0.016s) 860. FUNCTION EXP (run_functions.at:881): ok (0m0.080s 0m0.011s) 861. FUNCTION EXP10 (run_functions.at:905): ok (0m0.063s 0m0.022s) 862. FUNCTION FACTORIAL (run_functions.at:930): ok (0m0.062s 0m0.018s) 863. FUNCTION FORMATTED-CURRENT-DATE (run_functions.at:955): ok (0m0.066s 0m0.016s) 864. FUNCTION FORMATTED-DATE (run_functions.at:983): ok (0m0.064s 0m0.022s) 865. FUNCTION FORMATTED-DATE with ref modding (run_functions.at:1046): ok (0m0.062s 0m0.018s) 866. FUNCTION FORMATTED-DATETIME (run_functions.at:1071): ok (0m0.055s 0m0.026s) 867. FUNCTION FORMATTED-DATETIME with ref modding (run_functions.at:1128): ok (0m0.068s 0m0.010s) 868. FUNCTION FORMATTED-TIME (run_functions.at:1154): ok (0m0.071s 0m0.014s) 869. FUNCTION FORMATTED-TIME DP.COMMA (run_functions.at:1241): ok (0m0.072s 0m0.008s) 870. FUNCTION FORMATTED-TIME with ref modding (run_functions.at:1272): ok (0m0.062s 0m0.022s) 871. FUNCTION FRACTION-PART (run_functions.at:1297): ok (0m0.076s 0m0.011s) 872. FUNCTION HIGHEST-ALGEBRAIC (run_functions.at:1328): ok (0m0.067s 0m0.013s) 873. FUNCTION INTEGER (run_functions.at:1396): ok (0m0.071s 0m0.012s) 874. FUNCTION INTEGER-OF-DATE (run_functions.at:1429): ok (0m0.066s 0m0.017s) 875. FUNCTION INTEGER-OF-DAY (run_functions.at:1454): ok (0m0.063s 0m0.014s) 876. FUNCTION INTEGER-OF-FORMATTED-DATE (run_functions.at:1479): ok (0m0.066s 0m0.013s) 877. FUNCTION INTEGER-PART (run_functions.at:1529): ok (0m0.064s 0m0.023s) 878. FUNCTION LENGTH (run_functions.at:1555): ok (0m0.073s 0m0.008s) 879. FUNCTION LOCALE-COMPARE (run_functions.at:1623): ok (0m0.056s 0m0.026s) 880. FUNCTION LOCALE-DATE (run_functions.at:1653): ok (0m0.072s 0m0.017s) 881. FUNCTION LOCALE-TIME (run_functions.at:1679): ok (0m0.054s 0m0.028s) 882. FUNCTION LOCALE-TIME-FROM-SECONDS (run_functions.at:1705): ok (0m0.072s 0m0.010s) 883. FUNCTION LOG (run_functions.at:1731): ok (0m0.075s 0m0.008s) 884. FUNCTION LOG10 (run_functions.at:1755): ok (0m0.058s 0m0.021s) 885. FUNCTION LOWER-CASE (run_functions.at:1779): ok (0m0.063s 0m0.016s) 886. FUNCTION LOWER-CASE with reference modding (run_functions.at:1807): ok (0m0.066s 0m0.013s) 887. FUNCTION LOWEST-ALGEBRAIC (run_functions.at:1833): ok (0m0.060s 0m0.020s) 888. FUNCTION MAX (run_functions.at:1886): ok (0m0.068s 0m0.016s) 889. FUNCTION MEAN (run_functions.at:1908): ok (0m0.064s 0m0.016s) 890. FUNCTION MEDIAN (run_functions.at:1930): ok (0m0.075s 0m0.014s) 891. FUNCTION MIDRANGE (run_functions.at:1952): ok (0m0.064s 0m0.016s) 892. FUNCTION MIN (run_functions.at:1974): ok (0m0.071s 0m0.013s) 893. FUNCTION MOD (valid) (run_functions.at:1996): ok (0m0.068s 0m0.015s) 894. FUNCTION MOD (invalid) (run_functions.at:2026): ok (0m0.057s 0m0.021s) 895. FUNCTION MODULE-CALLER-ID (run_functions.at:2057): ok (0m0.129s 0m0.018s) 896. FUNCTION MODULE-DATE (run_functions.at:2091): ok (0m0.061s 0m0.020s) 897. FUNCTION MODULE-FORMATTED-DATE (run_functions.at:2116): ok (0m0.069s 0m0.016s) 898. FUNCTION MODULE-ID (run_functions.at:2141): ok (0m0.061s 0m0.023s) 899. FUNCTION MODULE-PATH (run_functions.at:2162): ok (0m0.058s 0m0.023s) 900. FUNCTION MODULE-SOURCE (run_functions.at:2187): ok (0m0.059s 0m0.023s) 901. FUNCTION MODULE-TIME (run_functions.at:2208): ok (0m0.061s 0m0.023s) 902. FUNCTION MONETARY-DECIMAL-POINT (run_functions.at:2233): ok (0m0.055s 0m0.024s) 903. FUNCTION MONETARY-THOUSANDS-SEPARATOR (run_functions.at:2256): ok (0m0.071s 0m0.014s) 904. FUNCTION NUMERIC-DECIMAL-POINT (run_functions.at:2279): ok (0m0.081s 0m0.017s) 905. FUNCTION NUMERIC-THOUSANDS-SEPARATOR (run_functions.at:2302): ok (0m0.077s 0m0.012s) 906. FUNCTION NUMVAL (run_functions.at:2325): ok (0m0.079s 0m0.010s) 907. FUNCTION NUMVAL-C (run_functions.at:2356): ok (0m0.068s 0m0.018s) 908. FUNCTION NUMVAL-C DP.COMMA (run_functions.at:2387): ok (0m0.070s 0m0.011s) 909. FUNCTION NUMVAL-F (run_functions.at:2417): ok (0m0.066s 0m0.014s) 910. FUNCTION ORD (run_functions.at:2440): ok (0m0.068s 0m0.015s) 911. FUNCTION ORD-MAX (run_functions.at:2462): ok (0m0.072s 0m0.011s) 912. FUNCTION ORD-MIN (run_functions.at:2484): ok (0m0.071s 0m0.024s) 913. FUNCTION PI (run_functions.at:2506): ok (0m0.071s 0m0.008s) 914. FUNCTION PRESENT-VALUE (run_functions.at:2530): ok (0m0.063s 0m0.022s) 915. FUNCTION RANDOM (run_functions.at:2552): ok (0m0.065s 0m0.019s) 916. FUNCTION RANGE (run_functions.at:2576): ok (0m0.059s 0m0.020s) 917. FUNCTION REM (valid) (run_functions.at:2600): ok (0m0.070s 0m0.018s) 918. FUNCTION REM (invalid) (run_functions.at:2623): ok (0m0.058s 0m0.019s) 919. FUNCTION REVERSE (run_functions.at:2654): ok (0m0.058s 0m0.021s) 920. FUNCTION REVERSE with reference modding (run_functions.at:2679): ok (0m0.066s 0m0.014s) 921. FUNCTION SECONDS-FROM-FORMATTED-TIME (run_functions.at:2704): ok (0m0.068s 0m0.012s) 922. FUNCTION SECONDS-PAST-MIDNIGHT (run_functions.at:2771): ok (0m0.080s 0m0.005s) 923. FUNCTION SIGN (run_functions.at:2795): ok (0m0.059s 0m0.019s) 924. FUNCTION SIN (run_functions.at:2834): ok (0m0.075s 0m0.009s) 925. FUNCTION SQRT (run_functions.at:2858): ok (0m0.079s 0m0.008s) 926. FUNCTION STANDARD-DEVIATION (run_functions.at:2882): ok (0m0.069s 0m0.013s) 927. FUNCTION STORED-CHAR-LENGTH (run_functions.at:2906): ok (0m0.058s 0m0.023s) 928. FUNCTION SUBSTITUTE (run_functions.at:2932): ok (0m0.061s 0m0.019s) 929. FUNCTION SUBSTITUTE with reference modding (run_functions.at:2961): ok (0m0.070s 0m0.012s) 930. FUNCTION SUBSTITUTE-CASE (run_functions.at:2989): ok (0m0.066s 0m0.011s) 931. FUNCTION SUBSTITUTE-CASE with reference mod (run_functions.at:3016): ok (0m0.074s 0m0.010s) 932. FUNCTION SUM (run_functions.at:3044): ok (0m0.066s 0m0.013s) 933. FUNCTION TAN (run_functions.at:3068): ok (0m0.064s 0m0.022s) 934. FUNCTION TEST-DATE-YYYYMMDD (run_functions.at:3092): ok (0m0.063s 0m0.018s) 935. FUNCTION TEST-DAY-YYYYDDD (run_functions.at:3114): ok (0m0.069s 0m0.012s) 936. FUNCTION TEST-FORMATTED-DATETIME with dates (run_functions.at:3136): ok (0m0.066s 0m0.025s) 937. FUNCTION TEST-FORMATTED-DATETIME with times (run_functions.at:3263): ok (0m0.067s 0m0.011s) 938. FUNCTION TEST-FORMATTED-DATETIME with datetimes (run_functions.at:3344): ok (0m0.071s 0m0.017s) 939. FUNCTION TEST-FORMATTED-DATETIME DP.COMMA (run_functions.at:3397): ok (0m0.065s 0m0.015s) 940. FUNCTION TEST-NUMVAL (run_functions.at:3438): ok (0m0.071s 0m0.013s) 941. FUNCTION TEST-NUMVAL-C (run_functions.at:3536): ok (0m0.064s 0m0.017s) 942. FUNCTION TEST-NUMVAL-F (run_functions.at:3634): ok (0m0.070s 0m0.008s) 943. FUNCTION TRIM (run_functions.at:3732): ok (0m0.075s 0m0.009s) 944. FUNCTION TRIM with reference modding (run_functions.at:3758): ok (0m0.057s 0m0.033s) 945. FUNCTION TRIM zero length (run_functions.at:3784): ok (0m0.066s 0m0.019s) 946. FUNCTION UPPER-CASE (run_functions.at:3811): ok (0m0.069s 0m0.016s) 947. FUNCTION UPPER-CASE with reference modding (run_functions.at:3836): ok (0m0.069s 0m0.016s) 948. FUNCTION VARIANCE (run_functions.at:3861): ok (0m0.056s 0m0.024s) 949. FUNCTION WHEN-COMPILED (run_functions.at:3885): ok (0m0.063s 0m0.018s) 950. FUNCTION YEAR-TO-YYYY (run_functions.at:3939): ok (0m0.064s 0m0.018s) 951. Formatted funcs w/ invalid variable format (run_functions.at:3963): ok (0m0.074s 0m0.010s) 952. FORMATTED-(DATE)TIME with SYSTEM-OFFSET (run_functions.at:4044): ok (0m0.073s 0m0.012s) 953. Intrinsics without FUNCTION keyword (1) (run_functions.at:4082): ok (0m0.071s 0m0.013s) 954. Intrinsics without FUNCTION keyword (2) (run_functions.at:4103): ok (0m0.067s 0m0.017s) 955. User-Defined FUNCTION with/without parameter (run_functions.at:4126): ok (0m0.067s 0m0.017s) 956. UDF in COMPUTE (run_functions.at:4177): ok (0m0.070s 0m0.017s) 957. UDF replacing intrinsic function (run_functions.at:4220): ok (0m0.067s 0m0.021s) 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.098s 0m0.029s) 960. Numeric Boolean literals (run_extensions.at:72): ok (0m0.056s 0m0.028s) 961. ACUCOBOL literals (run_extensions.at:101): ok (0m0.068s 0m0.016s) 963. Hexadecimal numeric literals (run_extensions.at:188): ok (0m0.060s 0m0.025s) 964. Semi-parenthesized condition (run_extensions.at:217): ok (0m0.070s 0m0.011s) 965. ADDRESS OF (run_extensions.at:237): ok (0m0.067s 0m0.021s) 966. LENGTH OF (run_extensions.at:287): ok (0m0.065s 0m0.018s) 967. SET TO SIZE OF (run_extensions.at:451): ok (0m0.069s 0m0.013s) 968. WHEN-COMPILED (run_extensions.at:488): ok (0m0.057s 0m0.022s) 969. Complex OCCURS DEPENDING ON (1) (run_extensions.at:517): ok (0m0.084s 0m0.020s) 970. Complex OCCURS DEPENDING ON (2) (run_extensions.at:546): ok (0m0.093s 0m0.023s) 971. Complex OCCURS DEPENDING ON (3) (run_extensions.at:609): ok (0m0.063s 0m0.023s) 972. Complex OCCURS DEPENDING ON (4) (run_extensions.at:672): ok (0m0.067s 0m0.016s) 973. Complex OCCURS DEPENDING ON (5) (run_extensions.at:738): ok (0m0.076s 0m0.015s) 974. Complex OCCURS DEPENDING ON (6) (run_extensions.at:804): ok (0m0.067s 0m0.011s) 975. OCCURS UNBOUNDED (1) (run_extensions.at:845): ok (0m0.166s 0m0.017s) 977. INITIALIZE OCCURS UNBOUNDED (run_extensions.at:1060): ok (0m0.069s 0m0.012s) 978. INITIALIZE OCCURS ODOSLIDE (run_extensions.at:1134): ok (0m0.071s 0m0.011s) 979. DEPENDING ON with ODOSLIDE (run_extensions.at:1231): ok (0m0.077s 0m0.018s) 980. DEPENDING ON with ODOSLIDE for IBM (run_extensions.at:1446): ok (0m0.083s 0m0.021s) 981. INITIALIZE level 01 (run_extensions.at:1551): ok (0m0.067s 0m0.013s) 982. MOVE of non-integer to alphanumeric (run_extensions.at:1603): ok (0m0.094s 0m0.023s) 983. CALL USING file-name (run_extensions.at:1693): ok (0m0.104s 0m0.023s) 984. CALL unusual PROGRAM-ID. (run_extensions.at:1738): ok (0m0.315s 0m0.044s) 985. CALL / GOBACK with LOCAL-STORAGE (run_extensions.at:1802): ok (0m0.119s 0m0.030s) 986. CALL BY VALUE alphanumeric item (run_extensions.at:1852): ok (0m0.066s 0m0.016s) 987. CALL BY VALUE numeric literal WITH SIZE (run_extensions.at:1889): ok (0m0.073s 0m0.011s) 988. Case-sensitive PROGRAM-ID (run_extensions.at:1993): ok (0m0.058s 0m0.022s) 989. Quoted PROGRAM-ID (run_extensions.at:2018): ok (0m0.067s 0m0.010s) 990. PROGRAM-ID AS clause (run_extensions.at:2041): ok (0m0.055s 0m0.027s) 991. NUMBER-OF-CALL-PARAMETERS (run_extensions.at:2064): ok (0m0.119s 0m0.037s) 992. TALLY register (run_extensions.at:2119): ok (0m0.114s 0m0.021s) 993. Redefining TALLY (run_extensions.at:2153): ok (0m0.082s 0m0.022s) 994. PROCEDURE DIVISION USING BY ... (run_extensions.at:2189): ok (0m0.129s 0m0.021s) 995. PROCEDURE DIVISION CHAINING (run_extensions.at:2242): ok (0m0.417s 0m0.085s) 996. STOP RUN RETURNING/GIVING (run_extensions.at:2365): ok (0m0.262s 0m0.051s) 997. GOBACK/EXIT PROGRAM RETURNING/GIVING (run_extensions.at:2421): ok (0m0.075s 0m0.022s) 998. ENTRY (run_extensions.at:2471): ok (0m0.126s 0m0.024s) 999. LINE SEQUENTIAL write (run_extensions.at:2517): ok (0m0.071s 0m0.016s) 1000. LINE SEQUENTIAL read (run_extensions.at:2563): ok (0m0.067s 0m0.014s) 1001. ASSIGN to KEYBOARD/DISPLAY (run_extensions.at:2630): ok (0m0.073s 0m0.012s) 1003. Environment/Argument variable (run_extensions.at:2750): ok (0m0.066s 0m0.019s) 1004. 78 Level (1) (run_extensions.at:2796): ok (0m0.064s 0m0.017s) 1005. 78 Level (2) (run_extensions.at:2819): ok (0m0.073s 0m0.010s) 1006. 78 Level (3) (run_extensions.at:2845): ok (0m0.074s 0m0.013s) 1007. SWITCHES with non-standard names (run_extensions.at:2869): ok (0m0.070s 0m0.016s) 1008. Larger REDEFINES lengths (run_extensions.at:2982): ok (0m0.065s 0m0.019s) 1009. REDEFINES: non-referenced ambiguous item (run_extensions.at:3066): ok (0m0.064s 0m0.014s) 1010. Obsolete 2002 keywords with COBOL2014 (run_extensions.at:3092): ok (0m0.075s 0m0.023s) 1011. System routine with wrong number of parameters (run_extensions.at:3122): ok (0m0.096s 0m0.033s) 1012. System routine C$NARG (run_extensions.at:3165): ok (0m0.187s 0m0.044s) 1013. System routine C$PARAMSIZE (run_extensions.at:3242): ok (0m0.127s 0m0.026s) 1014. System routine C$CALLEDBY (run_extensions.at:3284): ok (0m0.129s 0m0.023s) 1015. System routine C$JUSTIFY (run_extensions.at:3330): ok (0m0.058s 0m0.022s) 1016. System routine C$PRINTABLE (run_extensions.at:3355): ok (0m0.064s 0m0.012s) 1017. System routine C$MAKEDIR (run_extensions.at:3384): ok (0m0.066s 0m0.017s) 1018. System routine C$GETPID (run_extensions.at:3405): ok (0m0.064s 0m0.013s) 1019. System routine C$TOUPPER (run_extensions.at:3430): ok (0m0.058s 0m0.021s) 1020. System routine C$TOLOWER (run_extensions.at:3455): ok (0m0.066s 0m0.014s) 1021. System routine CBL_OR (run_extensions.at:3480): ok (0m0.062s 0m0.020s) 1022. System routine CBL_NOR (run_extensions.at:3507): ok (0m0.074s 0m0.006s) 1023. System routine CBL_AND (run_extensions.at:3534): ok (0m0.058s 0m0.020s) 1024. System routine CBL_XOR (run_extensions.at:3561): ok (0m0.069s 0m0.008s) 1025. System routine CBL_IMP (run_extensions.at:3588): ok (0m0.072s 0m0.009s) 1026. System routine CBL_NIMP (run_extensions.at:3615): ok (0m0.078s 0m0.010s) 1027. System routine CBL_NOT (run_extensions.at:3642): ok (0m0.072s 0m0.012s) 1028. System routine CBL_EQ (run_extensions.at:3668): ok (0m0.063s 0m0.022s) 1029. System routine CBL_GC_GETOPT (run_extensions.at:3695): ok (0m0.335s 0m0.095s) 1030. System routine CBL_GC_FORK (run_extensions.at:4132): ok (0m0.067s 0m0.017s) 1031. System routine CBL_GC_WAITPID (run_extensions.at:4200): ok (0m0.062s 0m0.026s) 1032. System routine CBL_GC_HOSTED (run_extensions.at:4252): ok (0m0.129s 0m0.042s) 1033. System routine SYSTEM, parameter handling (run_extensions.at:4382): ok (0m0.106s 0m0.044s) 1034. System routine CBL_ERROR_PROC (1) (run_extensions.at:4493): ok (0m0.133s 0m0.036s) 1035. System routine CBL_ERROR_PROC (2) (run_extensions.at:4592): ok (0m0.092s 0m0.022s) 1036. DISPLAY DIRECTIVE and $DISPLAY (run_extensions.at:4673): ok (0m0.069s 0m0.009s) 1037. Conditional / define directives (1) (run_extensions.at:4706): ok (0m0.068s 0m0.011s) 1038. Conditional / define directives (2) (run_extensions.at:4731): ok (0m0.063s 0m0.019s) 1039. Conditional / define directives (3) (run_extensions.at:4756): ok (0m0.066s 0m0.013s) 1040. Conditional / define directives (4) (run_extensions.at:4784): ok (0m0.057s 0m0.021s) 1041. Variable format (run_extensions.at:4810): ok (0m0.058s 0m0.024s) 1042. Binary COMP-1 (1) (run_extensions.at:4832): ok (0m0.131s 0m0.030s) 1043. Binary COMP-1 (2) (run_extensions.at:4863): ok (0m0.133s 0m0.026s) 1044. EXHIBIT statement (run_extensions.at:4899): ok (0m0.080s 0m0.017s) 1045. XML GENERATE general (run_ml.at:19): ok (0m0.069s 0m0.013s) 1046. XML GENERATE SUPPRESS (run_ml.at:127): ok (0m0.069s 0m0.012s) 1047. XML GENERATE exceptions (run_ml.at:204): ok (0m0.059s 0m0.024s) 1048. XML GENERATE record selection (run_ml.at:300): ok (0m0.072s 0m0.006s) 1049. XML GENERATE trimming (run_ml.at:344): ok (0m0.070s 0m0.014s) 1050. XML DPC-IN-DATA directive (run_ml.at:441): ok (0m0.054s 0m0.023s) 1051. XML dpc-in-data config option (run_ml.at:472): ok (0m0.256s 0m0.077s) 1052. JSON GENERATE general (run_ml.at:516): ok (0m0.068s 0m0.018s) 1053. JSON GENERATE SUPPRESS (run_ml.at:573): ok (0m0.055s 0m0.028s) 1054. JSON GENERATE exceptions (run_ml.at:612): ok (0m0.071s 0m0.013s) 1055. JSON GENERATE record selection (run_ml.at:677): ok (0m0.064s 0m0.016s) 1056. JSON GENERATE trimming (run_ml.at:721): ok (0m0.065s 0m0.014s) 1057. JSON DPC-IN-DATA directive (run_ml.at:821): ok (0m0.060s 0m0.022s) 1058. JSON dpc-in-data config option (run_ml.at:852): ok (0m0.272s 0m0.048s) 1059. BINARY: 2-4-8 big-endian (data_binary.at:23): ok (0m0.196s 0m0.027s) 1060. BINARY: 2-4-8 native (data_binary.at:205): ok (0m0.166s 0m0.048s) 1061. BINARY: 1-2-4-8 big-endian (data_binary.at:393): ok (0m0.164s 0m0.052s) 1062. BINARY: 1-2-4-8 native (data_binary.at:575): ok (0m0.174s 0m0.041s) 1063. BINARY: 1--8 big-endian (data_binary.at:763): ok (0m0.169s 0m0.046s) 1064. BINARY: 1--8 native (data_binary.at:945): ok (0m0.167s 0m0.049s) 1065. BINARY: full-print (data_binary.at:1133): ok (0m0.062s 0m0.025s) 1066. BINARY: 64bit unsigned compare (data_binary.at:1185): ok (0m0.055s 0m0.022s) 1067. BINARY: 64bit unsigned arithmetic notrunc (data_binary.at:1210): ok (0m0.072s 0m0.010s) 1068. BINARY: 64bit signed negative constant range (data_binary.at:1240): ok (0m0.061s 0m0.021s) 1069. COMP-4 Truncate (data_binary.at:1261): ok (0m0.070s 0m0.013s) 1070. COMP-4 No Truncate (data_binary.at:1322): ok (0m0.064s 0m0.017s) 1071. DISPLAY: Sign ASCII (data_display.at:21): ok (0m0.069s 0m0.015s) 1072. DISPLAY: Sign ASCII (2) (data_display.at:80): ok (0m0.069s 0m0.015s) 1073. DISPLAY: Sign EBCDIC (data_display.at:126): ok (0m0.066s 0m0.015s) 1074. DISPLAY: unsigned (data_display.at:171): ok (0m0.067s 0m0.016s) 1075. PACKED-DECIMAL dump (data_packed.at:25): ok (0m0.113s 0m0.018s) 1076. PACKED-DECIMAL used with DISPLAY (data_packed.at:161): ok (0m0.056s 0m0.024s) 1077. PACKED-DECIMAL used with MOVE (data_packed.at:216): ok (0m0.072s 0m0.010s) 1078. PACKED-DECIMAL used with INITIALIZE (data_packed.at:273): ok (0m0.067s 0m0.016s) 1079. PACKED-DECIMAL arithmetic (data_packed.at:312): ok (0m0.064s 0m0.018s) 1080. PACKED-DECIMAL numeric test (1) (data_packed.at:348): ok (0m0.072s 0m0.013s) 1081. PACKED-DECIMAL numeric test (2) (data_packed.at:490): ok (0m0.083s 0m0.022s) 1082. COMP-6 used with DISPLAY (data_packed.at:606): ok (0m0.076s 0m0.012s) 1083. COMP-6 used with MOVE (data_packed.at:643): ok (0m0.053s 0m0.026s) 1084. COMP-6 arithmetic (data_packed.at:690): ok (0m0.067s 0m0.017s) 1085. COMP-6 numeric test (data_packed.at:722): ok (0m0.080s 0m0.007s) 1086. POINTER: display (data_pointer.at:21): ok (0m0.069s 0m0.012s) testsuite: ending at: Fri Oct 22 17:12:56 CDT 2021 testsuite: test suite duration: 0h 2m 16s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 1082 tests were run, 30 failed (29 expected failures). 4 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 6: used_binaries.at:292 compiler outputs (assembler) runmisc cobc 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 800: run_file.at:6726 INDEXED undeclared keys runfile 958: run_functions.at:4263 UDF with recursion functions local-storage ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 6. used_binaries.at:292: testing compiler outputs (assembler) ... ./used_binaries.at:306: $COBC -v -S prog.cob stderr: loading standard configuration file 'default.conf' command line: /home/xebuzer0/Descargas/gnucobol-3.1.2/cobc/.libs/lt-cobc -v -S prog.cob preprocessing: prog.cob -> /tmp/cob133203_0.cob return status: 0 parsing: /tmp/cob133203_0.cob (prog.cob) return status: 0 translating: /tmp/cob133203_0.cob -> /tmp/cob133203_0.c (prog.cob) executing: tcc -S -o "prog.s" -I/home/xebuzer0/Descargas/gnucobol-3.1.2 -I/usr/local/include -Wno-pointer-sign -fPIC -DPIC "/tmp/cob133203_0.c" tcc: error: invalid option -- '-S' return status: 1 stdout: cobc (GnuCOBOL) 3.1.2.0 Built Oct 22 2021 16:44:05 Packaged Dec 23 2020 12:04:58 UTC C version (Tiny C) 927 ./used_binaries.at:306: exit code was 1, expected 0 6. used_binaries.at:292: 6. compiler outputs (assembler) (used_binaries.at:292): FAILED (used_binaries.at:306) ## ------------- ## ## ../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.69. Invocation command line was | | $ configure CC=tcc CFLAGS=-O3 | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = vivobookasuslaptopx409fa | uname -m = x86_64 | uname -r = 5.10.70-1-MANJARO | uname -s = Linux | uname -v = #1 SMP PREEMPT Thu Sep 30 15:29:01 UTC 2021 | | /usr/bin/uname -p = unknown | /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: /home/xebuzer0/.local/bin | PATH: /usr/local/bin | PATH: /usr/bin | PATH: /bin | PATH: /usr/local/sbin | PATH: /usr/lib/jvm/default/bin | PATH: /usr/bin/site_perl | PATH: /usr/bin/vendor_perl | PATH: /usr/bin/core_perl | PATH: /opt/intelFPGA/20.1/quartus/bin | PATH: /opt/intelFPGA/20.1/quartus/sopc_builder/bin | PATH: /var/lib/snapd/snap/bin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2619: checking for a BSD-compatible install | configure:2687: result: /usr/bin/install -c | configure:2698: checking whether build environment is sane | configure:2753: result: yes | configure:2904: checking for a thread-safe mkdir -p | configure:2943: result: /usr/bin/mkdir -p | configure:2950: checking for gawk | configure:2966: found /usr/bin/gawk | configure:2977: result: gawk | configure:2988: checking whether make sets $(MAKE) | configure:3010: result: yes | configure:3039: checking whether make supports nested variables | configure:3056: result: yes | configure:3363: checking for make | configure:3379: found /usr/bin/make | configure:3390: result: make | configure:3450: checking whether make supports order-only prerequisites | configure:3465: 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:3468: $? = 0 | configure:3479: result: yes | configure:3493: checking whether CFLAGS -O can be modified | configure:3501: result: no | configure:3619: checking for C compiler version | configure:3628: tcc --version >&5 | tcc version 0.9.27 mob:af686a7 (x86_64 Linux) | configure:3639: $? = 0 | configure:3628: tcc -v >&5 | tcc version 0.9.27 mob:af686a7 (x86_64 Linux) | configure:3639: $? = 0 | configure:3628: tcc -V >&5 | tcc: error: invalid option -- '-V' | configure:3639: $? = 1 | configure:3628: tcc -qversion >&5 | tcc: error: invalid option -- '-qversion' | configure:3639: $? = 1 | configure:3659: checking whether the C compiler works | configure:3681: tcc -O3 conftest.c >&5 | configure:3685: $? = 0 | configure:3733: result: yes | configure:3736: checking for C compiler default output file name | configure:3738: result: a.out | configure:3744: checking for suffix of executables | configure:3751: tcc -o conftest -O3 conftest.c >&5 | configure:3755: $? = 0 | configure:3777: result: | configure:3799: checking whether we are cross compiling | configure:3807: tcc -o conftest -O3 conftest.c >&5 | configure:3811: $? = 0 | configure:3818: ./conftest | configure:3822: $? = 0 | configure:3837: result: no | configure:3842: checking for suffix of object files | configure:3864: tcc -c -O3 conftest.c >&5 | configure:3868: $? = 0 | configure:3889: result: o | configure:3893: checking whether we are using the GNU C compiler | configure:3912: tcc -c -O3 conftest.c >&5 | conftest.c:18: error: 'choke' undeclared | configure:3912: $? = 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. */ | | | | int | | main () | | { | | #ifndef __GNUC__ | | choke me | | #endif | | | | ; | | return 0; | | } | configure:3921: result: no | configure:3930: checking whether tcc accepts -g | configure:3950: tcc -c -g conftest.c >&5 | configure:3950: $? = 0 | configure:3991: result: yes | configure:4008: checking for tcc option to accept ISO C89 | configure:4071: tcc -c -O3 conftest.c >&5 | configure:4071: $? = 0 | configure:4084: result: none needed | configure:4109: checking whether tcc understands -c and -o together | configure:4131: tcc -c conftest.c -o conftest2.o | configure:4134: $? = 0 | configure:4131: tcc -c conftest.c -o conftest2.o | configure:4134: $? = 0 | configure:4146: result: yes | configure:4166: checking whether make supports the include directive | configure:4181: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4184: $? = 0 | configure:4203: result: yes (GNU style) | configure:4228: checking dependency style of tcc | configure:4339: result: tcc | configure:4358: checking for tcc option to accept ISO C99 | configure:4507: tcc -c -O3 conftest.c >&5 | configure:4507: $? = 0 | configure:4520: result: none needed | configure:4628: checking for tcc option to accept ISO Standard C | configure:4639: result: none needed | configure:4652: checking how to run the C preprocessor | configure:4683: tcc -E conftest.c | configure:4683: $? = 0 | configure:4697: tcc -E conftest.c | conftest.c:13: error: include file 'ac_nonexistent.h' not found | configure:4697: $? = 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:4722: result: tcc -E | configure:4742: tcc -E conftest.c | configure:4742: $? = 0 | configure:4756: tcc -E conftest.c | conftest.c:13: error: include file 'ac_nonexistent.h' not found | configure:4756: $? = 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:4787: checking for grep that handles long lines and -e | configure:4845: result: /usr/bin/grep | configure:4850: checking for egrep | configure:4912: result: /usr/bin/grep -E | configure:4917: checking for ANSI C header files | configure:4937: tcc -c -O3 conftest.c >&5 | configure:4937: $? = 0 | configure:5010: tcc -o conftest -O3 conftest.c >&5 | configure:5010: $? = 0 | configure:5010: ./conftest | configure:5010: $? = 0 | configure:5021: result: yes | configure:5034: checking for sys/types.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for sys/stat.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for stdlib.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for string.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for memory.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for strings.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for inttypes.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for stdint.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5034: checking for unistd.h | configure:5034: tcc -c -O3 conftest.c >&5 | configure:5034: $? = 0 | configure:5034: result: yes | configure:5047: checking minix/config.h usability | configure:5047: tcc -c -O3 conftest.c >&5 | conftest.c:56: error: include file 'minix/config.h' not found | configure:5047: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:5047: result: no | configure:5047: checking minix/config.h presence | configure:5047: tcc -E conftest.c | conftest.c:23: error: include file 'minix/config.h' not found | configure:5047: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | /* end confdefs.h. */ | | #include | configure:5047: result: no | configure:5047: checking for minix/config.h | configure:5047: result: no | configure:5068: checking whether it is safe to define __EXTENSIONS__ | configure:5086: tcc -c -O3 conftest.c >&5 | configure:5086: $? = 0 | configure:5093: result: yes | configure:5232: checking build system type | configure:5246: result: x86_64-pc-linux-gnu | configure:5266: checking host system type | configure:5279: result: x86_64-pc-linux-gnu | configure:5320: checking how to print strings | configure:5347: result: printf | configure:5368: checking for a sed that does not truncate output | configure:5432: result: /usr/bin/sed | configure:5450: checking for fgrep | configure:5512: result: /usr/bin/grep -F | configure:5580: checking for non-GNU ld | configure:5614: result: /bin/ld | configure:5621: checking if the linker (/bin/ld) is GNU ld | configure:5636: result: yes | configure:5648: checking for BSD- or MS-compatible name lister (nm) | configure:5702: result: /usr/bin/nm -B | configure:5832: checking the name lister (/usr/bin/nm -B) interface | configure:5839: tcc -c -O3 conftest.c >&5 | configure:5842: /usr/bin/nm -B "conftest.o" | configure:5845: output | 0000000000000000 D some_variable | configure:5852: result: BSD nm | configure:5855: checking whether ln -s works | configure:5859: result: yes | configure:5867: checking the maximum length of command line arguments | configure:5998: result: 1572864 | configure:6046: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format | configure:6086: result: func_convert_file_noop | configure:6093: checking how to convert x86_64-pc-linux-gnu file names to toolchain format | configure:6113: result: func_convert_file_noop | configure:6120: checking for /bin/ld option to reload object files | configure:6127: result: -r | configure:6201: checking for objdump | configure:6217: found /usr/bin/objdump | configure:6228: result: objdump | configure:6257: checking how to recognize dependent libraries | configure:6457: result: pass_all | configure:6542: checking for dlltool | configure:6572: result: no | configure:6599: checking how to associate runtime and link libraries | configure:6626: result: printf %s\n | configure:6686: checking for ar | configure:6702: found /usr/bin/ar | configure:6713: result: ar | configure:6750: checking for archiver @FILE support | configure:6767: tcc -c -O3 conftest.c >&5 | configure:6767: $? = 0 | configure:6770: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | configure:6773: $? = 0 | configure:6778: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | ar: conftest.o: No such file or directory | configure:6781: $? = 1 | configure:6793: result: @ | configure:6851: checking for strip | configure:6867: found /usr/bin/strip | configure:6878: result: strip | configure:6950: checking for ranlib | configure:6966: found /usr/bin/ranlib | configure:6977: result: ranlib | configure:7079: checking command to parse /usr/bin/nm -B output from tcc object | configure:7232: tcc -c -O3 conftest.c >&5 | configure:7235: $? = 0 | configure:7239: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm | configure:7242: $? = 0 | configure:7308: tcc -o conftest -O3 conftest.c conftstm.o >&5 | configure:7311: $? = 0 | configure:7349: result: ok | configure:7396: checking for sysroot | configure:7426: result: no | configure:7433: checking for a working dd | configure:7471: result: /usr/bin/dd | configure:7475: checking how to truncate binary pipes | configure:7490: result: /usr/bin/dd bs=4096 count=1 | configure:7626: tcc -c -O3 conftest.c >&5 | configure:7629: $? = 0 | configure:7819: checking for mt | configure:7849: result: no | configure:7869: checking if : is a manifest tool | configure:7875: : '-?' | configure:7883: result: no | configure:8557: checking for dlfcn.h | configure:8557: tcc -c -O3 conftest.c >&5 | configure:8557: $? = 0 | configure:8557: result: yes | configure:9110: checking for objdir | configure:9125: result: .libs | configure:9782: checking for tcc option to produce PIC | configure:9789: result: -fPIC -DPIC | configure:9797: checking if tcc PIC flag -fPIC -DPIC works | configure:9815: tcc -c -O3 -fPIC -DPIC -DPIC conftest.c >&5 | configure:9819: $? = 0 | configure:9832: result: yes | configure:9861: checking if tcc static flag -static works | configure:9889: result: no | configure:9904: checking if tcc supports -c -o file.o | configure:9925: tcc -c -O3 -o out/conftest2.o conftest.c >&5 | configure:9929: $? = 0 | configure:9951: result: yes | configure:9959: checking if tcc supports -c -o file.o | configure:10006: result: yes | configure:10039: checking whether the tcc linker (/bin/ld -m elf_x86_64) supports shared libraries | configure:11298: result: yes | configure:11538: checking dynamic linker characteristics | configure:12119: tcc -o conftest -O3 -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:12119: $? = 0 | configure:12356: result: GNU/Linux ld.so | configure:12478: checking how to hardcode library paths into programs | configure:12503: result: immediate | configure:12605: checking for shl_load | configure:12605: tcc -o conftest -O3 conftest.c >&5 | tcc: error: undefined symbol 'shl_load' | configure:12605: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 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 (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #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 (); | | /* 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 () | | { | | return shl_load (); | | ; | | return 0; | | } | configure:12605: result: no | configure:12609: checking for shl_load in -ldld | configure:12634: tcc -o conftest -O3 conftest.c -ldld >&5 | tcc: error: library 'dld' not found | configure:12634: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 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. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char shl_load (); | | int | | main () | | { | | return shl_load (); | | ; | | return 0; | | } | configure:12643: result: no | configure:12648: checking for dlopen | configure:12648: tcc -o conftest -O3 conftest.c >&5 | tcc: error: undefined symbol 'dlopen' | configure:12648: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | /* end confdefs.h. */ | | /* Define dlopen to an innocuous variant, in case declares dlopen. | | For example, HP-UX 11i declares gettimeofday. */ | | #define dlopen innocuous_dlopen | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char dlopen (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef dlopen | | | | /* 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 dlopen (); | | /* 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_dlopen || defined __stub___dlopen | | choke me | | #endif | | | | int | | main () | | { | | return dlopen (); | | ; | | return 0; | | } | configure:12648: result: no | configure:12652: checking for dlopen in -ldl | configure:12677: tcc -o conftest -O3 conftest.c -ldl >&5 | configure:12677: $? = 0 | configure:12686: result: yes | configure:12805: checking whether a program can dlopen itself | configure:12885: tcc -o conftest -O3 -DHAVE_DLFCN_H -rdynamic conftest.c -ldl >&5 | configure:12888: $? = 0 | configure:12906: result: yes | configure:12911: checking whether a statically linked program can dlopen itself | configure:12991: tcc -o conftest -O3 -DHAVE_DLFCN_H -rdynamic conftest.c -ldl >&5 | configure:12994: $? = 0 | configure:13012: result: yes | configure:13051: checking whether stripping libraries is possible | configure:13056: result: yes | configure:13091: checking if libtool supports shared libraries | configure:13093: result: yes | configure:13096: checking whether to build shared libraries | configure:13121: result: yes | configure:13124: checking whether to build static libraries | configure:13128: result: yes | configure:13166: checking for egrep | configure:13228: result: /usr/bin/grep -E | configure:13239: checking for flex | configure:13269: result: no | configure:13239: checking for lex | configure:13269: result: no | configure:13401: checking for bison | configure:13431: result: no | configure:13401: checking for byacc | configure:13431: result: no | configure:13484: checking for windres | configure:13514: result: no | configure:13614: checking how to disable yacc compatibility warnings | configure:13636: result: not supported | configure:13643: checking for diff arguments | configure:13658: result: --strip-trailing-cr | configure:13671: checking whether ln -s works | configure:13675: result: yes | configure:13684: checking whether make sets $(MAKE) | configure:13706: result: yes | configure:13770: checking for GNU ld | configure:13807: result: /bin/ld -m elf_x86_64 | configure:13814: checking if the linker (/bin/ld -m elf_x86_64) is GNU ld | configure:13829: result: yes | configure:13836: checking for shared library run path origin | configure:13849: result: done | configure:13871: checking for ANSI C header files | configure:13975: result: yes | configure:13987: checking for stdint.h | configure:13987: result: yes | configure:13987: checking for sys/types.h | configure:13987: result: yes | configure:13987: checking signal.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking signal.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for signal.h | configure:13987: result: yes | configure:13987: checking fcntl.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking fcntl.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for fcntl.h | configure:13987: result: yes | configure:13987: checking malloc.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking malloc.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for malloc.h | configure:13987: result: yes | configure:13987: checking locale.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking locale.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for locale.h | configure:13987: result: yes | configure:13987: checking stddef.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking stddef.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for stddef.h | configure:13987: result: yes | configure:13987: checking wchar.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking wchar.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for wchar.h | configure:13987: result: yes | configure:13987: checking for dlfcn.h | configure:13987: result: yes | configure:13987: checking sys/time.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking sys/time.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for sys/time.h | configure:13987: result: yes | configure:13987: checking sys/wait.h usability | configure:13987: tcc -c -O3 conftest.c >&5 | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking sys/wait.h presence | configure:13987: tcc -E conftest.c | configure:13987: $? = 0 | configure:13987: result: yes | configure:13987: checking for sys/wait.h | configure:13987: result: yes | configure:14000: checking for an ANSI C-conforming const | configure:14066: tcc -c -O3 conftest.c >&5 | configure:14066: $? = 0 | configure:14073: result: yes | configure:14081: checking whether byte ordering is bigendian | configure:14096: tcc -c -O3 conftest.c >&5 | conftest.c:43: warning: type defaults to int | conftest.c:43: error: ';' expected (got "a") | configure:14096: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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:14141: tcc -c -O3 conftest.c >&5 | configure:14141: $? = 0 | configure:14159: tcc -c -O3 conftest.c >&5 | conftest.c:49: error: 'not' undeclared | configure:14159: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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 () | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:14287: result: no | configure:14305: checking for size_t | configure:14305: tcc -c -O3 conftest.c >&5 | configure:14305: $? = 0 | configure:14305: tcc -c -O3 conftest.c >&5 | conftest.c:78: error: identifier expected | configure:14305: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | int | | main () | | { | | if (sizeof ((size_t))) | | return 0; | | ; | | return 0; | | } | configure:14305: result: yes | configure:14316: checking whether struct tm is in sys/time.h or time.h | configure:14336: tcc -c -O3 conftest.c >&5 | configure:14336: $? = 0 | configure:14343: result: time.h | configure:14351: checking for sig_atomic_t | configure:14351: tcc -c -O3 conftest.c >&5 | configure:14351: $? = 0 | configure:14351: tcc -c -O3 conftest.c >&5 | conftest.c:47: error: identifier expected | configure:14351: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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 () | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:14351: result: yes | configure:14365: checking for inline keyword | configure:14389: tcc -c -O3 conftest.c >&5 | configure:14389: $? = 0 | configure:14397: result: __inline | configure:14405: checking for vprintf | configure:14405: tcc -o conftest -O3 conftest.c >&5 | configure:14405: $? = 0 | configure:14405: result: yes | configure:14411: checking for _doprnt | configure:14411: tcc -o conftest -O3 conftest.c >&5 | tcc: error: undefined symbol '_doprnt' | configure:14411: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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 | | /* end confdefs.h. */ | | /* Define _doprnt to an innocuous variant, in case declares _doprnt. | | For example, HP-UX 11i declares gettimeofday. */ | | #define _doprnt innocuous__doprnt | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char _doprnt (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #undef _doprnt | | | | /* 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 _doprnt (); | | /* 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__doprnt || defined __stub____doprnt | | choke me | | #endif | | | | int | | main () | | { | | return _doprnt (); | | ; | | return 0; | | } | configure:14411: result: no | configure:14428: checking for memmove | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for memset | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for setlocale | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for fcntl | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strerror | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strcasecmp | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strchr | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strrchr | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strdup | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strstr | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strtol | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for gettimeofday | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for localeconv | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for getexecname | configure:14428: tcc -o conftest -O3 conftest.c >&5 | tcc: error: undefined symbol 'getexecname' | configure:14428: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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 (); below. | | Prefer to if __STDC__ is defined, since | | exists even on freestanding compilers. */ | | | | #ifdef __STDC__ | | # include | | #else | | # include | | #endif | | | | #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 (); | | /* 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 () | | { | | return getexecname (); | | ; | | return 0; | | } | configure:14428: result: no | configure:14428: checking for canonicalize_file_name | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for popen | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for raise | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for readlink | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for realpath | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for setenv | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for strcoll | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14428: checking for flockfile | configure:14428: tcc -o conftest -O3 conftest.c >&5 | configure:14428: $? = 0 | configure:14428: result: yes | configure:14439: checking for timezone variable access | configure:14452: tcc -c -O3 conftest.c >&5 | configure:14452: $? = 0 | configure:14455: result: yes | configure:14464: checking for designated initializers | configure:14480: tcc -c -O3 conftest.c >&5 | configure:14480: $? = 0 | configure:14482: result: yes | configure:14498: checking for __GNUC__ | configure:14507: tcc -c -O3 conftest.c >&5 | conftest.c:70: error: #error macro not defined | configure:14507: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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 __GNUC__ | | # error macro not defined | | #endif | configure:14512: result: no | configure:14517: checking for __INTEL_COMPILER | configure:14526: tcc -c -O3 conftest.c >&5 | conftest.c:70: error: #error macro not defined | configure:14526: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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:14534: result: no | configure:14540: checking for __clang__ | configure:14549: tcc -c -O3 conftest.c >&5 | conftest.c:70: error: #error macro not defined | configure:14549: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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:14554: result: no | configure:14559: checking for __xlc__ | configure:14568: tcc -c -O3 conftest.c >&5 | conftest.c:70: error: #error macro not defined | configure:14568: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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:14573: result: no | configure:14578: checking for __WATCOMC__ | configure:14587: tcc -c -O3 conftest.c >&5 | conftest.c:70: error: #error macro not defined | configure:14587: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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:14592: result: no | configure:14654: checking whether to build with code coverage support | configure:14674: result: no | configure:15037: checking for pkg-config | configure:15055: found /usr/bin/pkg-config | configure:15067: result: /usr/bin/pkg-config | configure:15092: checking pkg-config is at least version 0.9.0 | configure:15095: result: yes | configure:15106: Checks for GMP/MPIR ... | configure:15142: checking for gmp | configure:15149: $PKG_CONFIG --exists --print-errors "gmp" | configure:15152: $? = 0 | configure:15166: $PKG_CONFIG --exists --print-errors "gmp" | configure:15169: $? = 0 | configure:15355: result: yes | configure:15368: checking gmp.h usability | configure:15368: tcc -c -O3 conftest.c >&5 | configure:15368: $? = 0 | configure:15368: result: yes | configure:15368: checking gmp.h presence | configure:15368: tcc -E conftest.c | configure:15368: $? = 0 | configure:15368: result: yes | configure:15368: checking for gmp.h | configure:15368: result: yes | configure:15374: checking if linking against libgmp with "-lgmp " works | configure:15387: tcc -o conftest -O3 conftest.c -lgmp >&5 | configure:15387: $? = 0 | configure:15388: result: yes | configure:15558: checking matching GMP version | configure:15590: tcc -o conftest -O3 conftest.c -lgmp >&5 | configure:15590: $? = 0 | configure:15590: ./conftest | configure:15590: $? = 0 | configure:15627: tcc -o conftest -O3 conftest.c -lgmp >&5 | configure:15627: $? = 0 | configure:15627: ./conftest | configure:15627: $? = 0 | configure:15644: result: yes (6.2) | configure:15656: checking for __gmp_get_memory_functions in -lgmp | configure:15681: tcc -o conftest -O3 conftest.c -lgmp >&5 | configure:15681: $? = 0 | configure:15691: result: yes | configure:15714: checking for libxml-2.0 | configure:15721: $PKG_CONFIG --exists --print-errors "libxml-2.0" | configure:15724: $? = 0 | configure:15738: $PKG_CONFIG --exists --print-errors "libxml-2.0" | configure:15741: $? = 0 | configure:15873: result: yes | configure:15888: checking libxml/xmlversion.h usability | configure:15888: tcc -c -O3 -I/usr/include/libxml2 conftest.c >&5 | configure:15888: $? = 0 | configure:15888: result: yes | configure:15888: checking libxml/xmlversion.h presence | configure:15888: tcc -E -I/usr/include/libxml2 conftest.c | configure:15888: $? = 0 | configure:15888: result: yes | configure:15888: checking for libxml/xmlversion.h | configure:15888: result: yes | configure:15888: checking libxml/uri.h usability | configure:15888: tcc -c -O3 -I/usr/include/libxml2 conftest.c >&5 | configure:15888: $? = 0 | configure:15888: result: yes | configure:15888: checking libxml/uri.h presence | configure:15888: tcc -E -I/usr/include/libxml2 conftest.c | configure:15888: $? = 0 | configure:15888: result: yes | configure:15888: checking for libxml/uri.h | configure:15888: result: yes | configure:15888: checking libxml/xmlwriter.h usability | configure:15888: tcc -c -O3 -I/usr/include/libxml2 conftest.c >&5 | configure:15888: $? = 0 | configure:15888: result: yes | configure:15888: checking libxml/xmlwriter.h presence | configure:15888: tcc -E -I/usr/include/libxml2 conftest.c | configure:15888: $? = 0 | configure:15888: result: yes | configure:15888: checking for libxml/xmlwriter.h | configure:15888: result: yes | configure:15905: checking for LIBXML_WRITER_ENABLED defined in libxml/xmlwriter.h | configure:15928: tcc -c -O3 -I/usr/include/libxml2 conftest.c >&5 | configure:15928: $? = 0 | configure:15935: result: yes | configure:15951: checking if linking against libxml2 with "-lxml2 " works | configure:15964: tcc -o conftest -O3 -I/usr/include/libxml2 conftest.c -lxml2 >&5 | configure:15964: $? = 0 | configure:15966: result: yes | configure:15996: Checks for JSON handler | configure:16026: Checks for local cJSON ... | configure:16030: checking for ./libcob/cJSON.c | configure:16043: result: no | configure:16084: checking for ./libcob/cJSON.c | configure:16098: result: no | configure:16141: using local cJSON: no | configure:16148: checking for libcjson | configure:16155: $PKG_CONFIG --exists --print-errors "libcjson" | Package libcjson was not found in the pkg-config search path. | Perhaps you should add the directory containing `libcjson.pc' | to the PKG_CONFIG_PATH environment variable | Package 'libcjson', required by 'virtual:world', not found | configure:16158: $? = 1 | configure:16172: $PKG_CONFIG --exists --print-errors "libcjson" | Package libcjson was not found in the pkg-config search path. | Perhaps you should add the directory containing `libcjson.pc' | to the PKG_CONFIG_PATH environment variable | Package 'libcjson', required by 'virtual:world', not found | configure:16175: $? = 1 | configure:16189: result: no | Package 'libcjson', required by 'virtual:world', not found | configure:16228: checking cJSON.h usability | configure:16228: tcc -c -O3 conftest.c >&5 | conftest.c:104: error: include file 'cJSON.h' not found | configure:16228: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:16228: result: no | configure:16228: checking cJSON.h presence | configure:16228: tcc -E conftest.c | conftest.c:71: error: include file 'cJSON.h' not found | configure:16228: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | /* end confdefs.h. */ | | #include | configure:16228: result: no | configure:16228: checking for cJSON.h | configure:16228: result: no | configure:16237: checking cjson/cJSON.h usability | configure:16237: tcc -c -O3 conftest.c >&5 | conftest.c:104: error: include file 'cjson/cJSON.h' not found | configure:16237: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:16237: result: no | configure:16237: checking cjson/cJSON.h presence | configure:16237: tcc -E conftest.c | conftest.c:71: error: include file 'cjson/cJSON.h' not found | configure:16237: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | /* end confdefs.h. */ | | #include | configure:16237: result: no | configure:16237: checking for cjson/cJSON.h | configure:16237: result: no | configure:16247: WARNING: Headers for libcjson missing, you may adjust CJSON_CFLAGS or put cJSON sources in "libcob" | configure:16321: checking for json-c | configure:16328: $PKG_CONFIG --exists --print-errors "json-c" | configure:16331: $? = 0 | configure:16345: $PKG_CONFIG --exists --print-errors "json-c" | configure:16348: $? = 0 | configure:16388: result: yes | configure:16401: checking json.h usability | configure:16401: tcc -c -O3 -I/usr/include/json-c conftest.c >&5 | configure:16401: $? = 0 | configure:16401: result: yes | configure:16401: checking json.h presence | configure:16401: tcc -E -I/usr/include/json-c conftest.c | configure:16401: $? = 0 | configure:16401: result: yes | configure:16401: checking for json.h | configure:16401: result: yes | configure:16404: checking if linking against libjson-c with "-ljson-c " works | configure:16421: tcc -o conftest -O3 -I/usr/include/json-c conftest.c -ljson-c >&5 | configure:16421: $? = 0 | configure:16422: result: yes | configure:16532: tcc -o conftest -O3 conftest.c >&5 | configure:16532: $? = 0 | configure:16641: checking for clock_gettime and CLOCK_REALTIME | configure:16654: tcc -o conftest -O3 conftest.c >&5 | configure:16654: $? = 0 | configure:16656: result: yes | configure:16665: checking for isfinite | configure:16678: tcc -o conftest -O3 conftest.c >&5 | configure:16678: $? = 0 | configure:16680: result: yes | configure:16738: checking for fdatasync | configure:16738: tcc -o conftest -O3 conftest.c >&5 | configure:16738: $? = 0 | configure:16738: result: yes | configure:16738: checking for sigaction | configure:16738: tcc -o conftest -O3 conftest.c >&5 | configure:16738: $? = 0 | configure:16738: result: yes | configure:16738: checking for fmemopen | configure:16738: tcc -o conftest -O3 conftest.c >&5 | configure:16738: $? = 0 | configure:16738: result: yes | configure:16747: checking whether fdatasync is declared | configure:16747: tcc -c -O3 conftest.c >&5 | configure:16747: $? = 0 | configure:16747: result: yes | configure:16758: checking whether fmemopen is declared | configure:16758: tcc -c -O3 conftest.c >&5 | configure:16758: $? = 0 | configure:16758: result: yes | configure:16782: Checks for curses ... | configure:16810: checking for initscr in -lncursesw | configure:16835: tcc -o conftest -O3 conftest.c -lncursesw >&5 | configure:16835: $? = 0 | configure:16844: result: yes | configure:16858: checking ncursesw/ncurses.h usability | configure:16858: tcc -c -O3 conftest.c >&5 | conftest.c:116: error: include file 'ncursesw/ncurses.h' not found | configure:16858: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:16858: result: no | configure:16858: checking ncursesw/ncurses.h presence | configure:16858: tcc -E conftest.c | conftest.c:83: error: include file 'ncursesw/ncurses.h' not found | configure:16858: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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 | | /* end confdefs.h. */ | | #include | configure:16858: result: no | configure:16858: checking for ncursesw/ncurses.h | configure:16858: result: no | configure:16867: checking ncursesw/curses.h usability | configure:16867: tcc -c -O3 conftest.c >&5 | conftest.c:116: error: include file 'ncursesw/curses.h' not found | configure:16867: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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 | | /* end confdefs.h. */ | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # include | | #endif | | #ifdef STDC_HEADERS | | # include | | # include | | #else | | # ifdef HAVE_STDLIB_H | | # include | | # endif | | #endif | | #ifdef HAVE_STRING_H | | # if !defined STDC_HEADERS && defined HAVE_MEMORY_H | | # include | | # endif | | # include | | #endif | | #ifdef HAVE_STRINGS_H | | # include | | #endif | | #ifdef HAVE_INTTYPES_H | | # include | | #endif | | #ifdef HAVE_STDINT_H | | # include | | #endif | | #ifdef HAVE_UNISTD_H | | # include | | #endif | | #include | configure:16867: result: no | configure:16867: checking ncursesw/curses.h presence | configure:16867: tcc -E conftest.c | conftest.c:83: error: include file 'ncursesw/curses.h' not found | configure:16867: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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 | | /* end confdefs.h. */ | | #include | configure:16867: result: no | configure:16867: checking for ncursesw/curses.h | configure:16867: result: no | configure:16896: checking for initscr in -lncurses | configure:16921: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | configure:16921: $? = 0 | configure:16930: result: yes | configure:16944: checking ncurses.h usability | configure:16944: tcc -c -O3 conftest.c >&5 | configure:16944: $? = 0 | configure:16944: result: yes | configure:16944: checking ncurses.h presence | configure:16944: tcc -E conftest.c | configure:16944: $? = 0 | configure:16944: result: yes | configure:16944: checking for ncurses.h | configure:16944: result: yes | configure:17190: checking for ncurses _nc_freeall function | configure:17204: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | configure:17204: $? = 0 | configure:17206: result: yes | configure:17214: checking for ncurses use_legacy_coding function | configure:17228: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | configure:17228: $? = 0 | configure:17230: result: yes | configure:17241: checking for curses color_set function | configure:17269: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | configure:17269: $? = 0 | configure:17271: result: yes | configure:17280: checking for curses define_key function | configure:17308: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | conftest.c:107: warning: unknown escape sequence: '\E' | configure:17308: $? = 0 | configure:17310: result: yes | configure:17319: checking for curses mouseinterval function | configure:17347: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | configure:17347: $? = 0 | configure:17349: result: yes | configure:17358: checking for curses has_mouse function | configure:17386: tcc -o conftest -O3 conftest.c -lncurses -lncursesw >&5 | configure:17386: $? = 0 | configure:17388: result: yes | configure:17659: Checks for Berkeley DB ... | configure:17664: checking db.h usability | configure:17664: tcc -c -O3 conftest.c >&5 | configure:17664: $? = 0 | configure:17664: result: yes | configure:17664: checking db.h presence | configure:17664: tcc -E conftest.c | configure:17664: $? = 0 | configure:17664: result: yes | configure:17664: checking for db.h | configure:17664: result: yes | configure:17702: tcc -o conftest -O3 conftest.c >&5 | configure:17702: $? = 0 | configure:17702: ./conftest | configure:17702: $? = 0 | configure:17716: db.h reports version "-Berkeley DB 5.3.28: (September 9, 2013)-" | configure:17720: checking for Berkeley DB db.h version >= 4.1 | configure:17724: result: yes (5.3) | configure:17739: checking for Berkeley DB library with version 5.3 | configure:17770: tcc -o conftest -O3 conftest.c -ldb-5.3 >&5 | configure:17770: $? = 0 | configure:17770: ./conftest | configure:17770: $? = 0 | configure:17785: result: yes | configure:17787: BDB library version 5.3 found as -ldb-5.3 | configure:17849: checking for _WIN32 | configure:17858: tcc -c -O3 conftest.c >&5 | conftest.c:96: error: #error macro not defined | configure:17858: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | /* end confdefs.h. */ | | | | #ifndef _WIN32 | | # error macro not defined | | #endif | configure:17863: result: no | configure:17870: checking for dlopen in -lc | configure:17895: tcc -o conftest -O3 conftest.c -lc >&5 | tcc: error: undefined symbol 'dlopen' | configure:17895: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | /* 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. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char dlopen (); | | int | | main () | | { | | return dlopen (); | | ; | | return 0; | | } | configure:17904: result: no | configure:17911: checking for dlopen in -ldl | configure:17945: result: yes | configure:17955: checking for dladdr in -ldl | configure:17980: tcc -o conftest -O3 conftest.c -ldl >&5 | configure:17980: $? = 0 | configure:17989: result: yes | configure:18192: checking for support of computed gotos | configure:18209: tcc -c -O3 conftest.c >&5 | configure:18209: $? = 0 | configure:18212: result: yes | configure:18221: checking if size of long int = size of long long | configure:18257: tcc -o conftest -O3 conftest.c >&5 | configure:18257: $? = 0 | configure:18257: ./conftest | configure:18257: $? = 0 | configure:18259: result: yes | configure:18270: checking if long is 32 bits | configure:18306: tcc -o conftest -O3 conftest.c >&5 | configure:18306: $? = 0 | configure:18306: ./conftest | configure:18306: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 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 () | | { | | | | if (sizeof (long) == 4) | | return 0; | | return 1; | | | | ; | | return 0; | | } | configure:18311: result: no | configure:18323: checking if pointer is longer than 32 bits | configure:18365: tcc -o conftest -O3 conftest.c >&5 | configure:18365: $? = 0 | configure:18365: ./conftest | configure:18365: $? = 0 | configure:18369: result: yes | configure:18397: checking for aligned attribute | configure:18410: tcc -c -O3 conftest.c >&5 | configure:18410: $? = 0 | configure:18412: result: yes | configure:18433: checking whether NLS is requested | configure:18442: result: yes | configure:18482: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:18514: result: /usr/bin/msgfmt | configure:18523: checking for gmsgfmt | configure:18554: result: /usr/bin/msgfmt | configure:18599: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:18631: result: /usr/bin/xgettext | configure:18676: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:18707: result: /usr/bin/msgmerge | configure:19300: checking for CFPreferencesCopyAppValue | configure:19327: result: no | configure:19334: checking for CFLocaleCopyPreferredLanguages | configure:19352: tcc -o conftest -O3 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | tcc: error: unsupported linker option '-framework' | configure:19352: $? = 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 STDC_HEADERS 1 | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define HAVE_MEMORY_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define _TANDEM_SOURCE 1 | | #define HAVE_DLFCN_H 1 | | #define LT_OBJDIR ".libs/" | | #define STDC_HEADERS 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_XML2 1 | | #define WITH_JSON_C 1 | | #define WITH_JSON "json-c" | | #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_LIBNCURSES 1 | | #define HAVE_NCURSES_H 1 | | #define WITH_CURSES "ncurses" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DEFINE_KEY 1 | | #define HAVE_MOUSEINTERVAL 1 | | #define HAVE_HAS_MOUSE 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 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 () | | { | | CFLocaleCopyPreferredLanguages(); | | ; | | return 0; | | } | configure:19361: result: no | configure:19411: checking for GNU gettext in libc | configure:19440: tcc -o conftest -O3 conftest.c >&5 | configure:19440: $? = 0 | configure:19449: result: yes | configure:20308: checking whether to use NLS | configure:20310: result: yes | configure:20313: checking where the gettext function comes from | configure:20324: result: libc | configure:20394: checking for nl_langinfo and CODESET | configure:20410: tcc -o conftest -O3 conftest.c >&5 | configure:20410: $? = 0 | configure:20419: result: yes | configure:20711: checking for gcc pointer sign option | configure:20724: tcc -c -O3 -Wno-pointer-sign conftest.c >&5 | configure:20724: $? = 0 | configure:20725: result: yes | configure:21331: checking that generated files are newer than configure | configure:21337: result: done | configure:21381: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.1.2, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on vivobookasuslaptopx409fa | | config.status:1341: creating Makefile | config.status:1341: creating libcob/Makefile | config.status:1341: creating lib/Makefile | config.status:1341: creating cobc/Makefile | config.status:1341: creating bin/Makefile | config.status:1341: creating po/Makefile.in | config.status:1341: creating doc/Makefile | config.status:1341: creating config/Makefile | config.status:1341: creating copy/Makefile | config.status:1341: creating tests/Makefile | config.status:1341: creating tests/cobol85/Makefile | config.status:1341: creating extras/Makefile | config.status:1341: creating bin/cob-config | config.status:1341: creating pre-inst-env | config.status:1341: creating tests/atlocal | config.status:1341: creating tests/run_prog_manual.sh | config.status:1341: creating config.h | config.status:1570: executing tests/atconfig commands | config.status:1570: executing depfiles commands | config.status:1674: cd libcob && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1679: $? = 0 | config.status:1674: cd lib && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1679: $? = 0 | config.status:1674: cd cobc && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1679: $? = 0 | config.status:1674: cd bin && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | make: Nothing to be done for 'am--depfiles'. | config.status:1679: $? = 0 | config.status:1570: executing libtool commands | config.status:1570: executing po-directories commands | config.status:1570: executing chmod commands | configure:23911: GnuCOBOL Configuration: | configure:23913: CC tcc | configure:23915: CFLAGS -O3 | configure:23917: LDFLAGS | configure:23923: COB_CC tcc | configure:23925: COB_CFLAGS -I/usr/local/include -Wno-pointer-sign | configure:23927: COB_LDFLAGS | configure:23929: COB_DEBUG_FLAGS -g | configure:23931: COB_LIBS -L${exec_prefix}/lib -lcob -lm | configure:23933: COB_CONFIG_DIR ${datarootdir}/gnucobol/config | configure:23935: COB_COPY_DIR ${datarootdir}/gnucobol/copy | configure:23937: COB_LIBRARY_PATH ${exec_prefix}/lib/gnucobol | configure:23939: COB_OBJECT_EXT o | configure:23941: COB_MODULE_EXT so | configure:23943: COB_EXE_EXT | configure:23945: COB_SHARED_OPT -shared | configure:23947: COB_PIC_FLAGS -fPIC -DPIC | configure:23949: COB_EXPORT_DYN -rdynamic | configure:23952: COB_STRIP_CMD strip --strip-unneeded | configure:23956: Dynamic loading: System | configure:23962: Use gettext for international messages: yes | configure:23964: Use fcntl for file locking: yes | configure:23966: Use math multiple precision library: gmp | configure:23978: Use curses library for screen I/O: ncurses | configure:24007: Use Berkeley DB for INDEXED I/O: yes | configure:24024: Used for XML I/O: libxml2 | configure:24038: Used for JSON I/O: json-c | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=no | ac_cv_c_const=yes | ac_cv_defined_LIBXML_WRITER_ENABLED_libxml_xmlwriter_h=yes | ac_cv_env_CC_set=set | ac_cv_env_CC_value=tcc | ac_cv_env_CFLAGS_set=set | ac_cv_env_CFLAGS_value=-O3 | 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= | ac_cv_env_LDFLAGS_value= | 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= | ac_cv_env_build_alias_value= | ac_cv_env_host_alias_set= | ac_cv_env_host_alias_value= | ac_cv_env_target_alias_set= | ac_cv_env_target_alias_value= | ac_cv_file___libcob_cJSON_c=no | ac_cv_func__doprnt=no | ac_cv_func_canonicalize_file_name=yes | ac_cv_func_dlopen=no | 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_cJSON_h=no | ac_cv_header_cjson_cJSON_h=no | ac_cv_header_db_h=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_json_h=yes | ac_cv_header_libxml_uri_h=yes | ac_cv_header_libxml_xmlversion_h=yes | ac_cv_header_libxml_xmlwriter_h=yes | ac_cv_header_locale_h=yes | ac_cv_header_malloc_h=yes | ac_cv_header_memory_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_ncurses_h=yes | ac_cv_header_ncursesw_curses_h=no | ac_cv_header_ncursesw_ncurses_h=no | ac_cv_header_signal_h=yes | ac_cv_header_stdc=yes | ac_cv_header_stddef_h=yes | ac_cv_header_stdint_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_dlopen=no | ac_cv_lib_dl_dladdr=yes | ac_cv_lib_dl_dlopen=yes | ac_cv_lib_dld_shl_load=no | ac_cv_lib_gmp_____gmp_get_memory_functions=yes | ac_cv_lib_ncurses_initscr=yes | ac_cv_lib_ncursesw_initscr=yes | ac_cv_objext=o | ac_cv_path_EGREP='/usr/bin/grep -E' | ac_cv_path_FGREP='/usr/bin/grep -F' | ac_cv_path_GMSGFMT=/usr/bin/msgfmt | ac_cv_path_GREP=/usr/bin/grep | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/bin/msgmerge | ac_cv_path_SED=/usr/bin/sed | ac_cv_path_XGETTEXT=/usr/bin/xgettext | ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config | ac_cv_path_install='/usr/bin/install -c' | ac_cv_path_lt_DD=/usr/bin/dd | ac_cv_path_mkdir=/usr/bin/mkdir | ac_cv_prog_AWK=gawk | ac_cv_prog_CPP='tcc -E' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_OBJDUMP=objdump | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_ac_ct_STRIP=strip | ac_cv_prog_cc_c89= | ac_cv_prog_cc_c99= | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_configured_make=make | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | 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='/bin/ld -m elf_x86_64' | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl= | am_cv_CC_dependencies_compiler_type=tcc | 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_deplibs_check_method=pass_all | lt_cv_dlopen=dlopen | lt_cv_dlopen_libs=-ldl | lt_cv_dlopen_self=yes | lt_cv_dlopen_self_static=yes | 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=/bin/ld | lt_cv_path_NM='/usr/bin/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_static_works=no | lt_cv_prog_gnu_ld=yes | lt_cv_sharedlib_from_linklib_cmd='printf %s\n' | lt_cv_shlibpath_overrides_runpath=no | lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\''' | lt_cv_sys_global_symbol_to_c_name_address='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='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='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='/usr/bin/dd bs=4096 count=1' | pkg_cv_GMP_CFLAGS= | pkg_cv_GMP_LIBS='-lgmp ' | pkg_cv_JSON_C_CFLAGS='-I/usr/include/json-c ' | pkg_cv_JSON_C_LIBS='-ljson-c ' | pkg_cv_XML2_CFLAGS='-I/usr/include/libxml2 ' | pkg_cv_XML2_LIBS='-lxml2 ' | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} /home/xebuzer0/Descargas/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='ar' | AS='as' | AUTOCONF='${SHELL} /home/xebuzer0/Descargas/gnucobol-3.1.2/build_aux/missing autoconf' | AUTOHEADER='${SHELL} /home/xebuzer0/Descargas/gnucobol-3.1.2/build_aux/missing autoheader' | AUTOMAKE='${SHELL} /home/xebuzer0/Descargas/gnucobol-3.1.2/build_aux/missing automake-1.16' | AWK='gawk' | CC='tcc' | CCDEPMODE='depmode=tcc' | CFLAGS='-O3' | CJSON_CFLAGS='' | CJSON_LIBS='-lcjson' | COB_BIGENDIAN='no' | COB_CC='tcc' | COB_CFLAGS='-I/usr/local/include -Wno-pointer-sign' | COB_CONFIG_DIR='${datarootdir}/gnucobol/config' | COB_COPY_DIR='${datarootdir}/gnucobol/copy' | COB_EXE_EXT='' | COB_FIX_LIBTOOL='' | COB_HAS_64_BIT_POINTER='yes' | COB_HAS_CURSES='yes' | COB_HAS_ISAM='db' | COB_HAS_JSON='json-c' | COB_HAS_XML2='yes' | COB_LDFLAGS='' | COB_LIBRARY_PATH='${exec_prefix}/lib/gnucobol' | COB_LIBS='-L${exec_prefix}/lib -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='tcc -E' | CPPFLAGS='' | 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='/usr/bin/grep -E' | EXEEXT='' | FGREP='/usr/bin/grep -F' | GCOV='' | GENHTML='' | GETTEXT_MACRO_VERSION='0.20' | GMP_CFLAGS='' | GMP_LIBS='-lgmp ' | GMSGFMT='/usr/bin/msgfmt' | GMSGFMT_015='/usr/bin/msgfmt' | GREP='/usr/bin/grep' | HELP2MAN='${SHELL} /home/xebuzer0/Descargas/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='-I/usr/include/json-c ' | JSON_C_LIBS='-ljson-c ' | LCOV='' | LD='/bin/ld -m elf_x86_64' | LDFLAGS='' | LEX='${SHELL} /home/xebuzer0/Descargas/gnucobol-3.1.2/build_aux/missing flex' | LEXLIB='' | LEX_OUTPUT_ROOT='' | LIBCOB_CPPFLAGS=' -I/usr/include/libxml2 -I/usr/include/json-c ' | LIBCOB_LIBS='-lm -lgmp -lxml2 -ljson-c -lncurses -ldb-5.3 -ldl' | 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} /home/xebuzer0/Descargas/gnucobol-3.1.2/build_aux/missing makeinfo' | MAKE_HAS_PREREQ_ONLY_FALSE='#' | MAKE_HAS_PREREQ_ONLY_TRUE='' | MANIFEST_TOOL=':' | MKDIR_P='/usr/bin/mkdir -p' | MPIR_CFLAGS='' | MPIR_LIBS='' | MSGFMT='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | MSGMERGE_FOR_MSGFMT_OPTION='--for-msgfmt' | NM='/usr/bin/nm -B' | NMEDIT='' | OBJDUMP='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/pkg-config' | PKG_CONFIG_LIBDIR='' | PKG_CONFIG_PATH='' | POSUB='po' | PROGRAMS_LIBS='' | RANLIB='ranlib' | RC='' | SED='/usr/bin/sed' | SET_MAKE='' | SHELL='/bin/sh' | STRIP='strip' | USE_NLS='yes' | VERSION='3.1.2' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS='' | XML2_CFLAGS='-I/usr/include/libxml2 ' | XML2_LIBS='-lxml2 ' | YACC='yacc' | YFLAGS='' | ac_ct_AR='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='_no' | 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='' | build_cpu='x86_64' | build_os='linux-gnu' | build_vendor='pc' | configured_make='make' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | host='x86_64-pc-linux-gnu' | host_alias='' | host_cpu='x86_64' | host_os='linux-gnu' | host_vendor='pc' | htmldir='${docdir}' | ifGNUmake='' | ifnGNUmake='' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /home/xebuzer0/Descargas/gnucobol-3.1.2/build_aux/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${exec_prefix}/libexec' | localedir='${datarootdir}/locale' | localstatedir='${prefix}/var' | mandir='${datarootdir}/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | prefix='/usr/local' | program_transform_name='s,x,x,' | psdir='${docdir}' | runstatedir='${localstatedir}/run' | sbindir='${exec_prefix}/sbin' | sharedstatedir='${prefix}/com' | sysconfdir='${prefix}/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 STDC_HEADERS 1 | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define HAVE_MEMORY_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _GNU_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define _TANDEM_SOURCE 1 | #define HAVE_DLFCN_H 1 | #define LT_OBJDIR ".libs/" | #define STDC_HEADERS 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_XML2 1 | #define WITH_JSON_C 1 | #define WITH_JSON "json-c" | #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_LIBNCURSES 1 | #define HAVE_NCURSES_H 1 | #define WITH_CURSES "ncurses" | #define HAVE_CURSES_FREEALL 1 | #define HAVE_USE_LEGACY_CODING 1 | #define HAVE_COLOR_SET 1 | #define HAVE_DEFINE_KEY 1 | #define HAVE_MOUSEINTERVAL 1 | #define HAVE_HAS_MOUSE 1 | #define HAVE_DB_H 1 | #define WITH_DB 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 "tcc" | #define COB_CFLAGS "-I/usr/local/include -Wno-pointer-sign" | #define COB_LDFLAGS "" | #define COB_LIBS "-L/usr/local/lib -lcob -lm" | #define COB_PIC_FLAGS "-fPIC -DPIC" | #define COB_DEBUG_FLAGS "-g" | #define COB_EXPORT_DYN "-rdynamic" | #define COB_SHARED_OPT "-shared" | #define COB_MODULE_EXT "so" | #define COB_OBJECT_EXT "o" | #define COB_EXE_EXT "" | #define COB_LIBRARY_PATH "/usr/local/lib/gnucobol" | #define COB_STRIP_CMD "strip --strip-unneeded" | #define COB_CONFIG_DIR "/usr/local/share/gnucobol/config" | #define COB_COPY_DIR "/usr/local/share/gnucobol/copy" | #define COBCRUN_NAME "cobcrun" | #define COB_BLD_CC "tcc" | #define COB_BLD_CFLAGS "-O3" | #define COB_BLD_CPPFLAGS "" | #define COB_BLD_LD "/bin/ld -m elf_x86_64" | #define COB_BLD_LDFLAGS "" | #define COB_BLD_BUILD "x86_64-pc-linux-gnu" | | configure: exit 0