## -------------------------------------------- ## ## GnuCOBOL 3.0-dev test suite: GnuCOBOL Tests. ## ## -------------------------------------------- ## testsuite: command line was: $ ./testsuite ## ---------- ## ## ChangeLog. ## ## ---------- ## | | 2017-12-06 Simon 'sf-mensch/human' Sobisch | | * configure.ac: version bump to 3.0-dev | * general: merged code for REPORTWRITER module from reportwriter branch | | 2017-12-05 Simon 'sf-mensch/human' Sobisch | | * Makefile.am: always use non-localized date formatting for tarstamp.h | ## --------- ## ## Platform. ## ## --------- ## hostname = catnip uname -m = x86_64 uname -r = 4.15.0-rc3 uname -s = Linux uname -v = #4 SMP PREEMPT Mon Dec 11 10:45:52 CET 2017 /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/harald/src/gnucobol/trunk/tests PATH: /home/harald/src/gnucobol/trunk/cobc PATH: /home/harald/src/gnucobol/trunk/bin PATH: /home/harald/src/gnucobol/trunk/libcob/.libs PATH: /home/harald/bin PATH: /opt/bin PATH: /opt/gcc/bin PATH: /usr/local/bin PATH: /usr/bin PATH: /bin PATH: /usr/local/games PATH: /usr/games PATH: /opt/solstudio/bin PATH: /opt/ekopath/bin PATH: /opt/voc/bin PATH: /usr/local/sbin PATH: /usr/sbin PATH: /sbin 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/harald/src/gnucobol/trunk/tests' | at_srcdir='.' | abs_srcdir='/home/harald/src/gnucobol/trunk/tests' | at_top_srcdir='..' | abs_top_srcdir='/home/harald/src/gnucobol/trunk' | at_top_build_prefix='../' | abs_top_builddir='/home/harald/src/gnucobol/trunk' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # | # atlocal gnucobol/tests | # | # Copyright (C) 2003-2012, 2014-2017 Free Software Foundation, Inc. | # Written by Keisuke Nishida, Roger While, Simon Sobisch | # | # 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 . | | COB_BIGENDIAN="no" | COB_HAS_ISAM="yes" | COB_HAS_CURSES="yes" | COB_HAS_UTC_OFFSET="yes" | COB_HAS_64_BIT_POINTER="yes" | | COBC="${abs_top_builddir}/cobc/cobc" | COBCRUN="${abs_top_builddir}/bin/cobcrun" | COBCRUN_DIRECT="" # used for running created executables through tools | | TEMPLATE="${abs_srcdir}/testsuite.src" | | FLAGS="-debug -Wall ${COBOL_FLAGS}" | COMPILE="${COBC} -x ${FLAGS}" | COMPILE_ONLY="${COBC} -fsyntax-only ${FLAGS}" | COMPILE_MODULE="${COBC} -m ${FLAGS}" | | COB_OBJECT_EXT="o" | COB_EXE_EXT="" | | PATHSEP=":" | | # Helper script to unify listings (replace version, date, time) | UNIFY_LISTING="${abs_srcdir}/listings-sed.sh" | | # be sure to use the English messages | LC_ALL=C | export LC_ALL | | PATH="${abs_top_builddir}/cobc:${abs_top_builddir}/bin:${abs_top_builddir}/libcob/.libs:${PATH}" | export PATH | | # 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" | } | | # unset all environment variables that are used in libcob | # for runtime configuration | COB_RUNTIME_CONFIG="${abs_top_srcdir}/config/runtime_empty.cfg" | for cobenv in `$COBCRUN --runtime-conf | grep COB_ | cut -d: -f2`; \ | do unset $cobenv; \ | done | | COB_CFLAGS="-I${abs_top_srcdir} -I${abs_top_srcdir}/libcob -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments -pipe" | COB_LDFLAGS="-L${abs_top_builddir}/libcob/.libs " | COB_LIBS="-L${abs_top_builddir}/libcob/.libs -lcob -lm -lgmp -lncursesw -ldb-5.3 -ldl" | COB_CONFIG_DIR="${abs_top_srcdir}/config" | COB_RUNTIME_CONFIG="${COB_CONFIG_DIR}/runtime_empty.cfg" | 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:$COB_LIBRARY_PATH" | COB_UNIX_LF=YES | if test "x$MSYSTEM" != "x" -o "$OSTYPE" = "cygwin"; then | # running MSYS builds as not-visible child processes result in | # "Redirection is not supported" (old PDcurses) and exit 127 (NCurses) | # --> disabling the tests for this feature | COB_HAS_CURSES="no" | # Fix for testcases where cobc translates path to win32 equivalents | if test "x$MSYSTEM" != "x"; then | PATHSEP=";" | fi | fi | | | export COBC COBCRUN COBCRUN_DIRECT | export PATHSEP COB_OBJECT_EXT COB_EXE_EXT | export COB_CFLAGS COB_LDFLAGS COB_LIBS | export COB_CONFIG_DIR COB_RUNTIME_CONFIG COB_COPY_DIR | export LD_LIBRARY_PATH DYLD_LIBRARY_PATH SHLIB_PATH LIBPATH | export COB_LIBRARY_PATH | export COB_UNIX_LF | export COB_HAS_ISAM COB_HAS_CURSES COB_HAS_UTC_OFFSET COB_HAS_64_BIT_POINTER | | | # For rare cases where cobc/libcob may need to know if they're running in test mode: | case $0 in | */testsuite) COB_IS_RUNNING_IN_TESTMODE=1 && export COB_IS_RUNNING_IN_TESTMODE;; | *) unset COB_IS_RUNNING_IN_TESTMODE;; | esac ## ---------------- ## ## Tested programs. ## ## ---------------- ## ./testsuite.at:25: /home/harald/src/gnucobol/trunk/cobc/cobc --version cobc (GnuCOBOL) 3.0-dev.0 Copyright (C) 2017 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 Dec 17 2017 20:45:36 Packaged Sep 06 2017 18:48:43 UTC C version "4.2.1 Compatible Clang 4.0.1 (branches/release_40)" ./testsuite.at:25: /home/harald/src/gnucobol/trunk/bin/cobcrun --version cobcrun (GnuCOBOL) 3.0-dev.0 Copyright (C) 2017 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 Dec 17 2017 20:45:58 Packaged Sep 06 2017 18:48:43 UTC libcob (GnuCOBOL) 3.0-dev.0 Copyright (C) 2017 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 Dec 17 2017 20:45:14 Packaged Sep 06 2017 18:48:43 UTC ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Sun Dec 17 20:46:08 CET 2017 1. Compiler help and information (used_binaries.at:27): ok (0m0.159s 0m0.037s) 2. Compiler outputs (general) (used_binaries.at:46): ok (0m0.559s 0m0.255s) 3. Compiler outputs (file specified) (used_binaries.at:74): ok (0m0.567s 0m0.243s) 4. Compiler outputs (path specified) (used_binaries.at:102): ok (0m0.580s 0m0.243s) 5. Compiler outputs (assembler) (used_binaries.at:131): ok (0m0.397s 0m0.219s) 6. Source file not found (used_binaries.at:166): ok (0m0.014s 0m0.001s) 7. Using full path for cobc (used_binaries.at:176): ok (0m0.169s 0m0.086s) 8. C Compiler optimizations (used_binaries.at:196): ok (0m1.280s 0m0.549s) 9. Invalid cobc option (used_binaries.at:235): ok (0m0.034s 0m0.011s) 10. cobcrun help and information (used_binaries.at:259): ok (0m0.038s 0m0.003s) 11. cobcrun validation (used_binaries.at:269): ok (0m0.303s 0m0.096s) 12. cobcrun -M DSO entry argument (used_binaries.at:309): ok (0m0.309s 0m0.096s) 13. cobcrun -M directory/ default (used_binaries.at:369): ok (0m0.292s 0m0.107s) 14. cobcrun -M directory/dso alternate (used_binaries.at:408): ok (0m0.303s 0m0.102s) 15. cobcrun -M DSO entry multiple arguments (used_binaries.at:459): ok (0m0.293s 0m0.121s) 16. cobcrun error messages (used_binaries.at:504): ok (0m0.045s 0m0.012s) 17. Compile from stdin (used_binaries.at:524): ok (0m0.323s 0m0.126s) 18. Run job after compilation (used_binaries.at:545): ok (0m0.331s 0m0.127s) 19. Run job after compilation (path specified) (used_binaries.at:564): ok (0m0.320s 0m0.142s) 20. Run job with optional arguments (used_binaries.at:584): ok (0m0.485s 0m0.218s) 21. cobc with standard configuration file (configuration.at:22): ok (0m0.016s 0m0.005s) 22. cobc dialect features for all -std (configuration.at:43): ok (0m0.360s 0m0.055s) 23. cobc with configuration file via -std (configuration.at:99): ok (0m0.014s 0m0.008s) 24. cobc with standard configuration file via -conf (configuration.at:120): ok (0m0.020s 0m0.002s) 25. cobc with own configuration file via -conf (configuration.at:141): ok (0m0.033s 0m0.006s) 26. cobc configuration: recursive include (configuration.at:170): ok (0m0.010s 0m0.008s) 27. cobc with -std and -conf (configuration.at:208): ok (0m0.033s 0m0.004s) 28. cobc compiler flag on command line (configuration.at:235): ok (0m0.014s 0m0.005s) 29. cobc compiler flag on command line (priority) (configuration.at:254): ok (0m0.042s 0m0.014s) 30. cobc configuration: entries (configuration.at:287): ok (0m0.034s 0m0.010s) 31. cobc configuration: conf missing (configuration.at:320): ok (0m0.040s 0m0.006s) 32. cobc configuration: conf optional (configuration.at:348): ok (0m0.038s 0m0.003s) 33. cobc configuration: incomplete (configuration.at:384): ok (0m0.008s 0m0.008s) 34. runtime configuration (configuration.at:480): ok (0m0.039s 0m0.009s) 35. runtime configuration file (configuration.at:499): ok (0m0.080s 0m0.040s) 36. runtime configuration: recursive include (configuration.at:542): ok (0m0.011s 0m0.006s) 37. runtime configuration: environment priority (configuration.at:571): ok (0m0.015s 0m0.004s) 38. runtime configuration: entries (configuration.at:584): ok (0m0.011s 0m0.007s) 39. runtime configuration: conf missing (configuration.at:665): ok (0m0.031s 0m0.015s) 40. runtime configuration: conf optional (configuration.at:694): ok (0m0.014s 0m0.001s) 41. COB_CONFIG_DIR test (configuration.at:707): ok (0m0.009s 0m0.009s) 42. COPY: within comment (syn_copy.at:21): ok (0m0.030s 0m0.008s) 43. COPY: file not found (syn_copy.at:50): ok (0m0.015s 0m0.006s) 44. COPY: recursive (syn_copy.at:70): ok (0m0.017s 0m0.005s) 45. COPY: replacement order (syn_copy.at:110): ok (0m0.157s 0m0.087s) 46. COPY: separators (syn_copy.at:137): ok (0m0.164s 0m0.082s) 47. COPY: partial replacement (syn_copy.at:166): ok (0m0.185s 0m0.062s) 48. COPY: LEADING replacement (syn_copy.at:196): ok (0m0.182s 0m0.065s) 49. COPY: TRAILING replacement (syn_copy.at:226): ok (0m0.172s 0m0.080s) 50. COPY: recursive replacement (syn_copy.at:256): ok (0m0.172s 0m0.081s) 51. COPY: fixed/free format (syn_copy.at:286): ok (0m0.171s 0m0.074s) 52. Invalid PROGRAM-ID (syn_definition.at:25): ok (0m0.018s 0m0.003s) 53. Invalid PROGRAM-ID type clause (1) (syn_definition.at:42): ok (0m0.019s 0m0.002s) 54. invalid PROGRAM-ID type clause (2) (syn_definition.at:59): ok (0m0.015s 0m0.005s) 55. INITIAL/RECURSIVE before COMMON (syn_definition.at:76): ok (0m0.017s 0m0.003s) 56. Undefined data name (syn_definition.at:108): ok (0m0.020s 0m0.000s) 57. Undefined group name (syn_definition.at:127): ok (0m0.020s 0m0.000s) 58. Undefined data name in group (syn_definition.at:149): ok (0m0.018s 0m0.003s) 59. Reference not a group name (syn_definition.at:173): ok (0m0.017s 0m0.003s) 60. Incomplete 01 definition (syn_definition.at:197): ok (0m0.015s 0m0.005s) 61. Same labels in different sections (syn_definition.at:217): ok (0m0.015s 0m0.003s) 62. Redefinition of 01 items (syn_definition.at:242): ok (0m0.035s 0m0.005s) 63. Redefinition of 01 and 02 items (syn_definition.at:264): ok (0m0.015s 0m0.006s) 64. Redefinition of 02 items (syn_definition.at:284): ok (0m0.020s 0m0.000s) 65. Redefinition of 77 items (syn_definition.at:305): ok (0m0.018s 0m0.002s) 66. Redefinition of 01 and 77 items (syn_definition.at:325): ok (0m0.019s 0m0.002s) 67. Redefinition of 88 items (syn_definition.at:345): ok (0m0.013s 0m0.008s) 68. Redefinition of program-name by other programs (syn_definition.at:366): ok (0m0.033s 0m0.007s) 69. Redefinition of program-name within program (syn_definition.at:432): ok (0m0.036s 0m0.004s) 70. Redefinition of function-prototype name (syn_definition.at:462): ok (0m0.021s 0m0.000s) 71. PROCEDURE DIVISION RETURNING OMITTED: main (syn_definition.at:487): ok (0m0.158s 0m0.051s) 72. PROCEDURE DIVISION RETURNING OMITTED: FUNCTION (syn_definition.at:507): ok (0m0.015s 0m0.006s) 73. PROCEDURE DIVISION RETURNING item (syn_definition.at:526): ok (0m0.084s 0m0.015s) 74. Data item with same name as program-name (syn_definition.at:621): ok (0m0.019s 0m0.001s) 75. Ambiguous reference to 02 items (syn_definition.at:648): ok (0m0.019s 0m0.002s) 76. Ambiguous reference to 02 and 03 items (syn_definition.at:675): ok (0m0.021s 0m0.000s) 77. Ambiguous reference with qualification (syn_definition.at:701): ok (0m0.018s 0m0.003s) 78. Unique reference with ambiguous qualifiers (syn_definition.at:730): ok (0m0.017s 0m0.003s) 79. Undefined procedure name (syn_definition.at:766): ok (0m0.020s 0m0.001s) 80. Redefinition of section names (syn_definition.at:786): ok (0m0.020s 0m0.001s) 81. Redefinition of section and paragraph names (syn_definition.at:811): ok (0m0.016s 0m0.004s) 83. Redefinition of paragraph names (syn_definition.at:873): ok (0m0.015s 0m0.006s) 84. Ambiguous reference to paragraph name (syn_definition.at:899): ok (0m0.015s 0m0.005s) 85. Non-matching level numbers (extension) (syn_definition.at:925): ok (0m0.016s 0m0.005s) 86. CALL BY VALUE alphanumeric item (extension) (syn_definition.at:949): ok (0m0.015s 0m0.005s) 87. CALL BY VALUE figurative constants (syn_definition.at:971): ok (0m0.014s 0m0.006s) 88. Duplicate identification division header (syn_definition.at:1005): ok (0m0.014s 0m0.006s) 89. RETURNING in STOP RUN / GOBACK / EXIT PROGRAM (syn_definition.at:1020): ok (0m0.530s 0m0.227s) 90. Invalid ENVIRONMENT DIVISION order (syn_definition.at:1071): ok (0m0.014s 0m0.007s) 91. Function without END FUNCTION (syn_definition.at:1096): ok (0m0.015s 0m0.005s) 92. Nested programs without END PROGRAM (syn_definition.at:1110): ok (0m0.017s 0m0.002s) 93. Nested programs not in procedure division (syn_definition.at:1132): ok (0m0.019s 0m0.001s) 94. Screen section starts with 78-level (syn_definition.at:1151): ok (0m0.017s 0m0.002s) 95. Invalid PICTURE strings (syn_definition.at:1167): ok (0m0.036s 0m0.007s) 96. PICTURE strings invalid with BLANK WHEN ZERO (syn_definition.at:1395): ok (0m0.014s 0m0.008s) 97. PICTURE strings invalid with USAGE (syn_definition.at:1418): ok (0m0.017s 0m0.003s) 98. Alphabet definition (syn_definition.at:1438): ok (0m0.032s 0m0.009s) 99. RENAMES item (syn_definition.at:1482): ok (0m0.021s 0m0.000s) 100. RENAMES of 01-, 66- and 77-level items (syn_definition.at:1549): ok (0m0.029s 0m0.011s) 101. Non-numeric subscript (syn_subscripts.at:23): ok (0m0.018s 0m0.003s) 102. Subscript range check (syn_subscripts.at:50): ok (0m0.019s 0m0.002s) 103. Subscript bounds with OCCURS DEPENDING ON (syn_subscripts.at:91): ok (0m0.017s 0m0.003s) 104. Subscripted item requires OCCURS clause (syn_subscripts.at:118): ok (0m0.015s 0m0.005s) 105. Number of subscripts (syn_subscripts.at:144): ok (0m0.030s 0m0.009s) 106. OCCURS with level 01 and 77 (syn_occurs.at:28): ok (0m0.053s 0m0.006s) 107. OCCURS with level 66 (syn_occurs.at:79): ok (0m0.013s 0m0.007s) 108. OCCURS with level 78 (syn_occurs.at:98): ok (0m0.016s 0m0.004s) 109. OCCURS with level 88 (syn_occurs.at:116): ok (0m0.013s 0m0.007s) 110. OCCURS with variable-occurrence data item (syn_occurs.at:135): ok (0m0.050s 0m0.009s) 111. Nested OCCURS clause (syn_occurs.at:196): ok (0m0.015s 0m0.004s) 112. OCCURS DEPENDING with wrong size (syn_occurs.at:233): ok (0m0.015s 0m0.006s) 113. OCCURS DEPENDING followed by another field (syn_occurs.at:269): ok (0m0.032s 0m0.006s) 114. OCCURS with unmatched DEPENDING / TO phrases (syn_occurs.at:310): ok (0m0.056s 0m0.004s) 115. OCCURS INDEXED before KEY (syn_occurs.at:345): ok (0m0.026s 0m0.013s) 116. OCCURS size check (syn_occurs.at:383): ok (0m0.040s 0m0.001s) 117. REDEFINES: not following entry-name (syn_redefines.at:28): ok (0m0.037s 0m0.003s) 118. REDEFINES: level 02 by 01 (syn_redefines.at:53): ok (0m0.020s 0m0.001s) 119. REDEFINES: level 03 by 02 (syn_redefines.at:74): ok (0m0.019s 0m0.001s) 120. REDEFINES: level 66 (syn_redefines.at:96): ok (0m0.017s 0m0.003s) 121. REDEFINES: level 88 (syn_redefines.at:118): ok (0m0.020s 0m0.000s) 122. REDEFINES: lower level number (syn_redefines.at:147): ok (0m0.020s 0m0.001s) 123. REDEFINES: with OCCURS (syn_redefines.at:173): ok (0m0.017s 0m0.003s) 124. REDEFINES: with subscript (syn_redefines.at:194): ok (0m0.019s 0m0.001s) 125. REDEFINES: with variable occurrence (syn_redefines.at:216): ok (0m0.016s 0m0.004s) 126. REDEFINES: with qualification (syn_redefines.at:251): ok (0m0.013s 0m0.008s) 127. REDEFINES: multiple redefinition (syn_redefines.at:277): ok (0m0.046s 0m0.002s) 128. REDEFINES: size exceeds (syn_redefines.at:305): ok (0m0.015s 0m0.006s) 129. REDEFINES: with VALUE (syn_redefines.at:338): ok (0m0.180s 0m0.084s) 130. REDEFINES: with intervention (syn_redefines.at:370): ok (0m0.018s 0m0.003s) 131. REDEFINES: within REDEFINES (syn_redefines.at:399): ok (0m0.014s 0m0.006s) 132. REDEFINES: non-referenced ambiguous item (syn_redefines.at:419): ok (0m0.012s 0m0.008s) 133. Numeric item (integer) (syn_value.at:43): ok (0m0.018s 0m0.002s) 134. Numeric item (non-integer) (syn_value.at:69): ok (0m0.019s 0m0.003s) 135. Numeric item with picture P (syn_value.at:92): ok (0m0.018s 0m0.003s) 136. Signed numeric literal (syn_value.at:124): ok (0m0.016s 0m0.005s) 137. Alphabetic item (syn_value.at:150): ok (0m0.015s 0m0.006s) 138. Alphanumeric item (syn_value.at:176): ok (0m0.020s 0m0.001s) 139. Alphanumeric group item (syn_value.at:198): ok (0m0.018s 0m0.003s) 140. Numeric-edited item (syn_value.at:233): ok (0m0.056s 0m0.014s) 141. Alphanumeric-edited item (syn_value.at:266): ok (0m0.019s 0m0.003s) 142. Implicit picture from value (syn_value.at:334): ok (0m0.032s 0m0.008s) 143. ASSIGN to device-name (syn_file.at:22): ok (0m0.105s 0m0.011s) 144. ASSIGN to printer-name (syn_file.at:89): ok (0m0.106s 0m0.011s) 145. ASSIGN to lsq-device-name (syn_file.at:156): ok (0m0.039s 0m0.000s) 146. SELECT without ASSIGN (syn_file.at:211): ok (0m0.016s 0m0.004s) 147. START on SEQUENTIAL file (syn_file.at:239): ok (0m0.020s 0m0.001s) 148. valid key items (syn_file.at:269): ok (0m0.018s 0m0.001s) 149. invalid key items (syn_file.at:319): ok (0m0.013s 0m0.007s) 150. variable record length (syn_file.at:371): ok (0m0.069s 0m0.011s) 151. variable record length DEPENDING item (syn_file.at:475): ok (0m0.027s 0m0.013s) 152. DECLARATIVES invalid procedure reference (syn_file.at:549): ok (0m0.084s 0m0.015s) 153. DECLARATIVES invalid procedure reference (3) (syn_file.at:639): ok (0m0.018s 0m0.002s) 154. RECORDING MODE (syn_file.at:680): ok (0m0.015s 0m0.004s) 155. CODE-SET clause (syn_file.at:709): ok (0m0.018s 0m0.002s) 156. CODE-SET FOR clause (syn_file.at:745): ok (0m0.019s 0m0.001s) 157. WRITE / REWRITE FROM clause and FILE (syn_file.at:779): ok (0m0.014s 0m0.007s) 158. Clauses following invalid ACCESS clause (syn_file.at:840): ok (0m0.019s 0m0.001s) 159. RELATIVE KEY type checks (syn_file.at:864): ok (0m0.016s 0m0.004s) 160. Mismatched KEY clause (syn_file.at:924): ok (0m0.017s 0m0.006s) 161. RECORD DELIMITER (syn_file.at:949): ok (0m0.021s 0m0.000s) 162. REPORT error/warning (syn_reportwriter.at:23): ok (0m0.018s 0m0.003s) 163. REPORT not positive integers in COL / LINE PLUS (syn_reportwriter.at:125): ok (0m0.018s 0m0.003s) 164. Missing DETAIL line (syn_reportwriter.at:176): ok (0m0.016s 0m0.005s) 165. REPORT LINE PLUS ZERO (syn_reportwriter.at:219): ok (0m0.010s 0m0.011s) 166. Incorrect REPORT NAME (syn_reportwriter.at:269): ok (0m0.038s 0m0.008s) 167. REPORT with PLUS RIGHT/CENTER (syn_reportwriter.at:386): ok (0m0.017s 0m0.004s) 168. PAGE LIMITS clause (syn_reportwriter.at:479): ok (0m0.019s 0m0.001s) 169. Report FD without period (syn_reportwriter.at:514): ok (0m0.019s 0m0.001s) 170. valid reference modification (syn_refmod.at:25): ok (0m0.163s 0m0.080s) 171. Static out of bounds (syn_refmod.at:51): ok (0m0.018s 0m0.003s) 172. constant-folding out of bounds (syn_refmod.at:82): ok (0m0.030s 0m0.009s) 173. ambiguous AND/OR (syn_misc.at:23): ok (0m0.015s 0m0.005s) 174. warn constant expressions (syn_misc.at:54): ok (0m0.018s 0m0.003s) 175. warn literal size (syn_misc.at:90): ok (0m0.012s 0m0.009s) 176. Invalid conditional expression (1) (syn_misc.at:287): ok (0m0.017s 0m0.004s) 177. Invalid conditional expression (2) (syn_misc.at:400): ok (0m0.017s 0m0.004s) 178. Valid conditional expression (syn_misc.at:456): ok (0m0.341s 0m0.147s) 179. missing headers (syn_misc.at:489): ok (0m0.035s 0m0.005s) 180. one line program (syn_misc.at:539): ok (0m0.032s 0m0.007s) 181. empty program (syn_misc.at:558): ok (0m0.054s 0m0.015s) 182. INITIALIZE constant (syn_misc.at:597): ok (0m0.017s 0m0.003s) 183. CLASS duplicate values (syn_misc.at:624): ok (0m0.020s 0m0.000s) 184. INSPECT invalid size (syn_misc.at:659): ok (0m0.012s 0m0.008s) 185. INSPECT invalid target (syn_misc.at:688): ok (0m0.015s 0m0.005s) 186. INSPECT missing keyword (syn_misc.at:711): ok (0m0.010s 0m0.010s) 187. INSPECT repeated keywords (syn_misc.at:732): ok (0m0.019s 0m0.001s) 188. INSPECT incomplete clause (syn_misc.at:764): ok (0m0.017s 0m0.003s) 189. INSPECT multiple BEFORE/AFTER clauses (syn_misc.at:786): ok (0m0.020s 0m0.001s) 190. maximum data size (syn_misc.at:809): ok (0m0.014s 0m0.007s) 191. unreachable statement (syn_misc.at:838): ok (0m0.015s 0m0.005s) 192. CRT STATUS (syn_misc.at:880): ok (0m0.037s 0m0.003s) 193. CURRENCY SIGN (syn_misc.at:922): ok (0m0.119s 0m0.019s) 194. SWITCHES (syn_misc.at:1034): ok (0m0.045s 0m0.006s) 195. unexpected mnemonic-name location (syn_misc.at:1161): ok (0m0.018s 0m0.003s) 196. wrong device for mnemonic-name (syn_misc.at:1188): ok (0m0.019s 0m0.002s) 197. missing mnemonic-name declaration (syn_misc.at:1213): ok (0m0.017s 0m0.004s) 198. unknown device in dialect (syn_misc.at:1234): ok (0m0.032s 0m0.008s) 199. ACCEPT WITH ( NO ) UPDATE / DEFAULT (syn_misc.at:1264): ok (0m0.017s 0m0.003s) 200. ACCEPT WITH AUTO / TAB (syn_misc.at:1289): ok (0m0.018s 0m0.002s) 201. ACCEPT WITH LOWER / UPPER (syn_misc.at:1314): ok (0m0.014s 0m0.005s) 202. ACCEPT WITH SIZE (syn_misc.at:1336): ok (0m0.018s 0m0.001s) 203. DISPLAY WITH SIZE (syn_misc.at:1365): ok (0m0.014s 0m0.006s) 204. source text after program-text area (syn_misc.at:1390): ok (0m0.016s 0m0.004s) 205. line overflow in Fixed-form / Free-form (syn_misc.at:1411): ok (0m0.047s 0m0.014s) 206. continuation Indicator - too many lines (syn_misc.at:1459): ok (0m0.156s 0m0.007s) 207. continuation of COBOL words (syn_misc.at:2016): ok (0m0.032s 0m0.009s) 208. literal too long (syn_misc.at:2037): ok (0m0.094s 0m0.019s) 209. line and floating comments (syn_misc.at:2272): ok (0m0.799s 0m0.306s) 210. word length (syn_misc.at:2433): ok (0m0.110s 0m0.027s) 211. Numeric literals (syn_misc.at:2596): ok (0m0.050s 0m0.011s) 212. floating-point literals (syn_misc.at:2775): ok (0m0.039s 0m0.001s) 213. X literals (syn_misc.at:2880): ok (0m0.016s 0m0.004s) 214. national literals (syn_misc.at:2907): ok (0m0.031s 0m0.007s) 215. NX literals (syn_misc.at:2937): ok (0m0.037s 0m0.002s) 216. binary literals (syn_misc.at:2975): ok (0m0.048s 0m0.006s) 217. binary-hexadecimal literals (syn_misc.at:3011): ok (0m0.027s 0m0.010s) 218. ACUCOBOL literals (syn_misc.at:3040): ok (0m0.054s 0m0.007s) 219. Segmentation Module (syn_misc.at:3102): ok (0m0.029s 0m0.009s) 220. ACUCOBOL 32bit literal size (syn_misc.at:3194): skipped (syn_misc.at:3196) 221. ACUCOBOL USAGE HANDLE (syn_misc.at:3225): ok (0m0.048s 0m0.003s) 222. ACUCOBOL WINDOW statements (syn_misc.at:3306): ok (0m0.026s 0m0.005s) 223. ACUCOBOL GRAPHICAL controls (syn_misc.at:3354): ok (0m0.025s 0m0.007s) 224. DISPLAY MESSAGE BOX (syn_misc.at:3433): ok (0m0.029s 0m0.002s) 225. DISPLAY OMITTED (syn_misc.at:3476): ok (0m0.020s 0m0.001s) 226. CGI: EXTERNAL-FORM (syn_misc.at:3497): ok (0m0.025s 0m0.007s) 227. adding/removing reserved words (syn_misc.at:3552): ok (0m0.015s 0m0.005s) 228. adding aliases (syn_misc.at:3579): ok (0m0.062s 0m0.014s) 229. overriding default words (syn_misc.at:3613): ok (0m0.037s 0m0.003s) 230. complete specified word list (syn_misc.at:3643): ok (0m0.054s 0m0.016s) 231. ANY LENGTH item as BY VALUE formal parameter (syn_misc.at:3664): ok (0m0.018s 0m0.001s) 232. swapped SOURCE- and OBJECT-COMPUTER (syn_misc.at:3687): ok (0m0.048s 0m0.009s) 233. CONF. SECTION paragraphs in wrong order (syn_misc.at:3709): ok (0m0.067s 0m0.011s) 234. NOT ON EXCEPTION with STATIC CALL convention (syn_misc.at:3781): ok (0m0.067s 0m0.012s) 235. NOT ON EXCEPTION phrases before ON EXCEPTION (syn_misc.at:3829): ok (0m0.032s 0m0.006s) 236. wrong dialect hints (syn_misc.at:3893): ok (0m0.017s 0m0.002s) 237. redundant periods (syn_misc.at:3917): ok (0m0.018s 0m0.003s) 238. IF-ELSE statement list with invalid syntax (syn_misc.at:3947): ok (0m0.019s 0m0.001s) 239. EVALUATE statement with invalid syntax (syn_misc.at:3980): ok (0m0.011s 0m0.009s) 240. MF reserved word directives (syn_misc.at:4025): ok (0m0.020s 0m0.001s) 241. STRING / UNSTRING with invalid syntax (syn_misc.at:4080): ok (0m0.018s 0m0.002s) 242. use of program-prototypes (syn_misc.at:4145): ok (0m0.021s 0m0.000s) 243. invalid INSPECT/TRANSFORM operands (syn_misc.at:4172): ok (0m0.020s 0m0.000s) 244. SIGN clause checks (syn_misc.at:4216): ok (0m0.019s 0m0.001s) 245. conflicting entry conventions (syn_misc.at:4241): ok (0m0.019s 0m0.002s) 246. ADD / SUBTRACT TABLE (syn_misc.at:4264): ok (0m0.018s 0m0.003s) 247. Empty PERFORM with DEBUGGING MODE (syn_misc.at:4307): ok (0m0.015s 0m0.004s) 248. STOP identifier (syn_misc.at:4334): ok (0m0.035s 0m0.004s) 249. 01 CONSTANT (syn_misc.at:4360): ok (0m0.084s 0m0.020s) 250. 78 VALUE (syn_misc.at:4408): ok (0m0.059s 0m0.012s) 251. level 78 NEXT / START OF (syn_misc.at:4450): ok (0m0.014s 0m0.007s) 252. Constant Expressions (1) (syn_misc.at:4508): ok (0m0.014s 0m0.007s) 254. CONSTANT LENGTH (syn_misc.at:4696): ok (0m0.166s 0m0.078s) 255. ANY LENGTH/NUMERIC with incorrect PIC (syn_misc.at:4717): ok (0m0.016s 0m0.005s) 256. SET SOURCEFORMAT syntax checks (syn_misc.at:4751): ok (0m0.014s 0m0.003s) 257. WHEN-COMPILED register in dialect (syn_misc.at:4776): ok (0m0.088s 0m0.014s) 258. MOVE SPACE TO numeric or numeric-edited item (syn_move.at:37): ok (0m0.019s 0m0.001s) 259. MOVE ZERO TO alphabetic item (syn_move.at:63): ok (0m0.020s 0m0.001s) 260. MOVE alphabetic TO x (syn_move.at:89): ok (0m0.019s 0m0.002s) 261. MOVE alphanumeric TO x (syn_move.at:120): ok (0m0.015s 0m0.005s) 262. MOVE alphanumeric-edited TO x (syn_move.at:148): ok (0m0.019s 0m0.002s) 263. MOVE numeric (integer) TO x (syn_move.at:179): ok (0m0.019s 0m0.002s) 264. MOVE numeric (non-integer) TO x (syn_move.at:209): ok (0m0.016s 0m0.004s) 265. MOVE numeric-edited TO x (syn_move.at:241): ok (0m0.019s 0m0.002s) 266. CORRESPONDING - Operands must be groups (syn_move.at:276): ok (0m0.017s 0m0.004s) 267. CORRESPONDING - Target has no matching items (syn_move.at:306): ok (0m0.017s 0m0.003s) 268. MOVE to erroneous field (syn_move.at:332): ok (0m0.013s 0m0.008s) 269. Overlapping MOVE (syn_move.at:355): ok (0m0.510s 0m0.244s) 270. invalid source for MOVE (syn_move.at:435): ok (0m0.017s 0m0.003s) 271. invalid target for MOVE (syn_move.at:465): ok (0m0.020s 0m0.001s) 272. SET error (syn_move.at:501): ok (0m0.020s 0m0.001s) 273. Category check of Format 1 (syn_multiply.at:28): ok (0m0.020s 0m0.000s) 274. Category check of Format 2 (syn_multiply.at:67): ok (0m0.016s 0m0.005s) 275. Category check of literals (syn_multiply.at:108): ok (0m0.014s 0m0.006s) 276. Flexible ACCEPT/DISPLAY syntax (syn_screen.at:24): ok (0m0.016s 0m0.005s) 277. Duplicate ACCEPT/DISPLAY clauses (syn_screen.at:92): ok (0m0.015s 0m0.005s) 278. AT clause (syn_screen.at:121): ok (0m0.018s 0m0.003s) 279. ACCEPT/DISPLAY extensions detection (syn_screen.at:165): ok (0m0.020s 0m0.000s) 280. FROM clause (syn_screen.at:211): ok (0m0.016s 0m0.003s) 281. SCREEN SECTION clause numbers (syn_screen.at:237): ok (0m0.020s 0m0.001s) 282. Screen clauses (syn_screen.at:265): ok (0m0.018s 0m0.003s) 283. ACCEPT ON EXCEPTION/ESCAPE (syn_screen.at:291): ok (0m0.016s 0m0.003s) 284. Referencing 88-level (syn_screen.at:321): ok (0m0.012s 0m0.008s) 285. Conflicting screen clauses (syn_screen.at:351): ok (0m0.033s 0m0.008s) 286. Redundant screen clauses (syn_screen.at:412): ok (0m0.017s 0m0.004s) 287. Screen item OCCURS w-/wo relative LINE/COL (syn_screen.at:445): ok (0m0.054s 0m0.007s) 288. VALUE clause missing (syn_screen.at:505): ok (0m0.015s 0m0.006s) 289. FULL on numeric item (syn_screen.at:529): ok (0m0.013s 0m0.008s) 290. SET: misc (syn_set.at:24): ok (0m0.018s 0m0.002s) 291. ANY LENGTH / NUMERIC as function RETURNING item (syn_functions.at:22): ok (0m0.033s 0m0.008s) 292. REPOSITORY INTRINSIC phrase (syn_functions.at:64): ok (0m0.017s 0m0.002s) 293. REPOSITORY FUNCTION phrase (syn_functions.at:87): ok (0m0.019s 0m0.001s) 294. Redundant REPOSITORY entries (syn_functions.at:135): ok (0m0.020s 0m0.001s) 295. Missing prototype/definition (syn_functions.at:174): ok (0m0.016s 0m0.005s) 296. Empty function (syn_functions.at:205): ok (0m0.015s 0m0.008s) 297. Function definition inside program (syn_functions.at:232): ok (0m0.014s 0m0.007s) 298. Intrinsic functions: dialect (syn_functions.at:255): ok (0m0.044s 0m0.006s) 299. Intrinsic functions: replaced (syn_functions.at:280): ok (0m0.029s 0m0.010s) 300. Intrinsic functions: number of arguments (syn_functions.at:324): ok (0m0.020s 0m0.001s) 301. Intrinsic functions: reference modification (syn_functions.at:364): ok (0m0.020s 0m0.001s) 302. Intrinsic functions: Parameter type (syn_functions.at:412): ok (0m0.016s 0m0.005s) 303. invalid formatted date/time args (syn_functions.at:435): ok (0m0.019s 0m0.003s) 304. invalid formats w/ DECIMAL-POINT IS COMMA (syn_functions.at:516): ok (0m0.018s 0m0.002s) 305. Specified offset and SYSTEM-OFFSET (syn_functions.at:550): ok (0m0.016s 0m0.004s) 306. FUNCTION LENGTH / BYTE-LENGTH (syn_functions.at:574): ok (0m0.020s 0m0.001s) 307. COPY within comment (listings.at:21): ok (0m0.041s 0m0.009s) 308. Replacement w/o strings (listings.at:97): ok (0m0.023s 0m0.002s) 309. COPY replacement order (listings.at:160): ok (0m0.052s 0m0.014s) 310. COPY separators (listings.at:263): ok (0m0.026s 0m0.000s) 311. COPY partial replacement (listings.at:329): ok (0m0.023s 0m0.003s) 312. COPY LEADING replacement (listings.at:399): ok (0m0.025s 0m0.001s) 313. COPY TRAILING replacement (listings.at:469): ok (0m0.023s 0m0.004s) 314. COPY recursive replacement (listings.at:540): ok (0m0.023s 0m0.004s) 315. COPY multiple files (listings.at:606): ok (0m0.028s 0m0.002s) 316. Error/Warning messages (listings.at:821): ok (0m0.155s 0m0.031s) 317. Two source files (listings.at:1195): ok (0m0.020s 0m0.006s) 318. Multiple programs in one file (listings.at:1263): ok (0m0.430s 0m0.187s) 320. Wide listing (listings.at:1669): ok (0m0.040s 0m0.009s) 321. Symbols: simple (listings.at:1757): ok (0m0.061s 0m0.014s) 322. Symbols: pointer (listings.at:1923): ok (0m0.021s 0m0.005s) 323. Symbols: multiple programs/functions (listings.at:2203): ok (0m0.023s 0m0.003s) 324. Symbols: OCCURS/REDEFINES (listings.at:2330): ok (0m0.019s 0m0.008s) 325. Conditional compilation (listings.at:2443): ok (0m0.018s 0m0.007s) 326. File descriptions (listings.at:2503): ok (0m0.018s 0m0.010s) 327. Invalid PICTURE strings (listings.at:2856): ok (0m0.025s 0m0.003s) 328. Variable format (listings.at:3177): ok (0m0.022s 0m0.004s) 329. LISTING directive (listings.at:3221): ok (0m0.019s 0m0.008s) 330. Listing-directive statements (listings.at:3322): ok (0m0.031s 0m0.005s) 331. Eject page (listings.at:3383): ok (0m0.082s 0m0.019s) 332. Cross reference (listings.at:3592): ok (0m0.050s 0m0.008s) 333. DISPLAY literals (run_fundamental.at:23): ok (0m0.181s 0m0.072s) 334. DISPLAY literals, DECIMAL-POINT is COMMA (run_fundamental.at:85): ok (0m0.174s 0m0.078s) 335. Hexadecimal literal (run_fundamental.at:124): ok (0m0.290s 0m0.118s) 336. DISPLAY data items with VALUE clause (run_fundamental.at:167): ok (0m0.156s 0m0.095s) 337. DISPLAY data items with MOVE statement (run_fundamental.at:214): ok (0m0.177s 0m0.073s) 338. MOVE to edited item (1) (run_fundamental.at:268): ok (0m0.174s 0m0.077s) 339. MOVE to edited item (2) (run_fundamental.at:317): ok (0m0.160s 0m0.094s) 340. MOVE to item with simple and floating insertion (run_fundamental.at:366): ok (0m0.149s 0m0.098s) 341. MOVE to JUSTIFIED item (run_fundamental.at:396): ok (0m0.148s 0m0.100s) 342. MOVE integer literal to alphanumeric (run_fundamental.at:441): ok (0m0.189s 0m0.063s) 343. Check for equality of FLOAT-SHORT / FLOAT-LONG (run_fundamental.at:466): ok (0m0.180s 0m0.075s) 344. Overlapping MOVE (run_fundamental.at:589): ok (0m0.481s 0m0.212s) 345. Overlapping MOVE (run_fundamental.at:690): ok (0m0.167s 0m0.083s) 346. IBM MOVE (run_fundamental.at:732): ok (0m0.161s 0m0.092s) 347. ALPHABETIC test (run_fundamental.at:771): ok (0m0.163s 0m0.088s) 348. ALPHABETIC-UPPER test (run_fundamental.at:803): ok (0m0.155s 0m0.094s) 349. ALPHABETIC-LOWER test (run_fundamental.at:835): ok (0m0.157s 0m0.089s) 350. GLOBAL at same level (run_fundamental.at:867): ok (0m0.182s 0m0.074s) 351. GLOBAL at lower level (run_fundamental.at:916): ok (0m0.165s 0m0.087s) 352. GLOBAL CONSTANT (run_fundamental.at:965): ok (0m0.186s 0m0.077s) 353. GLOBAL identifiers from ENVIRONMENT DIVISION (run_fundamental.at:1050): ok (0m0.188s 0m0.078s) 354. Entry point visibility (1) (run_fundamental.at:1131): ok (0m0.322s 0m0.119s) 355. Entry point visibility (2) (run_fundamental.at:1163): ok (0m0.281s 0m0.125s) 356. Contained program visibility (1) (run_fundamental.at:1196): ok (0m0.180s 0m0.076s) 357. Contained program visibility (2) (run_fundamental.at:1251): ok (0m0.174s 0m0.083s) 358. Contained program visibility (3) (run_fundamental.at:1304): ok (0m0.160s 0m0.097s) 359. Contained program visibility (4) (run_fundamental.at:1355): ok (0m0.189s 0m0.071s) 360. CALL/CANCEL with program-prototype-name (run_fundamental.at:1410): ok (0m0.187s 0m0.081s) 361. GLOBAL FD (1) (run_fundamental.at:1483): ok (0m0.159s 0m0.092s) 362. GLOBAL FD (2) (run_fundamental.at:1533): ok (0m0.184s 0m0.072s) 363. GLOBAL FD (3) (run_fundamental.at:1583): ok (0m0.167s 0m0.085s) 364. GLOBAL FD (4) (run_fundamental.at:1633): ok (0m0.170s 0m0.083s) 365. CANCEL test (1) (run_fundamental.at:1683): ok (0m0.191s 0m0.064s) 366. CANCEL test (2) (run_fundamental.at:1710): ok (0m0.310s 0m0.137s) 367. CANCEL test (3) (run_fundamental.at:1750): ok (0m0.310s 0m0.133s) 368. Separate sign positions (1) (run_fundamental.at:1793): ok (0m0.166s 0m0.083s) 369. Separate sign positions (2) (run_fundamental.at:1817): ok (0m0.326s 0m0.137s) 370. Context sensitive words (1) (run_fundamental.at:1850): ok (0m0.171s 0m0.075s) 371. Context sensitive words (2) (run_fundamental.at:1873): ok (0m0.178s 0m0.073s) 372. Context sensitive words (3) (run_fundamental.at:1897): ok (0m0.172s 0m0.074s) 373. Context sensitive words (4) (run_fundamental.at:1921): ok (0m0.193s 0m0.055s) 374. Context sensitive words (5) (run_fundamental.at:1946): ok (0m0.170s 0m0.082s) 375. Context sensitive words (6) (run_fundamental.at:1969): ok (0m0.170s 0m0.077s) 376. Context sensitive words (7) (run_fundamental.at:1991): ok (0m0.188s 0m0.062s) 377. ROUNDED AWAY-FROM-ZERO (run_fundamental.at:2018): ok (0m0.165s 0m0.085s) 378. ROUNDED NEAREST-AWAY-FROM-ZERO (run_fundamental.at:2081): ok (0m0.171s 0m0.084s) 379. ROUNDED NEAREST-EVEN (run_fundamental.at:2144): ok (0m0.184s 0m0.066s) 380. ROUNDED NEAREST-TOWARD-ZERO (run_fundamental.at:2207): ok (0m0.171s 0m0.080s) 381. ROUNDED TOWARD-GREATER (run_fundamental.at:2270): ok (0m0.176s 0m0.074s) 382. ROUNDED TOWARD-LESSER (run_fundamental.at:2333): ok (0m0.184s 0m0.068s) 383. ROUNDED TRUNCATION (run_fundamental.at:2396): ok (0m0.184s 0m0.067s) 384. Numeric operations (1) (run_fundamental.at:2459): ok (0m0.165s 0m0.085s) 385. Numeric operations (2) (run_fundamental.at:2503): ok (0m0.178s 0m0.098s) 386. Numeric operations (3) (run_fundamental.at:2809): ok (0m0.189s 0m0.085s) 387. Numeric operations (4) (run_fundamental.at:3115): ok (0m0.192s 0m0.084s) 388. Numeric operations (5) (run_fundamental.at:3421): ok (0m0.231s 0m0.060s) 389. Numeric operations (6) (run_fundamental.at:3727): ok (0m0.292s 0m0.139s) 390. Numeric operations (7) (run_fundamental.at:3796): ok (0m0.171s 0m0.080s) 391. Numeric operations (8) (run_fundamental.at:4088): ok (0m0.164s 0m0.092s) 392. ADD CORRESPONDING (run_fundamental.at:4138): ok (0m0.187s 0m0.063s) 393. ADD CORRESPONDING no match (run_fundamental.at:4186): ok (0m0.163s 0m0.092s) 394. SYNC in OCCURS (run_fundamental.at:4236): ok (0m0.176s 0m0.071s) 395. BLANK WHEN ZERO (run_fundamental.at:4276): ok (0m0.174s 0m0.078s) 396. MULTIPLY BY literal in INITIAL program (run_fundamental.at:4306): ok (0m0.171s 0m0.075s) 397. debugging lines (not active) (run_fundamental.at:4327): ok (0m0.169s 0m0.075s) 398. debugging lines (-fdebugging-line) (run_fundamental.at:4350): ok (0m0.165s 0m0.088s) 399. debugging lines (WITH DEBUGGING MODE) (run_fundamental.at:4373): ok (0m0.157s 0m0.091s) 400. debugging lines, free format (not active) (run_fundamental.at:4399): ok (0m0.175s 0m0.072s) 401. debugging lines, free format (-fdebugging-line) (run_fundamental.at:4422): ok (0m0.161s 0m0.086s) 402. USE FOR DEBUGGING (no DEBUGGING MODE) (run_fundamental.at:4445): ok (0m0.156s 0m0.095s) 403. USE FOR DEBUGGING (COB_SET_DEBUG deactivated) (run_fundamental.at:4490): ok (0m0.152s 0m0.099s) 404. USE FOR DEBUGGING ON ALL PROCEDURES (run_fundamental.at:4535): ok (0m0.179s 0m0.080s) 405. USE FOR DEBUGGING ON procedure (run_fundamental.at:4586): ok (0m0.177s 0m0.075s) 406. USE FOR DEBUGGING (COB_SET_DEBUG switched) (run_fundamental.at:4634): ok (0m0.182s 0m0.078s) 407. USE FOR DEBUGGING ON [ALL] REFERENCES OF field (run_fundamental.at:4683): ok (0m0.182s 0m0.076s) 408. USE FOR DEBUGGING, reference within DEBUGGING (run_fundamental.at:4751): ok (0m0.186s 0m0.069s) 409. USE FOR DEBUGGING, reference with OCCURS (run_fundamental.at:4787): ok (0m0.181s 0m0.070s) 411. USE FOR DEBUGGING file (run_fundamental.at:4857): ok (0m0.188s 0m0.070s) 412. Subscript out of bounds (run_subscripts.at:26): ok (0m0.351s 0m0.145s) 413. Value of DEPENDING ON N out of bounds (run_subscripts.at:71): ok (0m0.329s 0m0.170s) 414. Subscript bounds with OCCURS DEPENDING ON (run_subscripts.at:122): ok (0m0.176s 0m0.072s) 415. Subscript by arithmetic expression (run_subscripts.at:148): ok (0m0.150s 0m0.100s) 416. length of ODO w/- reference modification (run_subscripts.at:179): ok (0m0.167s 0m0.089s) 417. SEARCH ALL with OCCURS DEPENDING ON (run_subscripts.at:235): ok (0m0.200s 0m0.056s) 418. Static reference modification (run_refmod.at:25): ok (0m0.148s 0m0.100s) 419. Dynamic reference modification (run_refmod.at:57): ok (0m0.160s 0m0.086s) 420. Offset underflow (run_refmod.at:94): ok (0m0.175s 0m0.074s) 421. Offset overflow (run_refmod.at:118): ok (0m0.528s 0m0.223s) 422. Length underflow (run_refmod.at:165): ok (0m0.177s 0m0.077s) 423. Length overflow (run_refmod.at:189): ok (0m0.338s 0m0.159s) 424. Length overflow with offset (run_refmod.at:231): ok (0m0.178s 0m0.072s) 425. ACCEPT OMITTED (simple) (run_accept.at:28): ok (0m0.172s 0m0.076s) 426. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (1) (run_accept.at:54): ok (0m0.172s 0m0.079s) 427. ACCEPT FROM TIME / DATE / DAY / DAY-OF-WEEK (2) (run_accept.at:121): ok (0m0.182s 0m0.069s) 428. ACCEPT DATE / DAY and intrinsic functions (1) (run_accept.at:204): ok (0m0.167s 0m0.080s) 429. ACCEPT DATE / DAY and intrinsic functions (2) (run_accept.at:241): ok (0m0.170s 0m0.081s) 430. ACCEPT OMITTED (SCREEN) (run_accept.at:286): ok (0m0.160s 0m0.091s) 431. INITIALIZE group entry with OCCURS (run_initialize.at:27): ok (0m0.184s 0m0.063s) 432. INITIALIZE OCCURS with numeric edited (run_initialize.at:55): ok (0m0.155s 0m0.093s) 433. INITIALIZE complex group (1) (run_initialize.at:81): ok (0m0.157s 0m0.092s) 434. INITIALIZE complex group (2) (run_initialize.at:108): ok (0m0.171s 0m0.079s) 435. INITIALIZE with REDEFINES (run_initialize.at:135): ok (0m0.177s 0m0.067s) 436. INITIALIZE with FILLER (run_initialize.at:161): ok (0m0.160s 0m0.090s) 437. INITIALIZE of EXTERNAL data items (run_initialize.at:227): ok (0m0.157s 0m0.091s) 438. INITIALIZE with reference modification (run_initialize.at:277): ok (0m0.180s 0m0.069s) 439. Comma separator without space (run_misc.at:23): ok (0m0.174s 0m0.071s) 440. DECIMAL-POINT is COMMA (1) (run_misc.at:44): ok (0m0.169s 0m0.084s) 441. DECIMAL-POINT is COMMA (2) (run_misc.at:72): ok (0m0.160s 0m0.086s) 442. DECIMAL-POINT is COMMA (3) (run_misc.at:100): ok (0m0.160s 0m0.090s) 443. DECIMAL-POINT is COMMA (4) (run_misc.at:128): ok (0m0.187s 0m0.064s) 444. DECIMAL-POINT is COMMA (5) (run_misc.at:156): ok (0m0.181s 0m0.068s) 445. CURRENCY SIGN (run_misc.at:190): ok (0m0.168s 0m0.078s) 447. LOCAL-STORAGE (1) (run_misc.at:268): ok (0m0.330s 0m0.109s) 448. LOCAL-STORAGE (2) (run_misc.at:304): ok (0m0.456s 0m0.178s) 449. EXTERNAL data item (run_misc.at:352): ok (0m0.314s 0m0.128s) 450. EXTERNAL AS data item (run_misc.at:394): ok (0m0.338s 0m0.103s) 452. MOVE to itself (run_misc.at:528): ok (0m0.183s 0m0.064s) 453. MOVE with refmod (run_misc.at:554): ok (0m0.173s 0m0.077s) 454. MOVE with refmod (variable) (run_misc.at:578): ok (0m0.176s 0m0.072s) 455. MOVE with group refmod (run_misc.at:604): ok (0m0.163s 0m0.091s) 456. MOVE indexes (run_misc.at:629): ok (0m0.179s 0m0.073s) 457. MOVE X'00' (run_misc.at:655): ok (0m0.288s 0m0.131s) 458. MOVE Z'literal' (run_misc.at:690): ok (0m0.164s 0m0.081s) 459. Floating continuation indicator (run_misc.at:732): ok (0m0.175s 0m0.072s) 460. Fixed continuation indicator (run_misc.at:754): ok (0m0.189s 0m0.083s) 461. Concatenation operator (run_misc.at:796): ok (0m0.174s 0m0.073s) 462. SOURCE FIXED/FREE directives (run_misc.at:820): ok (0m0.168s 0m0.082s) 463. Level 01 subscripts (run_misc.at:857): ok (0m0.018s 0m0.004s) 464. Class check with reference modification (run_misc.at:879): ok (0m0.182s 0m0.070s) 465. Index and parenthesized expression (run_misc.at:903): ok (0m0.183s 0m0.066s) 466. Alphanumeric and binary numeric (run_misc.at:927): ok (0m0.178s 0m0.069s) 467. Dynamic call with static linking (run_misc.at:954): ok (0m0.533s 0m0.233s) 468. Static call with static linking (run_misc.at:983): ok (0m0.770s 0m0.364s) 469. Dynamic CALL with ON EXCEPTION (run_misc.at:1014): ok (0m0.300s 0m0.145s) 470. Static CALL with ON EXCEPTION (run_misc.at:1046): ok (0m0.769s 0m0.369s) 471. CALL m1. CALL m2. CALL m1. (run_misc.at:1086): ok (0m0.434s 0m0.192s) 472. Recursive CALL of RECURSIVE program (run_misc.at:1141): ok (0m0.444s 0m0.187s) 473. Recursive CALL of INITIAL program (run_misc.at:1193): ok (0m0.454s 0m0.174s) 474. Recursive CALL with RECURSIVE assumed (run_misc.at:1244): ok (0m0.442s 0m0.191s) 475. Recursive CALL with ON EXCEPTION (run_misc.at:1292): ok (0m0.448s 0m0.190s) 476. Multiple calls of INITIAL program (run_misc.at:1349): ok (0m0.332s 0m0.111s) 477. CALL binary literal parameter/LENGTH OF (run_misc.at:1406): ok (0m0.470s 0m0.192s) 478. INSPECT: REPLACING LEADING ZEROS BY SPACES (run_misc.at:1460): ok (0m0.168s 0m0.077s) 479. INSPECT: No repeat conversion check (run_misc.at:1484): ok (0m0.159s 0m0.087s) 480. INSPECT: CONVERTING TO figurative constant (run_misc.at:1508): ok (0m0.178s 0m0.073s) 481. INSPECT: CONVERTING NULL (run_misc.at:1532): ok (0m0.155s 0m0.089s) 482. INSPECT: CONVERTING TO NULL (run_misc.at:1556): ok (0m0.179s 0m0.067s) 483. INSPECT: REPLACING figurative constant (run_misc.at:1580): ok (0m0.164s 0m0.083s) 484. INSPECT: TALLYING BEFORE (run_misc.at:1604): ok (0m0.153s 0m0.094s) 485. INSPECT: TALLYING AFTER (run_misc.at:1639): ok (0m0.163s 0m0.086s) 486. INSPECT: REPLACING TRAILING ZEROS BY SPACES (run_misc.at:1674): ok (0m0.173s 0m0.074s) 487. INSPECT: REPLACING complex (run_misc.at:1698): ok (0m0.171s 0m0.077s) 488. SWITCHES (environment COB_SWITCH_n and SET) (run_misc.at:1724): ok (0m0.175s 0m0.077s) 489. Nested PERFORM (run_misc.at:1821): ok (0m0.185s 0m0.068s) 490. PERFORM VARYING BY -0.2 (run_misc.at:1845): ok (0m0.165s 0m0.081s) 491. PERFORM VARYING BY phrase omitted (run_misc.at:1872): ok (0m0.170s 0m0.095s) 492. EXIT PERFORM (run_misc.at:1903): ok (0m0.176s 0m0.068s) 493. EXIT PERFORM CYCLE (run_misc.at:1928): ok (0m0.172s 0m0.082s) 494. EXIT PARAGRAPH (run_misc.at:1953): ok (0m0.172s 0m0.075s) 495. EXIT SECTION (run_misc.at:1985): ok (0m0.172s 0m0.074s) 496. PERFORM FOREVER / PERFORM UNTIL EXIT (run_misc.at:2019): ok (0m0.166s 0m0.083s) 497. PERFORM inline (1) (run_misc.at:2060): ok (0m0.155s 0m0.091s) 498. PERFORM inline (2) (run_misc.at:2087): ok (0m0.154s 0m0.092s) 499. 88 with FILLER (run_misc.at:2112): ok (0m0.178s 0m0.067s) 500. Non-overflow after overflow (run_misc.at:2141): ok (0m0.159s 0m0.086s) 501. PERFORM ... CONTINUE (run_misc.at:2171): ok (0m0.015s 0m0.005s) 502. STRING with subscript reference (run_misc.at:2188): ok (0m0.180s 0m0.069s) 503. UNSTRING DELIMITED ALL LOW-VALUE (run_misc.at:2215): ok (0m0.175s 0m0.074s) 504. UNSTRING DELIMITED ALL SPACE-2 (run_misc.at:2250): ok (0m0.184s 0m0.066s) 505. UNSTRING DELIMITED POINTER (run_misc.at:2315): ok (0m0.172s 0m0.082s) 506. UNSTRING DELIMITER IN (run_misc.at:2369): ok (0m0.177s 0m0.072s) 507. UNSTRING with FUNCTION / literal (run_misc.at:2411): ok (0m0.190s 0m0.063s) 508. SORT: table sort (run_misc.at:2481): ok (0m0.191s 0m0.058s) 509. SORT: table sort (2) (run_misc.at:2523): ok (0m0.182s 0m0.084s) 510. SORT: table sort (3) (run_misc.at:2648): skipped (run_misc.at:2649) 511. SORT: EBCDIC table sort (run_misc.at:2689): ok (0m0.170s 0m0.079s) 512. PIC ZZZ-, ZZZ+ (run_misc.at:2727): ok (0m0.175s 0m0.077s) 513. PERFORM type OSVS (run_misc.at:2780): ok (0m0.190s 0m0.066s) 514. Sticky LINKAGE (run_misc.at:2817): ok (0m0.307s 0m0.136s) 515. COB_PRE_LOAD test (run_misc.at:2864): ok (0m0.281s 0m0.162s) 516. COB_PRE_LOAD with entry points (run_misc.at:2890): ok (0m0.440s 0m0.201s) 517. Lookup ENTRY from main executable (run_misc.at:2960): ok (0m0.169s 0m0.077s) 518. COB_LOAD_CASE=UPPER test (run_misc.at:3001): ok (0m0.319s 0m0.126s) 519. 88 level with FALSE IS clause (run_misc.at:3027): ok (0m0.171s 0m0.079s) 520. ALLOCATE / FREE with BASED item (1) (run_misc.at:3055): ok (0m0.168s 0m0.084s) 521. ALLOCATE / FREE with BASED item (2) (run_misc.at:3082): ok (0m0.333s 0m0.121s) 522. ALLOCATE CHARACTERS INITIALIZED TO (run_misc.at:3129): ok (0m0.167s 0m0.087s) 523. Initialized value with defaultbyte (run_misc.at:3170): ok (0m0.185s 0m0.060s) 524. CALL with OMITTED parameter (run_misc.at:3195): ok (0m0.329s 0m0.109s) 525. CALL in from C, cob_call_params explicitly set (run_misc.at:3234): ok (0m0.226s 0m0.121s) 526. CALL in from C, cob_call_params unknown (run_misc.at:3294): ok (0m0.230s 0m0.115s) 527. CALL C with callback, PROCEDURE DIVISION EXTERN (run_misc.at:3351): ok (0m0.236s 0m0.112s) 528. CALL C with callback, ENTRY-CONVENTION EXTERN (run_misc.at:3417): ok (0m0.248s 0m0.098s) 529. CALL in from C with init missing / implicit (run_misc.at:3483): ok (0m0.400s 0m0.239s) 530. CALL STATIC C from COBOL (run_misc.at:3535): ok (0m0.208s 0m0.124s) 531. ANY LENGTH (1) (run_misc.at:3591): ok (0m0.297s 0m0.146s) 532. ANY LENGTH (2) (run_misc.at:3634): ok (0m0.319s 0m0.119s) 533. access to BASED item without allocation (run_misc.at:3678): ok (0m0.341s 0m0.150s) 534. access to OPTIONAL LINKAGE item not passed (run_misc.at:3719): ok (0m0.311s 0m0.130s) 535. STOP RUN WITH NORMAL STATUS (run_misc.at:3761): ok (0m0.160s 0m0.090s) 536. STOP RUN WITH ERROR STATUS (run_misc.at:3779): ok (0m0.155s 0m0.089s) 537. DECLARATIVES procedure referencing (run_misc.at:3797): ok (0m0.185s 0m0.066s) 538. DECLARATIVES procedure referencing (multiple) (run_misc.at:3837): ok (0m0.182s 0m0.068s) 539. SYMBOLIC clause (run_misc.at:3881): ok (0m0.177s 0m0.077s) 540. OCCURS clause with 1 entry (run_misc.at:3918): ok (0m0.150s 0m0.099s) 541. Computing of different USAGEs w/o decimal point (run_misc.at:3967): ok (0m0.459s 0m0.155s) 542. Computing of different USAGEs w/- decimal point (run_misc.at:4475): ok (0m0.422s 0m0.189s) 543. C/C++ reserved words/predefined identifiers (run_misc.at:4983): ok (0m0.480s 0m0.184s) 544. ON EXCEPTION clause of DISPLAY (run_misc.at:5443): ok (0m0.164s 0m0.088s) 545. EC-SCREEN-LINE-NUMBER and -STARTING-COLUMN (run_misc.at:5468): ok (0m0.180s 0m0.069s) 546. LINE/COLUMN 0 exceptions (run_misc.at:5509): ok (0m0.159s 0m0.089s) 547. SET LAST EXCEPTION TO OFF (run_misc.at:5547): ok (0m0.157s 0m0.093s) 548. void PROCEDURE (run_misc.at:5579): ok (0m0.298s 0m0.142s) 549. void PROCEDURE, NOTHING return (run_misc.at:5609): ok (0m0.301s 0m0.141s) 550. READY TRACE / RESET TRACE (run_misc.at:5640): ok (0m0.777s 0m0.262s) 551. CALL with program prototypes (run_misc.at:5768): ok (0m0.170s 0m0.088s) 552. REDEFINES values on FILLER and INITIALIZE (run_misc.at:5824): ok (0m0.153s 0m0.098s) 553. PICTURE with constant-name (run_misc.at:5879): ok (0m0.180s 0m0.066s) 554. Quote marks in comment paragraphs (run_misc.at:5904): ok (0m0.345s 0m0.146s) 555. MOVE with -fbinary-truncate (run_misc.at:5929): ok (0m0.351s 0m0.159s) 556. PROGRAM-ID / CALL literal/variable with spaces (run_misc.at:5985): ok (0m0.157s 0m0.108s) 558. DEFAULT ROUNDED MODE (run_misc.at:6269): ok (0m0.168s 0m0.080s) 559. OCCURS INDEXED ASCENDING (run_misc.at:6299): ok (0m0.205s 0m0.049s) 560. ZERO unsigned and negative binary subscript (run_misc.at:6397): ok (0m0.337s 0m0.180s) 561. Default Arithmetic (run_misc.at:6460): ok (0m0.181s 0m0.082s) 562. OSVS Arithmetic (run_misc.at:6564): ok (0m0.188s 0m0.079s) 563. SET CONSTANT directive (run_misc.at:6686): ok (0m0.520s 0m0.243s) 564. DEFINE OVERRIDE (run_misc.at:6789): ok (0m0.150s 0m0.104s) 565. DEFINE Defaults (run_misc.at:6855): ok (0m0.177s 0m0.073s) 566. 78 VALUE (run_misc.at:6921): ok (0m0.160s 0m0.089s) 567. 01 CONSTANT (run_misc.at:6989): ok (0m0.179s 0m0.077s) 568. FLOAT-DECIMAL (run_misc.at:7069): ok (0m0.174s 0m0.076s) 569. READ INTO AT-END sequence (run_file.at:22): ok (0m0.162s 0m0.094s) 570. First READ on empty SEQUENTIAL INDEXED file (run_file.at:59): ok (0m0.197s 0m0.057s) 571. REWRITE a RELATIVE file with RANDOM access (run_file.at:99): ok (0m0.171s 0m0.083s) 572. SORT with SD, I/O SEQUENTIAL (run_file.at:166): ok (0m0.174s 0m0.083s) 573. SORT with SD, I/O LINE SEQUENTIAL (run_file.at:216): ok (0m0.166s 0m0.090s) 574. SORT with SD, I/O LINE SEQUENTIAL same file (run_file.at:275): ok (0m0.173s 0m0.076s) 575. SORT nonexistent file (run_file.at:332): ok (0m0.168s 0m0.082s) 576. ASSIGN with LOCAL-STORAGE item (run_file.at:367): ok (0m0.178s 0m0.072s) 577. ASSIGN with LOCAL-STORAGE item and INITIAL prog (run_file.at:404): ok (0m0.165s 0m0.086s) 579. WRITE+REWRITE FILE name (run_file.at:487): ok (0m0.187s 0m0.081s) 580. START RELATIVE (1) (run_file.at:639): ok (0m0.185s 0m0.065s) 581. START RELATIVE (2) (run_file.at:688): ok (0m0.190s 0m0.071s) 582. Read on optional missing file (run_file.at:765): ok (0m0.185s 0m0.069s) 583. EXTERNAL RELATIVE file (run_file.at:825): ok (0m0.167s 0m0.080s) 584. System routines for directories (run_file.at:860): ok (0m0.169s 0m0.076s) 585. System routines for files (run_file.at:902): ok (0m0.394s 0m0.121s) 586. System routine CBL_COPY_FILE (run_file.at:1072): ok (0m0.167s 0m0.081s) 587. SELECT with ASSIGN in LINKAGE (run_file.at:1107): ok (0m0.201s 0m0.085s) 588. RETURN-CODE moving (run_returncode.at:23): ok (0m0.185s 0m0.061s) 589. RETURN-CODE passing (run_returncode.at:49): ok (0m0.422s 0m0.209s) 590. RETURN-CODE nested (run_returncode.at:101): ok (0m0.171s 0m0.077s) 591. FUNCTION ABS (run_functions.at:24): ok (0m0.176s 0m0.071s) 592. FUNCTION ACOS (run_functions.at:46): ok (0m0.183s 0m0.065s) 593. FUNCTION ANNUITY (run_functions.at:70): ok (0m0.152s 0m0.093s) 594. FUNCTION ASIN (run_functions.at:94): ok (0m0.170s 0m0.079s) 595. FUNCTION ATAN (run_functions.at:118): ok (0m0.146s 0m0.102s) 596. FUNCTION BYTE-LENGTH (run_functions.at:142): ok (0m0.166s 0m0.084s) 597. FUNCTION CHAR (run_functions.at:177): ok (0m0.175s 0m0.075s) 598. FUNCTION COMBINED-DATETIME (run_functions.at:215): ok (0m0.149s 0m0.098s) 599. FUNCTION CONCATENATE (run_functions.at:240): ok (0m0.173s 0m0.073s) 600. FUNCTION CONCATENATE with reference modding (run_functions.at:279): ok (0m0.158s 0m0.090s) 601. FUNCTION as CALL parameter BY CONTENT (run_functions.at:307): ok (0m0.171s 0m0.083s) 602. FUNCTION COS (run_functions.at:343): ok (0m0.153s 0m0.093s) 603. FUNCTION CURRENCY-SYMBOL (run_functions.at:367): ok (0m0.153s 0m0.092s) 604. FUNCTION CURRENT-DATE (run_functions.at:390): ok (0m0.171s 0m0.079s) 605. FUNCTION DATE-OF-INTEGER (run_functions.at:461): ok (0m0.168s 0m0.078s) 606. FUNCTION DATE-TO-YYYYMMDD (run_functions.at:486): ok (0m0.175s 0m0.072s) 607. FUNCTION DAY-OF-INTEGER (run_functions.at:511): ok (0m0.169s 0m0.077s) 608. FUNCTION DAY-TO-YYYYDDD (run_functions.at:536): ok (0m0.196s 0m0.050s) 609. FUNCTION E (run_functions.at:561): ok (0m0.186s 0m0.061s) 610. FUNCTION EXCEPTION-FILE (run_functions.at:585): ok (0m0.153s 0m0.096s) 611. FUNCTION EXCEPTION-LOCATION (run_functions.at:617): ok (0m0.169s 0m0.083s) 612. FUNCTION EXCEPTION-STATEMENT (run_functions.at:653): ok (0m0.176s 0m0.071s) 613. FUNCTION EXCEPTION-STATUS (run_functions.at:685): ok (0m0.193s 0m0.054s) 614. FUNCTION EXP (run_functions.at:717): ok (0m0.142s 0m0.107s) 615. FUNCTION EXP10 (run_functions.at:741): ok (0m0.149s 0m0.094s) 616. FUNCTION FACTORIAL (run_functions.at:766): ok (0m0.157s 0m0.092s) 617. FUNCTION FORMATTED-CURRENT-DATE (run_functions.at:791): ok (0m0.174s 0m0.071s) 618. FUNCTION FORMATTED-DATE (run_functions.at:819): ok (0m0.188s 0m0.068s) 619. FUNCTION FORMATTED-DATE with ref modding (run_functions.at:882): ok (0m0.170s 0m0.076s) 620. FUNCTION FORMATTED-DATETIME (run_functions.at:907): ok (0m0.181s 0m0.066s) 621. FUNCTION FORMATTED-DATETIME with ref modding (run_functions.at:964): ok (0m0.176s 0m0.079s) 622. FUNCTION FORMATTED-TIME (run_functions.at:990): ok (0m0.175s 0m0.090s) 623. FUNCTION FORMATTED-TIME DP.COMMA (run_functions.at:1077): ok (0m0.164s 0m0.083s) 624. FUNCTION FORMATTED-TIME with ref modding (run_functions.at:1108): ok (0m0.154s 0m0.094s) 625. FUNCTION FRACTION-PART (run_functions.at:1133): ok (0m0.177s 0m0.067s) 626. FUNCTION HIGHEST-ALGEBRAIC (run_functions.at:1164): ok (0m0.191s 0m0.067s) 627. FUNCTION INTEGER (run_functions.at:1232): ok (0m0.174s 0m0.072s) 628. FUNCTION INTEGER-OF-DATE (run_functions.at:1265): ok (0m0.174s 0m0.070s) 629. FUNCTION INTEGER-OF-DAY (run_functions.at:1290): ok (0m0.166s 0m0.079s) 630. FUNCTION INTEGER-OF-FORMATTED-DATE (run_functions.at:1315): ok (0m0.145s 0m0.102s) 631. FUNCTION INTEGER-PART (run_functions.at:1365): ok (0m0.159s 0m0.086s) 632. FUNCTION LENGTH (run_functions.at:1391): ok (0m0.164s 0m0.081s) 633. FUNCTION LOCALE-COMPARE (run_functions.at:1417): ok (0m0.171s 0m0.074s) 634. FUNCTION LOCALE-DATE (run_functions.at:1447): ok (0m0.160s 0m0.093s) 635. FUNCTION LOCALE-TIME (run_functions.at:1473): ok (0m0.172s 0m0.077s) 636. FUNCTION LOCALE-TIME-FROM-SECONDS (run_functions.at:1499): ok (0m0.175s 0m0.072s) 637. FUNCTION LOG (run_functions.at:1525): ok (0m0.154s 0m0.089s) 638. FUNCTION LOG10 (run_functions.at:1549): ok (0m0.158s 0m0.092s) 639. FUNCTION LOWER-CASE (run_functions.at:1573): ok (0m0.184s 0m0.076s) 640. FUNCTION LOWER-CASE with reference modding (run_functions.at:1601): ok (0m0.168s 0m0.076s) 641. FUNCTION LOWEST-ALGEBRAIC (run_functions.at:1627): ok (0m0.178s 0m0.081s) 642. FUNCTION MAX (run_functions.at:1680): ok (0m0.160s 0m0.089s) 643. FUNCTION MEAN (run_functions.at:1702): ok (0m0.159s 0m0.089s) 644. FUNCTION MEDIAN (run_functions.at:1724): ok (0m0.175s 0m0.071s) 645. FUNCTION MIDRANGE (run_functions.at:1746): ok (0m0.159s 0m0.086s) 646. FUNCTION MIN (run_functions.at:1768): ok (0m0.153s 0m0.094s) 647. FUNCTION MOD (run_functions.at:1790): ok (0m0.177s 0m0.069s) 648. FUNCTION MODULE-CALLER-ID (run_functions.at:1816): ok (0m0.296s 0m0.142s) 649. FUNCTION MODULE-DATE (run_functions.at:1850): ok (0m0.161s 0m0.086s) 650. FUNCTION MODULE-FORMATTED-DATE (run_functions.at:1875): ok (0m0.176s 0m0.069s) 651. FUNCTION MODULE-ID (run_functions.at:1900): ok (0m0.155s 0m0.089s) 652. FUNCTION MODULE-PATH (run_functions.at:1921): ok (0m0.160s 0m0.090s) 653. FUNCTION MODULE-SOURCE (run_functions.at:1946): ok (0m0.166s 0m0.081s) 654. FUNCTION MODULE-TIME (run_functions.at:1967): ok (0m0.172s 0m0.074s) 655. FUNCTION MONETARY-DECIMAL-POINT (run_functions.at:1992): ok (0m0.161s 0m0.087s) 656. FUNCTION MONETARY-THOUSANDS-SEPARATOR (run_functions.at:2015): ok (0m0.166s 0m0.081s) 657. FUNCTION NUMERIC-DECIMAL-POINT (run_functions.at:2038): ok (0m0.178s 0m0.067s) 658. FUNCTION NUMERIC-THOUSANDS-SEPARATOR (run_functions.at:2061): ok (0m0.191s 0m0.056s) 659. FUNCTION NUMVAL (run_functions.at:2084): ok (0m0.160s 0m0.091s) 660. FUNCTION NUMVAL-C (run_functions.at:2115): ok (0m0.176s 0m0.072s) 661. FUNCTION NUMVAL-C DP.COMMA (run_functions.at:2146): ok (0m0.171s 0m0.074s) 662. FUNCTION NUMVAL-F (run_functions.at:2176): ok (0m0.173s 0m0.077s) 663. FUNCTION ORD (run_functions.at:2199): ok (0m0.163s 0m0.083s) 664. FUNCTION ORD-MAX (run_functions.at:2221): ok (0m0.171s 0m0.074s) 665. FUNCTION ORD-MIN (run_functions.at:2243): ok (0m0.165s 0m0.082s) 666. FUNCTION PI (run_functions.at:2265): ok (0m0.178s 0m0.069s) 667. FUNCTION PRESENT-VALUE (run_functions.at:2289): ok (0m0.168s 0m0.077s) 668. FUNCTION RANDOM (run_functions.at:2311): ok (0m0.159s 0m0.088s) 669. FUNCTION RANGE (run_functions.at:2335): ok (0m0.163s 0m0.084s) 670. FUNCTION REM (run_functions.at:2359): ok (0m0.157s 0m0.093s) 671. FUNCTION REVERSE (run_functions.at:2383): ok (0m0.148s 0m0.105s) 672. FUNCTION REVERSE with reference modding (run_functions.at:2408): ok (0m0.159s 0m0.087s) 673. FUNCTION SECONDS-FROM-FORMATTED-TIME (run_functions.at:2433): ok (0m0.174s 0m0.075s) 674. FUNCTION SECONDS-PAST-MIDNIGHT (run_functions.at:2500): ok (0m0.192s 0m0.052s) 675. FUNCTION SIGN (run_functions.at:2524): ok (0m0.148s 0m0.097s) 676. FUNCTION SIN (run_functions.at:2563): ok (0m0.166s 0m0.086s) 677. FUNCTION SQRT (run_functions.at:2587): ok (0m0.151s 0m0.097s) 678. FUNCTION STANDARD-DEVIATION (run_functions.at:2611): ok (0m0.185s 0m0.063s) 679. FUNCTION STORED-CHAR-LENGTH (run_functions.at:2635): ok (0m0.159s 0m0.088s) 680. FUNCTION SUBSTITUTE (run_functions.at:2661): ok (0m0.178s 0m0.071s) 681. FUNCTION SUBSTITUTE with reference modding (run_functions.at:2690): ok (0m0.168s 0m0.078s) 682. FUNCTION SUBSTITUTE-CASE (run_functions.at:2718): ok (0m0.181s 0m0.070s) 683. FUNCTION SUBSTITUTE-CASE with reference mod (run_functions.at:2745): ok (0m0.157s 0m0.091s) 684. FUNCTION SUM (run_functions.at:2773): ok (0m0.190s 0m0.054s) 685. FUNCTION TAN (run_functions.at:2797): ok (0m0.171s 0m0.076s) 686. FUNCTION TEST-DATE-YYYYMMDD (run_functions.at:2821): ok (0m0.147s 0m0.099s) 687. FUNCTION TEST-DAY-YYYYDDD (run_functions.at:2843): ok (0m0.177s 0m0.067s) 688. FUNCTION TEST-FORMATTED-DATETIME with dates (run_functions.at:2865): ok (0m0.176s 0m0.080s) 689. FUNCTION TEST-FORMATTED-DATETIME with times (run_functions.at:2992): ok (0m0.165s 0m0.092s) 690. FUNCTION TEST-FORMATTED-DATETIME with datetimes (run_functions.at:3073): ok (0m0.181s 0m0.071s) 691. FUNCTION TEST-FORMATTED-DATETIME DP.COMMA (run_functions.at:3126): ok (0m0.188s 0m0.061s) 692. FUNCTION TEST-NUMVAL (run_functions.at:3167): ok (0m0.181s 0m0.072s) 693. FUNCTION TEST-NUMVAL-C (run_functions.at:3265): ok (0m0.182s 0m0.072s) 694. FUNCTION TEST-NUMVAL-F (run_functions.at:3363): ok (0m0.159s 0m0.095s) 695. FUNCTION TRIM (run_functions.at:3461): ok (0m0.168s 0m0.077s) 696. FUNCTION TRIM with reference modding (run_functions.at:3487): ok (0m0.167s 0m0.080s) 697. FUNCTION TRIM zero length (run_functions.at:3513): ok (0m0.168s 0m0.077s) 698. FUNCTION UPPER-CASE (run_functions.at:3540): ok (0m0.160s 0m0.085s) 699. FUNCTION UPPER-CASE with reference modding (run_functions.at:3565): ok (0m0.175s 0m0.075s) 700. FUNCTION VARIANCE (run_functions.at:3590): ok (0m0.170s 0m0.075s) 701. FUNCTION WHEN-COMPILED (run_functions.at:3614): ok (0m0.175s 0m0.077s) 702. FUNCTION YEAR-TO-YYYY (run_functions.at:3668): ok (0m0.156s 0m0.090s) 703. Formatted funcs w/ invalid variable format (run_functions.at:3692): ok (0m0.178s 0m0.075s) 704. FORMATTED-(DATE)TIME with SYSTEM-OFFSET (run_functions.at:3794): ok (0m0.170s 0m0.078s) 705. Intrinsics without FUNCTION keyword (1) (run_functions.at:3834): ok (0m0.168s 0m0.077s) 706. Intrinsics without FUNCTION keyword (2) (run_functions.at:3855): ok (0m0.152s 0m0.095s) 707. User-Defined FUNCTION with/without parameter (run_functions.at:3878): ok (0m0.182s 0m0.072s) 708. UDF in COMPUTE (run_functions.at:3929): ok (0m0.185s 0m0.073s) 709. UDF replacing intrinsic function (run_functions.at:3972): ok (0m0.159s 0m0.094s) 710. UDF with recursion (run_functions.at:4015): UNEXPECTED PASS (0m0.194s 0m0.063s) 711. CALL BY CONTENT binary and literal (run_extensions.at:24): ok (0m0.269s 0m0.141s) 712. Numeric Boolean literal (run_extensions.at:72): ok (0m0.157s 0m0.088s) 713. ACUCOBOL literal (run_extensions.at:102): ok (0m0.146s 0m0.102s) 714. Hexadecimal numeric literal (run_extensions.at:129): ok (0m0.175s 0m0.072s) 715. Semi-parenthesized condition (run_extensions.at:157): ok (0m0.181s 0m0.065s) 716. ADDRESS OF (run_extensions.at:177): ok (0m0.173s 0m0.082s) 717. LENGTH OF (run_extensions.at:227): ok (0m0.177s 0m0.076s) 718. SET TO SIZE OF (run_extensions.at:303): ok (0m0.175s 0m0.076s) 719. WHEN-COMPILED (run_extensions.at:340): ok (0m0.201s 0m0.045s) 720. Complex OCCURS DEPENDING ON (1) (run_extensions.at:369): ok (0m0.177s 0m0.082s) 721. Complex OCCURS DEPENDING ON (2) (run_extensions.at:398): ok (0m0.183s 0m0.085s) 722. Complex OCCURS DEPENDING ON (3) (run_extensions.at:461): ok (0m0.161s 0m0.100s) 723. Complex OCCURS DEPENDING ON (4) (run_extensions.at:524): ok (0m0.161s 0m0.097s) 724. Complex OCCURS DEPENDING ON (5) (run_extensions.at:590): ok (0m0.196s 0m0.060s) 725. Complex OCCURS DEPENDING ON (6) (run_extensions.at:656): ok (0m0.172s 0m0.080s) 726. OCCURS UNBOUNDED (run_extensions.at:697): ok (0m0.183s 0m0.081s) 727. DEPENDING ON with ODOSLIDE (run_extensions.at:741): ok (0m0.226s 0m0.078s) 728. DEPENDING ON with ODOSLIDE for IBM (run_extensions.at:950): ok (0m0.181s 0m0.090s) 729. INITIALIZE level 01 (run_extensions.at:1053): ok (0m0.170s 0m0.080s) 730. MOVE of non-integer to alphanumeric (run_extensions.at:1105): ok (0m0.204s 0m0.070s) 731. CALL USING file-name (run_extensions.at:1195): ok (0m0.284s 0m0.138s) 732. CALL unusual PROGRAM-ID. (run_extensions.at:1240): ok (0m0.724s 0m0.298s) 733. CALL / GOBACK with LOCAL-STORAGE (run_extensions.at:1305): ok (0m0.328s 0m0.115s) 734. CALL BY VALUE alphanumeric item (run_extensions.at:1355): ok (0m0.152s 0m0.103s) 735. CALL BY VALUE numeric literal WITH SIZE (run_extensions.at:1392): ok (0m0.187s 0m0.096s) 736. Case-sensitive PROGRAM-ID (run_extensions.at:1495): ok (0m0.147s 0m0.100s) 737. PROGRAM-ID AS clause (run_extensions.at:1518): ok (0m0.183s 0m0.066s) 738. Quoted PROGRAM-ID (run_extensions.at:1541): ok (0m0.173s 0m0.077s) 739. ASSIGN clause (run_extensions.at:1565): ok (0m0.162s 0m0.094s) 740. ASSIGN clause IBM (run_extensions.at:1594): ok (0m0.165s 0m0.085s) 741. ASSIGN mapping (run_extensions.at:1623): ok (0m0.338s 0m0.169s) 742. ASSIGN expansion (run_extensions.at:1679): ok (0m0.174s 0m0.075s) 743. ASSIGN with COB_FILE_PATH (run_extensions.at:1706): ok (0m0.169s 0m0.082s) 744. NUMBER-OF-CALL-PARAMETERS (run_extensions.at:1733): ok (0m0.336s 0m0.110s) 745. TALLY (run_extensions.at:1788): ok (0m0.197s 0m0.072s) 746. Redefining TALLY (run_extensions.at:1822): ok (0m0.199s 0m0.081s) 747. PROCEDURE DIVISION USING BY ... (run_extensions.at:1857): ok (0m0.311s 0m0.133s) 748. PROCEDURE DIVISION CHAINING (run_extensions.at:1909): ok (0m0.837s 0m0.374s) 749. STOP RUN RETURNING/GIVING (run_extensions.at:2026): ok (0m0.655s 0m0.335s) 750. GOBACK/EXIT PROGRAM RETURNING/GIVING (run_extensions.at:2082): ok (0m0.342s 0m0.152s) 751. ENTRY (run_extensions.at:2132): ok (0m0.328s 0m0.112s) 752. LINE SEQUENTIAL write (run_extensions.at:2178): ok (0m0.181s 0m0.072s) 753. LINE SEQUENTIAL read (run_extensions.at:2224): ok (0m0.145s 0m0.106s) 754. ASSIGN to KEYBOARD/DISPLAY (run_extensions.at:2291): ok (0m0.176s 0m0.081s) 756. Environment/Argument variable (run_extensions.at:2411): ok (0m0.186s 0m0.068s) 757. 78 Level (1) (run_extensions.at:2458): ok (0m0.178s 0m0.069s) 758. 78 Level (2) (run_extensions.at:2481): ok (0m0.174s 0m0.072s) 759. 78 Level (3) (run_extensions.at:2507): ok (0m0.155s 0m0.089s) 760. SWITCHES with non-standard names (run_extensions.at:2531): ok (0m0.178s 0m0.074s) 761. Larger REDEFINES lengths (run_extensions.at:2644): ok (0m0.170s 0m0.081s) 762. Obsolete 2002 keywords with COBOL2014 (run_extensions.at:2729): ok (0m0.185s 0m0.087s) 763. System routine with wrong number of parameters (run_extensions.at:2759): ok (0m0.189s 0m0.078s) 764. System routine C$NARG (run_extensions.at:2802): ok (0m0.521s 0m0.170s) 765. System routine C$PARAMSIZE (run_extensions.at:2879): ok (0m0.306s 0m0.143s) 766. System routine C$CALLEDBY (run_extensions.at:2921): ok (0m0.300s 0m0.142s) 767. System routine C$JUSTIFY (run_extensions.at:2967): ok (0m0.153s 0m0.092s) 768. System routine C$PRINTABLE (run_extensions.at:2992): ok (0m0.163s 0m0.081s) 769. System routine C$MAKEDIR (run_extensions.at:3021): ok (0m0.163s 0m0.083s) 770. System routine C$GETPID (run_extensions.at:3042): ok (0m0.144s 0m0.102s) 771. System routine C$TOUPPER (run_extensions.at:3067): ok (0m0.161s 0m0.089s) 772. System routine C$TOLOWER (run_extensions.at:3092): ok (0m0.170s 0m0.077s) 773. System routine CBL_OR (run_extensions.at:3117): ok (0m0.178s 0m0.069s) 774. System routine CBL_NOR (run_extensions.at:3144): ok (0m0.171s 0m0.077s) 775. System routine CBL_AND (run_extensions.at:3171): ok (0m0.164s 0m0.088s) 776. System routine CBL_XOR (run_extensions.at:3198): ok (0m0.170s 0m0.076s) 777. System routine CBL_IMP (run_extensions.at:3225): ok (0m0.181s 0m0.065s) 778. System routine CBL_NIMP (run_extensions.at:3252): ok (0m0.169s 0m0.077s) 779. System routine CBL_NOT (run_extensions.at:3279): ok (0m0.170s 0m0.078s) 780. System routine CBL_EQ (run_extensions.at:3305): ok (0m0.170s 0m0.075s) 781. System routine CBL_GC_GETOPT (run_extensions.at:3332): ok (0m0.878s 0m0.361s) 782. System routine CBL_GC_FORK (run_extensions.at:3769): ok (0m0.181s 0m0.073s) 783. System routine CBL_GC_WAITPID (run_extensions.at:3837): ok (0m0.179s 0m0.076s) 784. System routine CBL_GC_HOSTED (run_extensions.at:3889): ok (0m0.415s 0m0.171s) 785. System routine SYSTEM, parameter handling (run_extensions.at:4008): ok (0m0.199s 0m0.081s) 786. DISPLAY DIRECTIVE and $DISPLAY (run_extensions.at:4119): ok (0m0.177s 0m0.068s) 787. Conditional/define directives (1) (run_extensions.at:4144): ok (0m0.165s 0m0.082s) 788. Conditional/define directives (2) (run_extensions.at:4169): ok (0m0.171s 0m0.075s) 789. Conditional/define directives (3) (run_extensions.at:4194): ok (0m0.178s 0m0.067s) 790. Conditional/define directives (4) (run_extensions.at:4222): ok (0m0.187s 0m0.062s) 791. Conditional/define directives (5) (run_extensions.at:4248): ok (0m0.176s 0m0.064s) 792. Conditional/define directives (6) (run_extensions.at:4273): ok (0m0.355s 0m0.128s) 793. Conditional/define directives (7) (run_extensions.at:4299): ok (0m0.174s 0m0.069s) 794. Variable format (run_extensions.at:4321): ok (0m0.163s 0m0.082s) 795. Binary COMP-1 (1) (run_extensions.at:4343): ok (0m0.325s 0m0.178s) 796. Binary COMP-1 (2) (run_extensions.at:4374): ok (0m0.332s 0m0.168s) 797. BINARY: 2-4-8 big-endian (data_binary.at:23): ok (0m0.568s 0m0.204s) 798. BINARY: 2-4-8 native (data_binary.at:205): ok (0m0.579s 0m0.189s) 799. BINARY: 1-2-4-8 big-endian (data_binary.at:393): ok (0m0.538s 0m0.234s) 800. BINARY: 1-2-4-8 native (data_binary.at:575): ok (0m0.547s 0m0.223s) 801. BINARY: 1--8 big-endian (data_binary.at:763): ok (0m0.596s 0m0.182s) 802. BINARY: 1--8 native (data_binary.at:945): ok (0m0.555s 0m0.224s) 803. BINARY: full-print (data_binary.at:1133): ok (0m0.172s 0m0.093s) 804. BINARY: 64bit unsigned compare (data_binary.at:1185): ok (0m0.171s 0m0.074s) 805. BINARY: 64bit unsigned arithmetic notrunc (data_binary.at:1210): ok (0m0.161s 0m0.093s) 806. BINARY: 64bit signed negative constant range (data_binary.at:1239): ok (0m0.177s 0m0.070s) 807. DISPLAY: Sign ASCII (data_display.at:21): ok (0m0.182s 0m0.069s) 808. DISPLAY: Sign ASCII (2) (data_display.at:80): ok (0m0.172s 0m0.079s) 809. DISPLAY: Sign EBCDIC (data_display.at:126): ok (0m0.190s 0m0.058s) 810. DISPLAY: unsigned (data_display.at:171): ok (0m0.152s 0m0.099s) 811. PACKED-DECIMAL dump (data_packed.at:25): ok (0m0.373s 0m0.130s) 812. PACKED-DECIMAL display (data_packed.at:162): ok (0m0.153s 0m0.093s) 813. PACKED-DECIMAL move (data_packed.at:218): ok (0m0.162s 0m0.086s) 814. PACKED-DECIMAL arithmetic (1) (data_packed.at:276): ok (0m0.162s 0m0.088s) 815. PACKED-DECIMAL arithmetic (2) (data_packed.at:316): ok (0m0.176s 0m0.072s) 816. PACKED-DECIMAL numeric test (1) (data_packed.at:353): ok (0m0.175s 0m0.076s) 817. PACKED-DECIMAL numeric test (2) (data_packed.at:494): ok (0m0.207s 0m0.060s) 818. COMP-6 display (data_packed.at:608): ok (0m0.155s 0m0.094s) 819. COMP-6 move (data_packed.at:644): ok (0m0.167s 0m0.082s) 820. COMP-6 arithmetic (data_packed.at:690): ok (0m0.175s 0m0.072s) 821. COMP-6 numeric test (data_packed.at:721): ok (0m0.147s 0m0.105s) 822. POINTER: display (data_pointer.at:21): ok (0m0.163s 0m0.082s) testsuite: ending at: Sun Dec 17 20:49:23 CET 2017 testsuite: test suite duration: 0h 3m 15s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 820 tests were run, 1 passed unexpectedly. 2 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Skipped tests: GnuCOBOL 3.0-dev test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 220: syn_misc.at:3194 ACUCOBOL 32bit literal size extensions literals 510: run_misc.at:2648 SORT: table sort (3) runmisc Unexpected passes: GnuCOBOL 3.0-dev test suite: GnuCOBOL Tests test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 710: run_functions.at:4015 UDF with recursion functions local-storage ## ------------- ## ## ../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.0-dev, which was | generated by GNU Autoconf 2.69. Invocation command line was | | $ ./configure | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = catnip | uname -m = x86_64 | uname -r = 4.15.0-rc3 | uname -s = Linux | uname -v = #4 SMP PREEMPT Mon Dec 11 10:45:52 CET 2017 | | /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/harald/bin | PATH: /opt/bin | PATH: /opt/gcc/bin | PATH: /usr/local/bin | PATH: /usr/bin | PATH: /bin | PATH: /usr/local/games | PATH: /usr/games | PATH: /opt/solstudio/bin | PATH: /opt/ekopath/bin | PATH: /opt/voc/bin | PATH: /usr/local/games | PATH: /usr/local/sbin | PATH: /usr/sbin | PATH: /sbin | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:2481: checking for a BSD-compatible install | configure:2549: result: /usr/bin/install -c | configure:2560: checking whether build environment is sane | configure:2615: result: yes | configure:2766: checking for a thread-safe mkdir -p | configure:2805: result: /bin/mkdir -p | configure:2812: checking for gawk | configure:2828: found /usr/bin/gawk | configure:2839: result: gawk | configure:2850: checking whether make sets $(MAKE) | configure:2872: result: yes | configure:2901: checking whether make supports nested variables | configure:2918: result: yes | configure:3092: checking whether CFLAGS can be modified | configure:3099: result: yes | configure:3303: checking for C compiler version | configure:3312: clang --version >&5 | clang version 4.0.1-svn305187-1~exp1 (branches/release_40) | Target: x86_64-pc-linux-gnu | Thread model: posix | InstalledDir: /usr/bin | configure:3323: $? = 0 | configure:3312: clang -v >&5 | clang version 4.0.1-svn305187-1~exp1 (branches/release_40) | Target: x86_64-pc-linux-gnu | Thread model: posix | InstalledDir: /usr/bin | Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/6 | Found candidate GCC installation: /usr/bin/../lib/gcc/i686-linux-gnu/6.3.0 | Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/6 | Found candidate GCC installation: /usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0 | Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/6 | Found candidate GCC installation: /usr/lib/gcc/i686-linux-gnu/6.3.0 | ... rest of stderr output deleted ... | configure:3323: $? = 0 | configure:3312: clang -V >&5 | clang: error: argument to '-V' is missing (expected 1 value) | clang: error: no input files | configure:3323: $? = 1 | configure:3312: clang -qversion >&5 | clang: error: unknown argument: '-qversion' | clang: error: no input files | configure:3323: $? = 1 | configure:3343: checking whether the C compiler works | configure:3365: clang conftest.c >&5 | configure:3369: $? = 0 | configure:3417: result: yes | configure:3420: checking for C compiler default output file name | configure:3422: result: a.out | configure:3428: checking for suffix of executables | configure:3435: clang -o conftest conftest.c >&5 | configure:3439: $? = 0 | configure:3461: result: | configure:3483: checking whether we are cross compiling | configure:3491: clang -o conftest conftest.c >&5 | configure:3495: $? = 0 | configure:3502: ./conftest | configure:3506: $? = 0 | configure:3521: result: no | configure:3526: checking for suffix of object files | configure:3548: clang -c conftest.c >&5 | configure:3552: $? = 0 | configure:3573: result: o | configure:3577: checking whether we are using the GNU C compiler | configure:3596: clang -c conftest.c >&5 | configure:3596: $? = 0 | configure:3605: result: yes | configure:3614: checking whether clang accepts -g | configure:3634: clang -c -g conftest.c >&5 | configure:3634: $? = 0 | configure:3675: result: yes | configure:3692: checking for clang option to accept ISO C89 | configure:3755: clang -c -g -O2 conftest.c >&5 | configure:3755: $? = 0 | configure:3768: result: none needed | configure:3793: checking whether clang understands -c and -o together | configure:3815: clang -c conftest.c -o conftest2.o | configure:3818: $? = 0 | configure:3815: clang -c conftest.c -o conftest2.o | configure:3818: $? = 0 | configure:3830: result: yes | configure:3858: checking for style of include used by make | configure:3886: result: GNU | configure:3912: checking dependency style of clang | configure:4023: result: gcc3 | configure:4042: checking for clang option to accept ISO C99 | configure:4191: clang -c -g -O2 conftest.c >&5 | configure:4191: $? = 0 | configure:4204: result: none needed | configure:4312: checking for clang option to accept ISO Standard C | configure:4323: result: none needed | configure:4336: checking how to run the C preprocessor | configure:4367: clang -E conftest.c | configure:4367: $? = 0 | configure:4381: clang -E conftest.c | conftest.c:13:10: fatal error: 'ac_nonexistent.h' file not found | #include | ^~~~~~~~~~~~~~~~~~ | 1 error generated. | configure:4381: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4406: result: clang -E | configure:4426: clang -E conftest.c | configure:4426: $? = 0 | configure:4440: clang -E conftest.c | conftest.c:13:10: fatal error: 'ac_nonexistent.h' file not found | #include | ^~~~~~~~~~~~~~~~~~ | 1 error generated. | configure:4440: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #define PATCH_LEVEL 0 | | #define MAX_CALL_FIELD_PARAMS 192 | | /* end confdefs.h. */ | | #include | configure:4471: checking for grep that handles long lines and -e | configure:4529: result: /bin/grep | configure:4534: checking for egrep | configure:4596: result: /bin/grep -E | configure:4601: checking for ANSI C header files | configure:4621: clang -c -g -O2 conftest.c >&5 | configure:4621: $? = 0 | configure:4694: clang -o conftest -g -O2 conftest.c >&5 | configure:4694: $? = 0 | configure:4694: ./conftest | configure:4694: $? = 0 | configure:4705: result: yes | configure:4718: checking for sys/types.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for sys/stat.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for stdlib.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for string.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for memory.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for strings.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for inttypes.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for stdint.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4718: checking for unistd.h | configure:4718: clang -c -g -O2 conftest.c >&5 | configure:4718: $? = 0 | configure:4718: result: yes | configure:4731: checking minix/config.h usability | configure:4731: clang -c -g -O2 conftest.c >&5 | conftest.c:56:10: fatal error: 'minix/config.h' file not found | #include | ^~~~~~~~~~~~~~~~ | 1 error generated. | configure:4731: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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:4731: result: no | configure:4731: checking minix/config.h presence | configure:4731: clang -E conftest.c | conftest.c:23:10: fatal error: 'minix/config.h' file not found | #include | ^~~~~~~~~~~~~~~~ | 1 error generated. | configure:4731: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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:4731: result: no | configure:4731: checking for minix/config.h | configure:4731: result: no | configure:4752: checking whether it is safe to define __EXTENSIONS__ | configure:4770: clang -c -g -O2 conftest.c >&5 | configure:4770: $? = 0 | configure:4777: result: yes | configure:4821: checking build system type | configure:4835: result: x86_64-pc-linux-gnu | configure:4855: checking host system type | configure:4868: result: x86_64-pc-linux-gnu | configure:4909: checking how to print strings | configure:4936: result: printf | configure:4957: checking for a sed that does not truncate output | configure:5021: result: /bin/sed | configure:5039: checking for fgrep | configure:5101: result: /bin/grep -F | configure:5136: checking for ld used by clang | configure:5203: result: /usr/bin/ld | configure:5210: checking if the linker (/usr/bin/ld) is GNU ld | configure:5225: result: yes | configure:5237: checking for BSD- or MS-compatible name lister (nm) | configure:5291: result: /usr/bin/nm -B | configure:5421: checking the name lister (/usr/bin/nm -B) interface | configure:5428: clang -c -g -O2 conftest.c >&5 | configure:5431: /usr/bin/nm -B "conftest.o" | configure:5434: output | 0000000000000000 B some_variable | configure:5441: result: BSD nm | configure:5444: checking whether ln -s works | configure:5448: result: yes | configure:5456: checking the maximum length of command line arguments | configure:5587: result: 1572864 | configure:5635: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format | configure:5675: result: func_convert_file_noop | configure:5682: checking how to convert x86_64-pc-linux-gnu file names to toolchain format | configure:5702: result: func_convert_file_noop | configure:5709: checking for /usr/bin/ld option to reload object files | configure:5716: result: -r | configure:5790: checking for objdump | configure:5806: found /usr/bin/objdump | configure:5817: result: objdump | configure:5846: checking how to recognize dependent libraries | configure:6046: result: pass_all | configure:6131: checking for dlltool | configure:6161: result: no | configure:6188: checking how to associate runtime and link libraries | configure:6215: result: printf %s\n | configure:6275: checking for ar | configure:6291: found /usr/bin/ar | configure:6302: result: ar | configure:6339: checking for archiver @FILE support | configure:6356: clang -c -g -O2 conftest.c >&5 | configure:6356: $? = 0 | configure:6359: ar cru libconftest.a @conftest.lst >&5 | ar: `u' modifier ignored since `D' is the default (see `U') | configure:6362: $? = 0 | configure:6367: 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:6370: $? = 1 | configure:6382: result: @ | configure:6440: checking for strip | configure:6456: found /usr/bin/strip | configure:6467: result: strip | configure:6539: checking for ranlib | configure:6555: found /usr/bin/ranlib | configure:6566: result: ranlib | configure:6668: checking command to parse /usr/bin/nm -B output from clang object | configure:6821: clang -c -g -O2 conftest.c >&5 | configure:6824: $? = 0 | configure:6828: /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:6831: $? = 0 | configure:6897: clang -o conftest -g -O2 conftest.c conftstm.o >&5 | configure:6900: $? = 0 | configure:6938: result: ok | configure:6985: checking for sysroot | configure:7015: result: no | configure:7022: checking for a working dd | configure:7060: result: /bin/dd | configure:7064: checking how to truncate binary pipes | configure:7079: result: /bin/dd bs=4096 count=1 | configure:7215: clang -c -g -O2 conftest.c >&5 | configure:7218: $? = 0 | configure:7408: checking for mt | configure:7424: found /bin/mt | configure:7435: result: mt | configure:7458: checking if mt is a manifest tool | configure:7464: mt '-?' | configure:7472: result: no | configure:8146: checking for dlfcn.h | configure:8146: clang -c -g -O2 conftest.c >&5 | configure:8146: $? = 0 | configure:8146: result: yes | configure:8699: checking for objdir | configure:8714: result: .libs | configure:8978: checking if clang supports -fno-rtti -fno-exceptions | configure:8996: clang -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5 | configure:9000: $? = 0 | configure:9013: result: yes | configure:9371: checking for clang option to produce PIC | configure:9378: result: -fPIC -DPIC | configure:9386: checking if clang PIC flag -fPIC -DPIC works | configure:9404: clang -c -g -O2 -fPIC -DPIC -DPIC conftest.c >&5 | configure:9408: $? = 0 | configure:9421: result: yes | configure:9450: checking if clang static flag -static works | configure:9478: result: yes | configure:9493: checking if clang supports -c -o file.o | configure:9514: clang -c -g -O2 -o out/conftest2.o conftest.c >&5 | configure:9518: $? = 0 | configure:9540: result: yes | configure:9548: checking if clang supports -c -o file.o | configure:9595: result: yes | configure:9628: checking whether the clang linker (/usr/bin/ld -m elf_x86_64) supports shared libraries | configure:10891: result: yes | configure:10928: checking whether -lc should be explicitly linked in | configure:10936: clang -c -g -O2 conftest.c >&5 | configure:10939: $? = 0 | configure:10954: clang -shared -fPIC -DPIC conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /bin/grep -lc \>/dev/null 2\>\&1 | configure:10957: $? = 0 | configure:10971: result: no | configure:11131: checking dynamic linker characteristics | configure:11712: clang -o conftest -g -O2 -Wl,-rpath -Wl,/foo conftest.c >&5 | configure:11712: $? = 0 | configure:11961: result: GNU/Linux ld.so | configure:12083: checking how to hardcode library paths into programs | configure:12108: result: immediate | configure:12210: checking for shl_load | configure:12210: clang -o conftest -g -O2 conftest.c >&5 | /tmp/conftest-2f665c.o: In function `main': | /home/harald/src/gnucobol/trunk/conftest.c:64: undefined reference to `shl_load' | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:12210: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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:12210: result: no | configure:12214: checking for shl_load in -ldld | configure:12239: clang -o conftest -g -O2 conftest.c -ldld >&5 | /usr/bin/ld: cannot find -ldld | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:12239: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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:12248: result: no | configure:12253: checking for dlopen | configure:12253: clang -o conftest -g -O2 conftest.c >&5 | /tmp/conftest-a46dc4.o: In function `main': | /home/harald/src/gnucobol/trunk/conftest.c:64: undefined reference to `dlopen' | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:12253: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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:12253: result: no | configure:12257: checking for dlopen in -ldl | configure:12282: clang -o conftest -g -O2 conftest.c -ldl >&5 | configure:12282: $? = 0 | configure:12291: result: yes | configure:12410: checking whether a program can dlopen itself | configure:12490: clang -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic conftest.c -ldl >&5 | configure:12493: $? = 0 | configure:12511: result: yes | configure:12516: checking whether a statically linked program can dlopen itself | configure:12596: clang -o conftest -g -O2 -DHAVE_DLFCN_H -Wl,--export-dynamic -static conftest.c -ldl >&5 | /tmp/conftest-f9a2d7.o: In function `main': | /home/harald/src/gnucobol/trunk/configure:12575: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking | /usr/bin/ld: dynamic STT_GNU_IFUNC symbol `strcmp' with pointer equality in `/usr/bin/../lib/gcc/x86_64-linux-gnu/6.3.0/../../../x86_64-linux-gnu/libc.a(strcmp.o)' can not be used when making an executable; recompile with -fPIE and relink with -pie | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:12599: $? = 1 | configure:12617: result: no | configure:12656: checking whether stripping libraries is possible | configure:12661: result: yes | configure:12696: checking if libtool supports shared libraries | configure:12698: result: yes | configure:12701: checking whether to build shared libraries | configure:12726: result: yes | configure:12729: checking whether to build static libraries | configure:12733: result: yes | configure:12771: checking for egrep | configure:12833: result: /bin/grep -E | configure:12844: checking for flex | configure:12860: found /usr/bin/flex | configure:12871: result: flex | configure:12909: flex conftest.l | configure:12913: $? = 0 | configure:12915: checking lex output file root | configure:12929: result: lex.yy | configure:12934: checking lex library | configure:12948: clang -o conftest -g -O2 conftest.c >&5 | /tmp/conftest-eb4305.o: In function `yylex': | /home/harald/src/gnucobol/trunk/lex.yy.c:879: undefined reference to `yywrap' | /tmp/conftest-eb4305.o: In function `input': | /home/harald/src/gnucobol/trunk/lex.yy.c:1185: undefined reference to `yywrap' | /tmp/conftest-eb4305.o: In function `main': | /home/harald/src/gnucobol/trunk/conftest.l:18: undefined reference to `yywrap' | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:12948: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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. */ | | | | #line 3 "lex.yy.c" | | | | #define YY_INT_ALIGNED short int | | | | /* A lexical scanner generated by flex */ | | | | #define FLEX_SCANNER | | #define YY_FLEX_MAJOR_VERSION 2 | | #define YY_FLEX_MINOR_VERSION 6 | | #define YY_FLEX_SUBMINOR_VERSION 1 | | #if YY_FLEX_SUBMINOR_VERSION > 0 | | #define FLEX_BETA | | #endif | | | | /* First, we deal with platform-specific or compiler-specific issues. */ | | | | /* begin standard C headers. */ | | #include | | #include | | #include | | #include | | | | /* end standard C headers. */ | | | | /* flex integer type definitions */ | | | | #ifndef FLEXINT_H | | #define FLEXINT_H | | | | /* C99 systems have . Non-C99 systems may or may not. */ | | | | #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L | | | | /* C99 says to define __STDC_LIMIT_MACROS before including stdint.h, | | * if you want the limit (max/min) macros for int types. | | */ | | #ifndef __STDC_LIMIT_MACROS | | #define __STDC_LIMIT_MACROS 1 | | #endif | | | | #include | | typedef int8_t flex_int8_t; | | typedef uint8_t flex_uint8_t; | | typedef int16_t flex_int16_t; | | typedef uint16_t flex_uint16_t; | | typedef int32_t flex_int32_t; | | typedef uint32_t flex_uint32_t; | | #else | | typedef signed char flex_int8_t; | | typedef short int flex_int16_t; | | typedef int flex_int32_t; | | typedef unsigned char flex_uint8_t; | | typedef unsigned short int flex_uint16_t; | | typedef unsigned int flex_uint32_t; | | | | /* Limits of integral types. */ | | #ifndef INT8_MIN | | #define INT8_MIN (-128) | | #endif | | #ifndef INT16_MIN | | #define INT16_MIN (-32767-1) | | #endif | | #ifndef INT32_MIN | | #define INT32_MIN (-2147483647-1) | | #endif | | #ifndef INT8_MAX | | #define INT8_MAX (127) | | #endif | | #ifndef INT16_MAX | | #define INT16_MAX (32767) | | #endif | | #ifndef INT32_MAX | | #define INT32_MAX (2147483647) | | #endif | | #ifndef UINT8_MAX | | #define UINT8_MAX (255U) | | #endif | | #ifndef UINT16_MAX | | #define UINT16_MAX (65535U) | | #endif | | #ifndef UINT32_MAX | | #define UINT32_MAX (4294967295U) | | #endif | | | | #endif /* ! C99 */ | | | | #endif /* ! FLEXINT_H */ | | | | /* TODO: this is always defined, so inline it */ | | #define yyconst const | | | | #if defined(__GNUC__) && __GNUC__ >= 3 | | #define yynoreturn __attribute__((__noreturn__)) | | #else | | #define yynoreturn | | #endif | | | | /* Returned upon end-of-file. */ | | #define YY_NULL 0 | | | | /* Promotes a possibly negative, possibly signed char to an unsigned | | * integer for use as an array index. If the signed char is negative, | | * we want to instead treat it as an 8-bit unsigned char, hence the | | * double cast. | | */ | | #define YY_SC_TO_UI(c) ((unsigned int) (unsigned char) c) | | | | /* Enter a start condition. This macro really ought to take a parameter, | | * but we do it the disgusting crufty way forced on us by the ()-less | | * definition of BEGIN. | | */ | | #define BEGIN (yy_start) = 1 + 2 * | | | | /* Translate the current start state into a value that can be later handed | | * to BEGIN to return to the state. The YYSTATE alias is for lex | | * compatibility. | | */ | | #define YY_START (((yy_start) - 1) / 2) | | #define YYSTATE YY_START | | | | /* Action number for EOF rule of a given start state. */ | | #define YY_STATE_EOF(state) (YY_END_OF_BUFFER + state + 1) | | | | /* Special action meaning "start processing a new file". */ | | #define YY_NEW_FILE yyrestart(yyin ) | | | | #define YY_END_OF_BUFFER_CHAR 0 | | | | /* Size of default input buffer. */ | | #ifndef YY_BUF_SIZE | | #ifdef __ia64__ | | /* On IA-64, the buffer size is 16k, not 8k. | | * Moreover, YY_BUF_SIZE is 2*YY_READ_BUF_SIZE in the general case. | | * Ditto for the __ia64__ case accordingly. | | */ | | #define YY_BUF_SIZE 32768 | | #else | | #define YY_BUF_SIZE 16384 | | #endif /* __ia64__ */ | | #endif | | | | /* The state buf must be large enough to hold one state per character in the main buffer. | | */ | | #define YY_STATE_BUF_SIZE ((YY_BUF_SIZE + 2) * sizeof(yy_state_type)) | | | | #ifndef YY_TYPEDEF_YY_BUFFER_STATE | | #define YY_TYPEDEF_YY_BUFFER_STATE | | typedef struct yy_buffer_state *YY_BUFFER_STATE; | | #endif | | | | #ifndef YY_TYPEDEF_YY_SIZE_T | | #define YY_TYPEDEF_YY_SIZE_T | | typedef size_t yy_size_t; | | #endif | | | | extern int yyleng; | | | | extern FILE *yyin, *yyout; | | | | #define EOB_ACT_CONTINUE_SCAN 0 | | #define EOB_ACT_END_OF_FILE 1 | | #define EOB_ACT_LAST_MATCH 2 | | | | #define YY_LESS_LINENO(n) | | #define YY_LINENO_REWIND_TO(ptr) | | | | /* Return all but the first "n" matched characters back to the input stream. */ | | #define yyless(n) \ | | do \ | | { \ | | /* Undo effects of setting up yytext. */ \ | | int yyless_macro_arg = (n); \ | | YY_LESS_LINENO(yyless_macro_arg);\ | | *yy_cp = (yy_hold_char); \ | | YY_RESTORE_YY_MORE_OFFSET \ | | (yy_c_buf_p) = yy_cp = yy_bp + yyless_macro_arg - YY_MORE_ADJ; \ | | YY_DO_BEFORE_ACTION; /* set up yytext again */ \ | | } \ | | while ( 0 ) | | | | #define unput(c) yyunput( c, (yytext_ptr) ) | | | | #ifndef YY_STRUCT_YY_BUFFER_STATE | | #define YY_STRUCT_YY_BUFFER_STATE | | struct yy_buffer_state | | { | | FILE *yy_input_file; | | | | char *yy_ch_buf; /* input buffer */ | | char *yy_buf_pos; /* current position in input buffer */ | | | | /* Size of input buffer in bytes, not including room for EOB | | * characters. | | */ | | int yy_buf_size; | | | | /* Number of characters read into yy_ch_buf, not including EOB | | * characters. | | */ | | int yy_n_chars; | | | | /* Whether we "own" the buffer - i.e., we know we created it, | | * and can realloc() it to grow it, and should free() it to | | * delete it. | | */ | | int yy_is_our_buffer; | | | | /* Whether this is an "interactive" input source; if so, and | | * if we're using stdio for input, then we want to use getc() | | * instead of fread(), to make sure we stop fetching input after | | * each newline. | | */ | | int yy_is_interactive; | | | | /* Whether we're considered to be at the beginning of a line. | | * If so, '^' rules will be active on the next match, otherwise | | * not. | | */ | | int yy_at_bol; | | | | int yy_bs_lineno; /**< The line count. */ | | int yy_bs_column; /**< The column count. */ | | | | /* Whether to try to fill the input buffer when we reach the | | * end of it. | | */ | | int yy_fill_buffer; | | | | int yy_buffer_status; | | | | #define YY_BUFFER_NEW 0 | | #define YY_BUFFER_NORMAL 1 | | /* When an EOF's been seen but there's still some text to process | | * then we mark the buffer as YY_EOF_PENDING, to indicate that we | | * shouldn't try reading from the input source any more. We might | | * still have a bunch of tokens to match, though, because of | | * possible backing-up. | | * | | * When we actually see the EOF, we change the status to "new" | | * (via yyrestart()), so that the user can continue scanning by | | * just pointing yyin at a new input file. | | */ | | #define YY_BUFFER_EOF_PENDING 2 | | | | }; | | #endif /* !YY_STRUCT_YY_BUFFER_STATE */ | | | | /* Stack of input buffers. */ | | static size_t yy_buffer_stack_top = 0; /**< index of top of stack. */ | | static size_t yy_buffer_stack_max = 0; /**< capacity of stack. */ | | static YY_BUFFER_STATE * yy_buffer_stack = NULL; /**< Stack as an array. */ | | | | /* We provide macros for accessing buffer states in case in the | | * future we want to put the buffer states in a more general | | * "scanner state". | | * | | * Returns the top of the stack, or NULL. | | */ | | #define YY_CURRENT_BUFFER ( (yy_buffer_stack) \ | | ? (yy_buffer_stack)[(yy_buffer_stack_top)] \ | | : NULL) | | | | /* Same as previous macro, but useful when we know that the buffer stack is not | | * NULL or when we need an lvalue. For internal use only. | | */ | | #define YY_CURRENT_BUFFER_LVALUE (yy_buffer_stack)[(yy_buffer_stack_top)] | | | | /* yy_hold_char holds the character lost when yytext is formed. */ | | static char yy_hold_char; | | static int yy_n_chars; /* number of characters read into yy_ch_buf */ | | int yyleng; | | | | /* Points to current character in buffer. */ | | static char *yy_c_buf_p = NULL; | | static int yy_init = 0; /* whether we need to initialize */ | | static int yy_start = 0; /* start state number */ | | | | /* Flag which is used to allow yywrap()'s to do buffer switches | | * instead of setting up a fresh yyin. A bit of a hack ... | | */ | | static int yy_did_buffer_switch_on_eof; | | | | void yyrestart (FILE *input_file ); | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ); | | YY_BUFFER_STATE yy_create_buffer (FILE *file,int size ); | | void yy_delete_buffer (YY_BUFFER_STATE b ); | | void yy_flush_buffer (YY_BUFFER_STATE b ); | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ); | | void yypop_buffer_state (void ); | | | | static void yyensure_buffer_stack (void ); | | static void yy_load_buffer_state (void ); | | static void yy_init_buffer (YY_BUFFER_STATE b,FILE *file ); | | | | #define YY_FLUSH_BUFFER yy_flush_buffer(YY_CURRENT_BUFFER ) | | | | YY_BUFFER_STATE yy_scan_buffer (char *base,yy_size_t size ); | | YY_BUFFER_STATE yy_scan_string (yyconst char *yy_str ); | | YY_BUFFER_STATE yy_scan_bytes (yyconst char *bytes,int len ); | | | | void *yyalloc (yy_size_t ); | | void *yyrealloc (void *,yy_size_t ); | | void yyfree (void * ); | | | | #define yy_new_buffer yy_create_buffer | | | | #define yy_set_interactive(is_interactive) \ | | { \ | | if ( ! YY_CURRENT_BUFFER ){ \ | | yyensure_buffer_stack (); \ | | YY_CURRENT_BUFFER_LVALUE = \ | | yy_create_buffer(yyin,YY_BUF_SIZE ); \ | | } \ | | YY_CURRENT_BUFFER_LVALUE->yy_is_interactive = is_interactive; \ | | } | | | | #define yy_set_bol(at_bol) \ | | { \ | | if ( ! YY_CURRENT_BUFFER ){\ | | yyensure_buffer_stack (); \ | | YY_CURRENT_BUFFER_LVALUE = \ | | yy_create_buffer(yyin,YY_BUF_SIZE ); \ | | } \ | | YY_CURRENT_BUFFER_LVALUE->yy_at_bol = at_bol; \ | | } | | | | #define YY_AT_BOL() (YY_CURRENT_BUFFER_LVALUE->yy_at_bol) | | | | /* Begin user sect3 */ | | | | typedef unsigned char YY_CHAR; | | | | FILE *yyin = NULL, *yyout = NULL; | | | | typedef int yy_state_type; | | | | extern int yylineno; | | | | int yylineno = 1; | | | | extern char *yytext; | | #ifdef yytext_ptr | | #undef yytext_ptr | | #endif | | #define yytext_ptr yytext | | | | static yy_state_type yy_get_previous_state (void ); | | static yy_state_type yy_try_NUL_trans (yy_state_type current_state ); | | static int yy_get_next_buffer (void ); | | static void yynoreturn yy_fatal_error (yyconst char* msg ); | | | | /* Done after the current pattern has been matched and before the | | * corresponding action - sets up yytext. | | */ | | #define YY_DO_BEFORE_ACTION \ | | (yytext_ptr) = yy_bp; \ | | (yytext_ptr) -= (yy_more_len); \ | | yyleng = (int) (yy_cp - (yytext_ptr)); \ | | (yy_hold_char) = *yy_cp; \ | | *yy_cp = '\0'; \ | | (yy_c_buf_p) = yy_cp; | | | | #define YY_NUM_RULES 8 | | #define YY_END_OF_BUFFER 9 | | /* This struct is not used in this scanner, | | but its presence is necessary. */ | | struct yy_trans_info | | { | | flex_int32_t yy_verify; | | flex_int32_t yy_nxt; | | }; | | static yyconst flex_int16_t yy_acclist[23] = | | { 0, | | 9, 7, 8, 8, 1, 7, 8, 2, 7, 8, | | 3, 7, 8, 4, 7, 8, 5, 7, 8, 6, | | 7, 8 | | } ; | | | | static yyconst flex_int16_t yy_accept[14] = | | { 0, | | 1, 1, 1, 2, 4, 5, 8, 11, 14, 17, | | 20, 23, 23 | | } ; | | | | static yyconst YY_CHAR yy_ec[256] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 3, 4, 5, 6, | | | | 7, 8, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, | | 1, 1, 1, 1, 1 | | } ; | | | | static yyconst YY_CHAR yy_meta[9] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1 | | } ; | | | | static yyconst flex_uint16_t yy_base[13] = | | { 0, | | 0, 0, 9, 10, 10, 10, 10, 10, 10, 10, | | 10, 10 | | } ; | | | | static yyconst flex_int16_t yy_def[13] = | | { 0, | | 12, 1, 12, 12, 12, 12, 12, 12, 12, 12, | | 12, 0 | | } ; | | | | static yyconst flex_uint16_t yy_nxt[19] = | | { 0, | | 4, 5, 6, 7, 8, 9, 10, 11, 12, 3, | | 12, 12, 12, 12, 12, 12, 12, 12 | | } ; | | | | static yyconst flex_int16_t yy_chk[19] = | | { 0, | | 1, 1, 1, 1, 1, 1, 1, 1, 3, 12, | | 12, 12, 12, 12, 12, 12, 12, 12 | | } ; | | | | extern int yy_flex_debug; | | int yy_flex_debug = 0; | | | | static yy_state_type *yy_state_buf=0, *yy_state_ptr=0; | | static char *yy_full_match; | | static int yy_lp; | | #define REJECT \ | | { \ | | *yy_cp = (yy_hold_char); /* undo effects of setting up yytext */ \ | | yy_cp = (yy_full_match); /* restore poss. backed-over text */ \ | | ++(yy_lp); \ | | goto find_rule; \ | | } | | | | static int yy_more_flag = 0; | | static int yy_more_len = 0; | | #define yymore() ((yy_more_flag) = 1) | | #define YY_MORE_ADJ (yy_more_len) | | #define YY_RESTORE_YY_MORE_OFFSET | | char *yytext; | | #line 1 "conftest.l" | | #line 469 "lex.yy.c" | | | | #define INITIAL 0 | | | | #ifndef YY_NO_UNISTD_H | | /* Special case for "unistd.h", since it is non-ANSI. We include it way | | * down here because we want the user's section 1 to have been scanned first. | | * The user has a chance to override it with an option. | | */ | | #include | | #endif | | | | #ifndef YY_EXTRA_TYPE | | #define YY_EXTRA_TYPE void * | | #endif | | | | static int yy_init_globals (void ); | | | | /* Accessor methods to globals. | | These are made visible to non-reentrant scanners for convenience. */ | | | | int yylex_destroy (void ); | | | | int yyget_debug (void ); | | | | void yyset_debug (int debug_flag ); | | | | YY_EXTRA_TYPE yyget_extra (void ); | | | | void yyset_extra (YY_EXTRA_TYPE user_defined ); | | | | FILE *yyget_in (void ); | | | | void yyset_in (FILE * _in_str ); | | | | FILE *yyget_out (void ); | | | | void yyset_out (FILE * _out_str ); | | | | int yyget_leng (void ); | | | | char *yyget_text (void ); | | | | int yyget_lineno (void ); | | | | void yyset_lineno (int _line_number ); | | | | /* Macros after this point can all be overridden by user definitions in | | * section 1. | | */ | | | | #ifndef YY_SKIP_YYWRAP | | #ifdef __cplusplus | | extern "C" int yywrap (void ); | | #else | | extern int yywrap (void ); | | #endif | | #endif | | | | #ifndef YY_NO_UNPUT | | | | static void yyunput (int c,char *buf_ptr ); | | | | #endif | | | | #ifndef yytext_ptr | | static void yy_flex_strncpy (char *,yyconst char *,int ); | | #endif | | | | #ifdef YY_NEED_STRLEN | | static int yy_flex_strlen (yyconst char * ); | | #endif | | | | #ifndef YY_NO_INPUT | | | | #ifdef __cplusplus | | static int yyinput (void ); | | #else | | static int input (void ); | | #endif | | | | #endif | | | | /* Amount of stuff to slurp up with each read. */ | | #ifndef YY_READ_BUF_SIZE | | #ifdef __ia64__ | | /* On IA-64, the buffer size is 16k, not 8k */ | | #define YY_READ_BUF_SIZE 16384 | | #else | | #define YY_READ_BUF_SIZE 8192 | | #endif /* __ia64__ */ | | #endif | | | | /* Copy whatever the last rule matched to the standard output. */ | | #ifndef ECHO | | /* This used to be an fputs(), but since the string might contain NUL's, | | * we now use fwrite(). | | */ | | #define ECHO do { if (fwrite( yytext, (size_t) yyleng, 1, yyout )) {} } while (0) | | #endif | | | | /* Gets input and stuffs it into "buf". number of characters read, or YY_NULL, | | * is returned in "result". | | */ | | #ifndef YY_INPUT | | #define YY_INPUT(buf,result,max_size) \ | | if ( YY_CURRENT_BUFFER_LVALUE->yy_is_interactive ) \ | | { \ | | int c = '*'; \ | | size_t n; \ | | for ( n = 0; n < max_size && \ | | (c = getc( yyin )) != EOF && c != '\n'; ++n ) \ | | buf[n] = (char) c; \ | | if ( c == '\n' ) \ | | buf[n++] = (char) c; \ | | if ( c == EOF && ferror( yyin ) ) \ | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | | result = n; \ | | } \ | | else \ | | { \ | | errno=0; \ | | while ( (result = (int) fread(buf, 1, max_size, yyin))==0 && ferror(yyin)) \ | | { \ | | if( errno != EINTR) \ | | { \ | | YY_FATAL_ERROR( "input in flex scanner failed" ); \ | | break; \ | | } \ | | errno=0; \ | | clearerr(yyin); \ | | } \ | | }\ | | \ | | | | #endif | | | | /* No semi-colon after return; correct usage is to write "yyterminate();" - | | * we don't want an extra ';' after the "return" because that will cause | | * some compilers to complain about unreachable statements. | | */ | | #ifndef yyterminate | | #define yyterminate() return YY_NULL | | #endif | | | | /* Number of entries by which start-condition stack grows. */ | | #ifndef YY_START_STACK_INCR | | #define YY_START_STACK_INCR 25 | | #endif | | | | /* Report a fatal error. */ | | #ifndef YY_FATAL_ERROR | | #define YY_FATAL_ERROR(msg) yy_fatal_error( msg ) | | #endif | | | | /* end tables serialization structures and prototypes */ | | | | /* Default declaration of generated scanner - a define so the user can | | * easily add parameters. | | */ | | #ifndef YY_DECL | | #define YY_DECL_IS_OURS 1 | | | | extern int yylex (void); | | | | #define YY_DECL int yylex (void) | | #endif /* !YY_DECL */ | | | | /* Code executed at the beginning of each rule, after yytext and yyleng | | * have been set up. | | */ | | #ifndef YY_USER_ACTION | | #define YY_USER_ACTION | | #endif | | | | /* Code executed at the end of each rule. */ | | #ifndef YY_BREAK | | #define YY_BREAK /*LINTED*/break; | | #endif | | | | #define YY_RULE_SETUP \ | | YY_USER_ACTION | | | | /** The main scanner function which does all the work. | | */ | | YY_DECL | | { | | yy_state_type yy_current_state; | | char *yy_cp, *yy_bp; | | int yy_act; | | | | if ( !(yy_init) ) | | { | | (yy_init) = 1; | | | | #ifdef YY_USER_INIT | | YY_USER_INIT; | | #endif | | | | /* Create the reject buffer large enough to save one state per allowed character. */ | | if ( ! (yy_state_buf) ) | | (yy_state_buf) = (yy_state_type *)yyalloc(YY_STATE_BUF_SIZE ); | | if ( ! (yy_state_buf) ) | | YY_FATAL_ERROR( "out of dynamic memory in yylex()" ); | | | | if ( ! (yy_start) ) | | (yy_start) = 1; /* first start state */ | | | | if ( ! yyin ) | | yyin = stdin; | | | | if ( ! yyout ) | | yyout = stdout; | | | | if ( ! YY_CURRENT_BUFFER ) { | | yyensure_buffer_stack (); | | YY_CURRENT_BUFFER_LVALUE = | | yy_create_buffer(yyin,YY_BUF_SIZE ); | | } | | | | yy_load_buffer_state( ); | | } | | | | { | | #line 1 "conftest.l" | | | | #line 695 "lex.yy.c" | | | | while ( /*CONSTCOND*/1 ) /* loops until end-of-file is reached */ | | { | | (yy_more_len) = 0; | | if ( (yy_more_flag) ) | | { | | (yy_more_len) = (yy_c_buf_p) - (yytext_ptr); | | (yy_more_flag) = 0; | | } | | yy_cp = (yy_c_buf_p); | | | | /* Support of yytext. */ | | *yy_cp = (yy_hold_char); | | | | /* yy_bp points to the position in yy_ch_buf of the start of | | * the current run. | | */ | | yy_bp = yy_cp; | | | | yy_current_state = (yy_start); | | | | (yy_state_ptr) = (yy_state_buf); | | *(yy_state_ptr)++ = yy_current_state; | | | | yy_match: | | do | | { | | YY_CHAR yy_c = yy_ec[YY_SC_TO_UI(*yy_cp)] ; | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[(unsigned int) yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; | | *(yy_state_ptr)++ = yy_current_state; | | ++yy_cp; | | } | | while ( yy_base[yy_current_state] != 10 ); | | | | yy_find_action: | | yy_current_state = *--(yy_state_ptr); | | (yy_lp) = yy_accept[yy_current_state]; | | find_rule: /* we branch to this label when backing up */ | | for ( ; ; ) /* until we find what rule we matched */ | | { | | if ( (yy_lp) && (yy_lp) < yy_accept[yy_current_state + 1] ) | | { | | yy_act = yy_acclist[(yy_lp)]; | | { | | (yy_full_match) = yy_cp; | | break; | | } | | } | | --yy_cp; | | yy_current_state = *--(yy_state_ptr); | | (yy_lp) = yy_accept[yy_current_state]; | | } | | | | YY_DO_BEFORE_ACTION; | | | | do_action: /* This label is used only to access EOF actions. */ | | | | switch ( yy_act ) | | { /* beginning of action switch */ | | case 1: | | YY_RULE_SETUP | | #line 2 "conftest.l" | | { ECHO; } | | YY_BREAK | | case 2: | | YY_RULE_SETUP | | #line 3 "conftest.l" | | { REJECT; } | | YY_BREAK | | case 3: | | YY_RULE_SETUP | | #line 4 "conftest.l" | | { yymore (); } | | YY_BREAK | | case 4: | | YY_RULE_SETUP | | #line 5 "conftest.l" | | { yyless (1); } | | YY_BREAK | | case 5: | | YY_RULE_SETUP | | #line 6 "conftest.l" | | { /* IRIX 6.5 flex 2.5.4 underquotes its yyless argument. */ | | yyless ((input () != 0)); } | | YY_BREAK | | case 6: | | YY_RULE_SETUP | | #line 8 "conftest.l" | | { unput (yytext[0]); } | | YY_BREAK | | case 7: | | YY_RULE_SETUP | | #line 9 "conftest.l" | | { BEGIN INITIAL; } | | YY_BREAK | | case 8: | | YY_RULE_SETUP | | #line 10 "conftest.l" | | ECHO; | | YY_BREAK | | #line 802 "lex.yy.c" | | case YY_STATE_EOF(INITIAL): | | yyterminate(); | | | | case YY_END_OF_BUFFER: | | { | | /* Amount of text matched not including the EOB char. */ | | int yy_amount_of_matched_text = (int) (yy_cp - (yytext_ptr)) - 1; | | | | /* Undo the effects of YY_DO_BEFORE_ACTION. */ | | *yy_cp = (yy_hold_char); | | YY_RESTORE_YY_MORE_OFFSET | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_NEW ) | | { | | /* We're scanning a new file or input source. It's | | * possible that this happened because the user | | * just pointed yyin at a new source and called | | * yylex(). If so, then we have to assure | | * consistency between YY_CURRENT_BUFFER and our | | * globals. Here is the right place to do so, because | | * this is the first action (other than possibly a | | * back-up) that will match for the new input source. | | */ | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | | YY_CURRENT_BUFFER_LVALUE->yy_input_file = yyin; | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = YY_BUFFER_NORMAL; | | } | | | | /* Note that here we test for yy_c_buf_p "<=" to the position | | * of the first EOB in the buffer, since yy_c_buf_p will | | * already have been incremented past the NUL character | | * (since all states make transitions on EOB to the | | * end-of-buffer state). Contrast this with the test | | * in input(). | | */ | | if ( (yy_c_buf_p) <= &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | | { /* This was really a NUL. */ | | yy_state_type yy_next_state; | | | | (yy_c_buf_p) = (yytext_ptr) + yy_amount_of_matched_text; | | | | yy_current_state = yy_get_previous_state( ); | | | | /* Okay, we're now positioned to make the NUL | | * transition. We couldn't have | | * yy_get_previous_state() go ahead and do it | | * for us because it doesn't know how to deal | | * with the possibility of jamming (and we don't | | * want to build jamming into it because then it | | * will run more slowly). | | */ | | | | yy_next_state = yy_try_NUL_trans( yy_current_state ); | | | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | | | if ( yy_next_state ) | | { | | /* Consume the NUL. */ | | yy_cp = ++(yy_c_buf_p); | | yy_current_state = yy_next_state; | | goto yy_match; | | } | | | | else | | { | | yy_cp = (yy_c_buf_p); | | goto yy_find_action; | | } | | } | | | | else switch ( yy_get_next_buffer( ) ) | | { | | case EOB_ACT_END_OF_FILE: | | { | | (yy_did_buffer_switch_on_eof) = 0; | | | | if ( yywrap( ) ) | | { | | /* Note: because we've taken care in | | * yy_get_next_buffer() to have set up | | * yytext, we can now set up | | * yy_c_buf_p so that if some total | | * hoser (like flex itself) wants to | | * call the scanner after we return the | | * YY_NULL, it'll still work - another | | * YY_NULL will get returned. | | */ | | (yy_c_buf_p) = (yytext_ptr) + YY_MORE_ADJ; | | | | yy_act = YY_STATE_EOF(YY_START); | | goto do_action; | | } | | | | else | | { | | if ( ! (yy_did_buffer_switch_on_eof) ) | | YY_NEW_FILE; | | } | | break; | | } | | | | case EOB_ACT_CONTINUE_SCAN: | | (yy_c_buf_p) = | | (yytext_ptr) + yy_amount_of_matched_text; | | | | yy_current_state = yy_get_previous_state( ); | | | | yy_cp = (yy_c_buf_p); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | goto yy_match; | | | | case EOB_ACT_LAST_MATCH: | | (yy_c_buf_p) = | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)]; | | | | yy_current_state = yy_get_previous_state( ); | | | | yy_cp = (yy_c_buf_p); | | yy_bp = (yytext_ptr) + YY_MORE_ADJ; | | goto yy_find_action; | | } | | break; | | } | | | | default: | | YY_FATAL_ERROR( | | "fatal flex scanner internal error--no action found" ); | | } /* end of action switch */ | | } /* end of scanning one token */ | | } /* end of user's declarations */ | | } /* end of yylex */ | | | | /* yy_get_next_buffer - try to read in a new buffer | | * | | * Returns a code representing an action: | | * EOB_ACT_LAST_MATCH - | | * EOB_ACT_CONTINUE_SCAN - continue scanning from current position | | * EOB_ACT_END_OF_FILE - end of file | | */ | | static int yy_get_next_buffer (void) | | { | | char *dest = YY_CURRENT_BUFFER_LVALUE->yy_ch_buf; | | char *source = (yytext_ptr); | | int number_to_move, i; | | int ret_val; | | | | if ( (yy_c_buf_p) > &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] ) | | YY_FATAL_ERROR( | | "fatal flex scanner internal error--end of buffer missed" ); | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_fill_buffer == 0 ) | | { /* Don't try to fill the buffer, so this is an EOF. */ | | if ( (yy_c_buf_p) - (yytext_ptr) - YY_MORE_ADJ == 1 ) | | { | | /* We matched a single character, the EOB, so | | * treat this as a final EOF. | | */ | | return EOB_ACT_END_OF_FILE; | | } | | | | else | | { | | /* We matched some text prior to the EOB, first | | * process it. | | */ | | return EOB_ACT_LAST_MATCH; | | } | | } | | | | /* Try to read more data. */ | | | | /* First move last chars to start of buffer. */ | | number_to_move = (int) ((yy_c_buf_p) - (yytext_ptr) - 1); | | | | for ( i = 0; i < number_to_move; ++i ) | | *(dest++) = *(source++); | | | | if ( YY_CURRENT_BUFFER_LVALUE->yy_buffer_status == YY_BUFFER_EOF_PENDING ) | | /* don't do the read, it's not guaranteed to return an EOF, | | * just force an EOF | | */ | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars) = 0; | | | | else | | { | | int num_to_read = | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size - number_to_move - 1; | | | | while ( num_to_read <= 0 ) | | { /* Not enough room in the buffer - grow it. */ | | | | YY_FATAL_ERROR( | | "input buffer overflow, can't enlarge buffer because scanner uses REJECT" ); | | | | } | | | | if ( num_to_read > YY_READ_BUF_SIZE ) | | num_to_read = YY_READ_BUF_SIZE; | | | | /* Read in more data. */ | | YY_INPUT( (&YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]), | | (yy_n_chars), num_to_read ); | | | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | if ( (yy_n_chars) == 0 ) | | { | | if ( number_to_move == YY_MORE_ADJ ) | | { | | ret_val = EOB_ACT_END_OF_FILE; | | yyrestart(yyin ); | | } | | | | else | | { | | ret_val = EOB_ACT_LAST_MATCH; | | YY_CURRENT_BUFFER_LVALUE->yy_buffer_status = | | YY_BUFFER_EOF_PENDING; | | } | | } | | | | else | | ret_val = EOB_ACT_CONTINUE_SCAN; | | | | if (((yy_n_chars) + number_to_move) > YY_CURRENT_BUFFER_LVALUE->yy_buf_size) { | | /* Extend the array by 50%, plus the number we really need. */ | | int new_size = (yy_n_chars) + number_to_move + ((yy_n_chars) >> 1); | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf = (char *) yyrealloc((void *) YY_CURRENT_BUFFER_LVALUE->yy_ch_buf,new_size ); | | if ( ! YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_get_next_buffer()" ); | | } | | | | (yy_n_chars) += number_to_move; | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] = YY_END_OF_BUFFER_CHAR; | | YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars) + 1] = YY_END_OF_BUFFER_CHAR; | | | | (yytext_ptr) = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[0]; | | | | return ret_val; | | } | | | | /* yy_get_previous_state - get the state just before the EOB char was reached */ | | | | static yy_state_type yy_get_previous_state (void) | | { | | yy_state_type yy_current_state; | | char *yy_cp; | | | | yy_current_state = (yy_start); | | | | (yy_state_ptr) = (yy_state_buf); | | *(yy_state_ptr)++ = yy_current_state; | | | | for ( yy_cp = (yytext_ptr) + YY_MORE_ADJ; yy_cp < (yy_c_buf_p); ++yy_cp ) | | { | | YY_CHAR yy_c = (*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : 1); | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[(unsigned int) yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; | | *(yy_state_ptr)++ = yy_current_state; | | } | | | | return yy_current_state; | | } | | | | /* yy_try_NUL_trans - try to make a transition on the NUL character | | * | | * synopsis | | * next_state = yy_try_NUL_trans( current_state ); | | */ | | static yy_state_type yy_try_NUL_trans (yy_state_type yy_current_state ) | | { | | int yy_is_jam; | | | | YY_CHAR yy_c = 1; | | while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state ) | | { | | yy_current_state = (int) yy_def[yy_current_state]; | | if ( yy_current_state >= 13 ) | | yy_c = yy_meta[(unsigned int) yy_c]; | | } | | yy_current_state = yy_nxt[yy_base[yy_current_state] + (flex_int16_t) yy_c]; | | yy_is_jam = (yy_current_state == 12); | | if ( ! yy_is_jam ) | | *(yy_state_ptr)++ = yy_current_state; | | | | return yy_is_jam ? 0 : yy_current_state; | | } | | | | #ifndef YY_NO_UNPUT | | | | static void yyunput (int c, char * yy_bp ) | | { | | char *yy_cp; | | | | yy_cp = (yy_c_buf_p); | | | | /* undo effects of setting up yytext */ | | *yy_cp = (yy_hold_char); | | | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | | { /* need to shift things up to make room */ | | /* +2 for EOB chars. */ | | int number_to_move = (yy_n_chars) + 2; | | char *dest = &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[ | | YY_CURRENT_BUFFER_LVALUE->yy_buf_size + 2]; | | char *source = | | &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[number_to_move]; | | | | while ( source > YY_CURRENT_BUFFER_LVALUE->yy_ch_buf ) | | *--dest = *--source; | | | | yy_cp += (int) (dest - source); | | yy_bp += (int) (dest - source); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = | | (yy_n_chars) = (int) YY_CURRENT_BUFFER_LVALUE->yy_buf_size; | | | | if ( yy_cp < YY_CURRENT_BUFFER_LVALUE->yy_ch_buf + 2 ) | | YY_FATAL_ERROR( "flex scanner push-back overflow" ); | | } | | | | *--yy_cp = (char) c; | | | | (yytext_ptr) = yy_bp; | | (yy_hold_char) = *yy_cp; | | (yy_c_buf_p) = yy_cp; | | } | | | | #endif | | | | #ifndef YY_NO_INPUT | | #ifdef __cplusplus | | static int yyinput (void) | | #else | | static int input (void) | | #endif | | | | { | | int c; | | | | *(yy_c_buf_p) = (yy_hold_char); | | | | if ( *(yy_c_buf_p) == YY_END_OF_BUFFER_CHAR ) | | { | | /* yy_c_buf_p now points to the character we want to return. | | * If this occurs *before* the EOB characters, then it's a | | * valid NUL; if not, then we've hit the end of the buffer. | | */ | | if ( (yy_c_buf_p) < &YY_CURRENT_BUFFER_LVALUE->yy_ch_buf[(yy_n_chars)] ) | | /* This was really a NUL. */ | | *(yy_c_buf_p) = '\0'; | | | | else | | { /* need more input */ | | int offset = (yy_c_buf_p) - (yytext_ptr); | | ++(yy_c_buf_p); | | | | switch ( yy_get_next_buffer( ) ) | | { | | case EOB_ACT_LAST_MATCH: | | /* This happens because yy_g_n_b() | | * sees that we've accumulated a | | * token and flags that we need to | | * try matching the token before | | * proceeding. But for input(), | | * there's no matching to consider. | | * So convert the EOB_ACT_LAST_MATCH | | * to EOB_ACT_END_OF_FILE. | | */ | | | | /* Reset buffer status. */ | | yyrestart(yyin ); | | | | /*FALLTHROUGH*/ | | | | case EOB_ACT_END_OF_FILE: | | { | | if ( yywrap( ) ) | | return 0; | | | | if ( ! (yy_did_buffer_switch_on_eof) ) | | YY_NEW_FILE; | | #ifdef __cplusplus | | return yyinput(); | | #else | | return input(); | | #endif | | } | | | | case EOB_ACT_CONTINUE_SCAN: | | (yy_c_buf_p) = (yytext_ptr) + offset; | | break; | | } | | } | | } | | | | c = *(unsigned char *) (yy_c_buf_p); /* cast for 8-bit char's */ | | *(yy_c_buf_p) = '\0'; /* preserve yytext */ | | (yy_hold_char) = *++(yy_c_buf_p); | | | | return c; | | } | | #endif /* ifndef YY_NO_INPUT */ | | | | /** Immediately switch to a different input stream. | | * @param input_file A readable stream. | | * | | * @note This function does not reset the start condition to @c INITIAL . | | */ | | void yyrestart (FILE * input_file ) | | { | | | | if ( ! YY_CURRENT_BUFFER ){ | | yyensure_buffer_stack (); | | YY_CURRENT_BUFFER_LVALUE = | | yy_create_buffer(yyin,YY_BUF_SIZE ); | | } | | | | yy_init_buffer(YY_CURRENT_BUFFER,input_file ); | | yy_load_buffer_state( ); | | } | | | | /** Switch to a different input buffer. | | * @param new_buffer The new input buffer. | | * | | */ | | void yy_switch_to_buffer (YY_BUFFER_STATE new_buffer ) | | { | | | | /* TODO. We should be able to replace this entire function body | | * with | | * yypop_buffer_state(); | | * yypush_buffer_state(new_buffer); | | */ | | yyensure_buffer_stack (); | | if ( YY_CURRENT_BUFFER == new_buffer ) | | return; | | | | if ( YY_CURRENT_BUFFER ) | | { | | /* Flush out information for old buffer. */ | | *(yy_c_buf_p) = (yy_hold_char); | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | yy_load_buffer_state( ); | | | | /* We don't actually know whether we did this switch during | | * EOF (yywrap()) processing, but the only time this flag | | * is looked at is after yywrap() is called, so it's safe | | * to go ahead and always set it. | | */ | | (yy_did_buffer_switch_on_eof) = 1; | | } | | | | static void yy_load_buffer_state (void) | | { | | (yy_n_chars) = YY_CURRENT_BUFFER_LVALUE->yy_n_chars; | | (yytext_ptr) = (yy_c_buf_p) = YY_CURRENT_BUFFER_LVALUE->yy_buf_pos; | | yyin = YY_CURRENT_BUFFER_LVALUE->yy_input_file; | | (yy_hold_char) = *(yy_c_buf_p); | | } | | | | /** Allocate and initialize an input buffer state. | | * @param file A readable stream. | | * @param size The character buffer size in bytes. When in doubt, use @c YY_BUF_SIZE. | | * | | * @return the allocated buffer state. | | */ | | YY_BUFFER_STATE yy_create_buffer (FILE * file, int size ) | | { | | YY_BUFFER_STATE b; | | | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | | if ( ! b ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | | | b->yy_buf_size = (yy_size_t)size; | | | | /* yy_ch_buf has to be 2 characters longer than the size given because | | * we need to put in 2 end-of-buffer characters. | | */ | | b->yy_ch_buf = (char *) yyalloc(b->yy_buf_size + 2 ); | | if ( ! b->yy_ch_buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_create_buffer()" ); | | | | b->yy_is_our_buffer = 1; | | | | yy_init_buffer(b,file ); | | | | return b; | | } | | | | /** Destroy the buffer. | | * @param b a buffer created with yy_create_buffer() | | * | | */ | | void yy_delete_buffer (YY_BUFFER_STATE b ) | | { | | | | if ( ! b ) | | return; | | | | if ( b == YY_CURRENT_BUFFER ) /* Not sure if we should pop here. */ | | YY_CURRENT_BUFFER_LVALUE = (YY_BUFFER_STATE) 0; | | | | if ( b->yy_is_our_buffer ) | | yyfree((void *) b->yy_ch_buf ); | | | | yyfree((void *) b ); | | } | | | | /* Initializes or reinitializes a buffer. | | * This function is sometimes called more than once on the same buffer, | | * such as during a yyrestart() or at EOF. | | */ | | static void yy_init_buffer (YY_BUFFER_STATE b, FILE * file ) | | | | { | | int oerrno = errno; | | | | yy_flush_buffer(b ); | | | | b->yy_input_file = file; | | b->yy_fill_buffer = 1; | | | | /* If b is the current buffer, then yy_init_buffer was _probably_ | | * called from yyrestart() or through yy_get_next_buffer. | | * In that case, we don't want to reset the lineno or column. | | */ | | if (b != YY_CURRENT_BUFFER){ | | b->yy_bs_lineno = 1; | | b->yy_bs_column = 0; | | } | | | | b->yy_is_interactive = file ? (isatty( fileno(file) ) > 0) : 0; | | | | errno = oerrno; | | } | | | | /** Discard all buffered characters. On the next scan, YY_INPUT will be called. | | * @param b the buffer state to be flushed, usually @c YY_CURRENT_BUFFER. | | * | | */ | | void yy_flush_buffer (YY_BUFFER_STATE b ) | | { | | if ( ! b ) | | return; | | | | b->yy_n_chars = 0; | | | | /* We always need two end-of-buffer characters. The first causes | | * a transition to the end-of-buffer state. The second causes | | * a jam in that state. | | */ | | b->yy_ch_buf[0] = YY_END_OF_BUFFER_CHAR; | | b->yy_ch_buf[1] = YY_END_OF_BUFFER_CHAR; | | | | b->yy_buf_pos = &b->yy_ch_buf[0]; | | | | b->yy_at_bol = 1; | | b->yy_buffer_status = YY_BUFFER_NEW; | | | | if ( b == YY_CURRENT_BUFFER ) | | yy_load_buffer_state( ); | | } | | | | /** Pushes the new state onto the stack. The new state becomes | | * the current state. This function will allocate the stack | | * if necessary. | | * @param new_buffer The new state. | | * | | */ | | void yypush_buffer_state (YY_BUFFER_STATE new_buffer ) | | { | | if (new_buffer == NULL) | | return; | | | | yyensure_buffer_stack(); | | | | /* This block is copied from yy_switch_to_buffer. */ | | if ( YY_CURRENT_BUFFER ) | | { | | /* Flush out information for old buffer. */ | | *(yy_c_buf_p) = (yy_hold_char); | | YY_CURRENT_BUFFER_LVALUE->yy_buf_pos = (yy_c_buf_p); | | YY_CURRENT_BUFFER_LVALUE->yy_n_chars = (yy_n_chars); | | } | | | | /* Only push if top exists. Otherwise, replace top. */ | | if (YY_CURRENT_BUFFER) | | (yy_buffer_stack_top)++; | | YY_CURRENT_BUFFER_LVALUE = new_buffer; | | | | /* copied from yy_switch_to_buffer. */ | | yy_load_buffer_state( ); | | (yy_did_buffer_switch_on_eof) = 1; | | } | | | | /** Removes and deletes the top of the stack, if present. | | * The next element becomes the new top. | | * | | */ | | void yypop_buffer_state (void) | | { | | if (!YY_CURRENT_BUFFER) | | return; | | | | yy_delete_buffer(YY_CURRENT_BUFFER ); | | YY_CURRENT_BUFFER_LVALUE = NULL; | | if ((yy_buffer_stack_top) > 0) | | --(yy_buffer_stack_top); | | | | if (YY_CURRENT_BUFFER) { | | yy_load_buffer_state( ); | | (yy_did_buffer_switch_on_eof) = 1; | | } | | } | | | | /* Allocates the stack if it does not exist. | | * Guarantees space for at least one push. | | */ | | static void yyensure_buffer_stack (void) | | { | | int num_to_alloc; | | | | if (!(yy_buffer_stack)) { | | | | /* First allocation is just for 2 elements, since we don't know if this | | * scanner will even need a stack. We use 2 instead of 1 to avoid an | | * immediate realloc on the next call. | | */ | | num_to_alloc = 1; /* After all that talk, this was set to 1 anyways... */ | | (yy_buffer_stack) = (struct yy_buffer_state**)yyalloc | | (num_to_alloc * sizeof(struct yy_buffer_state*) | | ); | | if ( ! (yy_buffer_stack) ) | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | | | memset((yy_buffer_stack), 0, num_to_alloc * sizeof(struct yy_buffer_state*)); | | | | (yy_buffer_stack_max) = num_to_alloc; | | (yy_buffer_stack_top) = 0; | | return; | | } | | | | if ((yy_buffer_stack_top) >= ((yy_buffer_stack_max)) - 1){ | | | | /* Increase the buffer to prepare for a possible push. */ | | yy_size_t grow_size = 8 /* arbitrary grow size */; | | | | num_to_alloc = (yy_buffer_stack_max) + grow_size; | | (yy_buffer_stack) = (struct yy_buffer_state**)yyrealloc | | ((yy_buffer_stack), | | num_to_alloc * sizeof(struct yy_buffer_state*) | | ); | | if ( ! (yy_buffer_stack) ) | | YY_FATAL_ERROR( "out of dynamic memory in yyensure_buffer_stack()" ); | | | | /* zero only the new slots.*/ | | memset((yy_buffer_stack) + (yy_buffer_stack_max), 0, grow_size * sizeof(struct yy_buffer_state*)); | | (yy_buffer_stack_max) = num_to_alloc; | | } | | } | | | | /** Setup the input buffer state to scan directly from a user-specified character buffer. | | * @param base the character buffer | | * @param size the size in bytes of the character buffer | | * | | * @return the newly allocated buffer state object. | | */ | | YY_BUFFER_STATE yy_scan_buffer (char * base, yy_size_t size ) | | { | | YY_BUFFER_STATE b; | | | | if ( size < 2 || | | base[size-2] != YY_END_OF_BUFFER_CHAR || | | base[size-1] != YY_END_OF_BUFFER_CHAR ) | | /* They forgot to leave room for the EOB's. */ | | return NULL; | | | | b = (YY_BUFFER_STATE) yyalloc(sizeof( struct yy_buffer_state ) ); | | if ( ! b ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_buffer()" ); | | | | b->yy_buf_size = size - 2; /* "- 2" to take care of EOB's */ | | b->yy_buf_pos = b->yy_ch_buf = base; | | b->yy_is_our_buffer = 0; | | b->yy_input_file = NULL; | | b->yy_n_chars = b->yy_buf_size; | | b->yy_is_interactive = 0; | | b->yy_at_bol = 1; | | b->yy_fill_buffer = 0; | | b->yy_buffer_status = YY_BUFFER_NEW; | | | | yy_switch_to_buffer(b ); | | | | return b; | | } | | | | /** Setup the input buffer state to scan a string. The next call to yylex() will | | * scan from a @e copy of @a str. | | * @param yystr a NUL-terminated string to scan | | * | | * @return the newly allocated buffer state object. | | * @note If you want to scan bytes that may contain NUL values, then use | | * yy_scan_bytes() instead. | | */ | | YY_BUFFER_STATE yy_scan_string (yyconst char * yystr ) | | { | | | | return yy_scan_bytes(yystr,(int) strlen(yystr) ); | | } | | | | /** Setup the input buffer state to scan the given bytes. The next call to yylex() will | | * scan from a @e copy of @a bytes. | | * @param yybytes the byte buffer to scan | | * @param _yybytes_len the number of bytes in the buffer pointed to by @a bytes. | | * | | * @return the newly allocated buffer state object. | | */ | | YY_BUFFER_STATE yy_scan_bytes (yyconst char * yybytes, int _yybytes_len ) | | { | | YY_BUFFER_STATE b; | | char *buf; | | yy_size_t n; | | int i; | | | | /* Get memory for full buffer, including space for trailing EOB's. */ | | n = (yy_size_t) (_yybytes_len + 2); | | buf = (char *) yyalloc(n ); | | if ( ! buf ) | | YY_FATAL_ERROR( "out of dynamic memory in yy_scan_bytes()" ); | | | | for ( i = 0; i < _yybytes_len; ++i ) | | buf[i] = yybytes[i]; | | | | buf[_yybytes_len] = buf[_yybytes_len+1] = YY_END_OF_BUFFER_CHAR; | | | | b = yy_scan_buffer(buf,n ); | | if ( ! b ) | | YY_FATAL_ERROR( "bad buffer in yy_scan_bytes()" ); | | | | /* It's okay to grow etc. this buffer, and we should throw it | | * away when we're done. | | */ | | b->yy_is_our_buffer = 1; | | | | return b; | | } | | | | #ifndef YY_EXIT_FAILURE | | #define YY_EXIT_FAILURE 2 | | #endif | | | | static void yynoreturn yy_fatal_error (yyconst char* msg ) | | { | | (void) fprintf( stderr, "%s\n", msg ); | | exit( YY_EXIT_FAILURE ); | | } | | | | /* Redefine yyless() so it works in section 3 code. */ | | | | #undef yyless | | #define yyless(n) \ | | do \ | | { \ | | /* Undo effects of setting up yytext. */ \ | | int yyless_macro_arg = (n); \ | | YY_LESS_LINENO(yyless_macro_arg);\ | | yytext[yyleng] = (yy_hold_char); \ | | (yy_c_buf_p) = yytext + yyless_macro_arg; \ | | (yy_hold_char) = *(yy_c_buf_p); \ | | *(yy_c_buf_p) = '\0'; \ | | yyleng = yyless_macro_arg; \ | | } \ | | while ( 0 ) | | | | /* Accessor methods (get/set functions) to struct members. */ | | | | /** Get the current line number. | | * | | */ | | int yyget_lineno (void) | | { | | | | return yylineno; | | } | | | | /** Get the input stream. | | * | | */ | | FILE *yyget_in (void) | | { | | return yyin; | | } | | | | /** Get the output stream. | | * | | */ | | FILE *yyget_out (void) | | { | | return yyout; | | } | | | | /** Get the length of the current token. | | * | | */ | | int yyget_leng (void) | | { | | return yyleng; | | } | | | | /** Get the current token. | | * | | */ | | | | char *yyget_text (void) | | { | | return yytext; | | } | | | | /** Set the current line number. | | * @param _line_number line number | | * | | */ | | void yyset_lineno (int _line_number ) | | { | | | | yylineno = _line_number; | | } | | | | /** Set the input stream. This does not discard the current | | * input buffer. | | * @param _in_str A readable stream. | | * | | * @see yy_switch_to_buffer | | */ | | void yyset_in (FILE * _in_str ) | | { | | yyin = _in_str ; | | } | | | | void yyset_out (FILE * _out_str ) | | { | | yyout = _out_str ; | | } | | | | int yyget_debug (void) | | { | | return yy_flex_debug; | | } | | | | void yyset_debug (int _bdebug ) | | { | | yy_flex_debug = _bdebug ; | | } | | | | static int yy_init_globals (void) | | { | | /* Initialization is the same as for the non-reentrant scanner. | | * This function is called from yylex_destroy(), so don't allocate here. | | */ | | | | (yy_buffer_stack) = NULL; | | (yy_buffer_stack_top) = 0; | | (yy_buffer_stack_max) = 0; | | (yy_c_buf_p) = NULL; | | (yy_init) = 0; | | (yy_start) = 0; | | | | (yy_state_buf) = 0; | | (yy_state_ptr) = 0; | | (yy_full_match) = 0; | | (yy_lp) = 0; | | | | /* Defined in main.c */ | | #ifdef YY_STDINIT | | yyin = stdin; | | yyout = stdout; | | #else | | yyin = NULL; | | yyout = NULL; | | #endif | | | | /* For future reference: Set errno on error, since we are called by | | * yylex_init() | | */ | | return 0; | | } | | | | /* yylex_destroy is for both reentrant and non-reentrant scanners. */ | | int yylex_destroy (void) | | { | | | | /* Pop the buffer stack, destroying each element. */ | | while(YY_CURRENT_BUFFER){ | | yy_delete_buffer(YY_CURRENT_BUFFER ); | | YY_CURRENT_BUFFER_LVALUE = NULL; | | yypop_buffer_state(); | | } | | | | /* Destroy the stack itself. */ | | yyfree((yy_buffer_stack) ); | | (yy_buffer_stack) = NULL; | | | | yyfree ( (yy_state_buf) ); | | (yy_state_buf) = NULL; | | | | /* Reset the globals. This is important in a non-reentrant scanner so the next time | | * yylex() is called, initialization will occur. */ | | yy_init_globals( ); | | | | return 0; | | } | | | | /* | | * Internal utility routines. | | */ | | | | #ifndef yytext_ptr | | static void yy_flex_strncpy (char* s1, yyconst char * s2, int n ) | | { | | | | int i; | | for ( i = 0; i < n; ++i ) | | s1[i] = s2[i]; | | } | | #endif | | | | #ifdef YY_NEED_STRLEN | | static int yy_flex_strlen (yyconst char * s ) | | { | | int n; | | for ( n = 0; s[n]; ++n ) | | ; | | | | return n; | | } | | #endif | | | | void *yyalloc (yy_size_t size ) | | { | | return malloc(size); | | } | | | | void *yyrealloc (void * ptr, yy_size_t size ) | | { | | | | /* The cast to (char *) in the following accommodates both | | * implementations that use char* generic pointers, and those | | * that use void* generic pointers. It works with the latter | | * because both ANSI C and C++ allow castless assignment from | | * any pointer type to void*, and deal with argument conversions | | * as though doing an assignment. | | */ | | return realloc(ptr, size); | | } | | | | void yyfree (void * ptr ) | | { | | free( (char *) ptr ); /* see yyrealloc() for (char *) cast */ | | } | | | | #define YYTABLES_NAME "yytables" | | | | #line 10 "conftest.l" | | | | | | #ifdef YYTEXT_POINTER | | extern char *yytext; | | #endif | | int | | main (void) | | { | | return ! yylex () + ! yywrap (); | | } | configure:12948: clang -o conftest -g -O2 conftest.c -lfl >&5 | configure:12948: $? = 0 | configure:12958: result: -lfl | configure:12964: checking whether yytext is a pointer | configure:12981: clang -o conftest -g -O2 conftest.c -lfl >&5 | configure:12981: $? = 0 | configure:12989: result: yes | configure:13006: checking for bison | configure:13022: found /usr/bin/bison | configure:13033: result: bison -y | configure:13049: checking whether ln -s works | configure:13053: result: yes | configure:13066: checking whether make sets $(MAKE) | configure:13088: result: yes | configure:13122: checking for ld used by clang | configure:13189: result: /usr/bin/ld -m elf_x86_64 | configure:13196: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld | configure:13211: result: yes | configure:13218: checking for shared library run path origin | configure:13231: result: done | configure:13253: checking for ANSI C header files | configure:13357: result: yes | configure:13369: checking for stdint.h | configure:13369: result: yes | configure:13369: checking for sys/types.h | configure:13369: result: yes | configure:13369: checking signal.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking signal.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for signal.h | configure:13369: result: yes | configure:13369: checking fcntl.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking fcntl.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for fcntl.h | configure:13369: result: yes | configure:13369: checking malloc.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking malloc.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for malloc.h | configure:13369: result: yes | configure:13369: checking locale.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking locale.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for locale.h | configure:13369: result: yes | configure:13369: checking stddef.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking stddef.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for stddef.h | configure:13369: result: yes | configure:13369: checking wchar.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking wchar.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for wchar.h | configure:13369: result: yes | configure:13369: checking for dlfcn.h | configure:13369: result: yes | configure:13369: checking sys/time.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking sys/time.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for sys/time.h | configure:13369: result: yes | configure:13369: checking sys/wait.h usability | configure:13369: clang -c -g -O2 conftest.c >&5 | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking sys/wait.h presence | configure:13369: clang -E conftest.c | configure:13369: $? = 0 | configure:13369: result: yes | configure:13369: checking for sys/wait.h | configure:13369: result: yes | configure:13382: checking for an ANSI C-conforming const | configure:13448: clang -c -g -O2 conftest.c >&5 | configure:13448: $? = 0 | configure:13455: result: yes | configure:13463: checking whether byte ordering is bigendian | configure:13478: clang -c -g -O2 conftest.c >&5 | conftest.c:44:9: error: unknown type name 'not' | not a universal capable compiler | ^ | conftest.c:44:14: error: expected ';' after top level declarator | not a universal capable compiler | ^ | ; | 2 errors generated. | configure:13478: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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:13523: clang -c -g -O2 conftest.c >&5 | configure:13523: $? = 0 | configure:13541: clang -c -g -O2 conftest.c >&5 | conftest.c:50:4: error: use of undeclared identifier 'not' | not big endian | ^ | 1 error generated. | configure:13541: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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:13669: result: no | configure:13687: checking for size_t | configure:13687: clang -c -g -O2 conftest.c >&5 | configure:13687: $? = 0 | configure:13687: clang -c -g -O2 conftest.c >&5 | conftest.c:79:21: error: expected expression | if (sizeof ((size_t))) | ^ | 1 error generated. | configure:13687: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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:13687: result: yes | configure:13698: checking whether struct tm is in sys/time.h or time.h | configure:13718: clang -c -g -O2 conftest.c >&5 | configure:13718: $? = 0 | configure:13725: result: time.h | configure:13733: checking for sig_atomic_t | configure:13733: clang -c -g -O2 conftest.c >&5 | configure:13733: $? = 0 | configure:13733: clang -c -g -O2 conftest.c >&5 | conftest.c:48:27: error: expected expression | if (sizeof ((sig_atomic_t))) | ^ | 1 error generated. | configure:13733: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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:13733: result: yes | configure:13747: checking for inline keyword | configure:13771: clang -c -g -O2 conftest.c >&5 | configure:13771: $? = 0 | configure:13779: result: __inline | configure:13787: checking for vprintf | configure:13787: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:68:6: warning: incompatible redeclaration of library function 'vprintf' [-Wincompatible-library-redeclaration] | char vprintf (); | ^ | conftest.c:68:6: note: 'vprintf' is a builtin with type 'int (const char *, struct __va_list_tag *)' | 1 warning generated. | configure:13787: $? = 0 | configure:13787: result: yes | configure:13793: checking for _doprnt | configure:13793: clang -o conftest -g -O2 conftest.c >&5 | /tmp/conftest-dc0d1e.o: In function `main': | /home/harald/src/gnucobol/trunk/conftest.c:80: undefined reference to `_doprnt' | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:13793: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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:13793: result: no | configure:13810: checking for memmove | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:69:6: warning: incompatible redeclaration of library function 'memmove' [-Wincompatible-library-redeclaration] | char memmove (); | ^ | conftest.c:69:6: note: 'memmove' is a builtin with type 'void *(void *, const void *, unsigned long)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for memset | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:70:6: warning: incompatible redeclaration of library function 'memset' [-Wincompatible-library-redeclaration] | char memset (); | ^ | conftest.c:70:6: note: 'memset' is a builtin with type 'void *(void *, int, unsigned long)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for setlocale | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for fcntl | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strerror | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:73:6: warning: incompatible redeclaration of library function 'strerror' [-Wincompatible-library-redeclaration] | char strerror (); | ^ | conftest.c:73:6: note: 'strerror' is a builtin with type 'char *(int)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strcasecmp | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:74:6: warning: incompatible redeclaration of library function 'strcasecmp' [-Wincompatible-library-redeclaration] | char strcasecmp (); | ^ | conftest.c:74:6: note: 'strcasecmp' is a builtin with type 'int (const char *, const char *)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strchr | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:75:6: warning: incompatible redeclaration of library function 'strchr' [-Wincompatible-library-redeclaration] | char strchr (); | ^ | conftest.c:75:6: note: 'strchr' is a builtin with type 'char *(const char *, int)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strrchr | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:76:6: warning: incompatible redeclaration of library function 'strrchr' [-Wincompatible-library-redeclaration] | char strrchr (); | ^ | conftest.c:76:6: note: 'strrchr' is a builtin with type 'char *(const char *, int)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strdup | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:77:6: warning: incompatible redeclaration of library function 'strdup' [-Wincompatible-library-redeclaration] | char strdup (); | ^ | conftest.c:77:6: note: 'strdup' is a builtin with type 'char *(const char *)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strstr | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:78:6: warning: incompatible redeclaration of library function 'strstr' [-Wincompatible-library-redeclaration] | char strstr (); | ^ | conftest.c:78:6: note: 'strstr' is a builtin with type 'char *(const char *, const char *)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strtol | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for gettimeofday | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for localeconv | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for readlink | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for getexecname | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | /tmp/conftest-3beb05.o: In function `main': | /home/harald/src/gnucobol/trunk/conftest.c:94: undefined reference to `getexecname' | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:13810: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 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:13810: result: no | configure:13810: checking for canonicalize_file_name | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for realpath | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strcoll | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for strxfrm | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | conftest.c:86:6: warning: incompatible redeclaration of library function 'strxfrm' [-Wincompatible-library-redeclaration] | char strxfrm (); | ^ | conftest.c:86:6: note: 'strxfrm' is a builtin with type 'unsigned long (char *, const char *, unsigned long)' | 1 warning generated. | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for setenv | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13810: checking for raise | configure:13810: clang -o conftest -g -O2 conftest.c >&5 | configure:13810: $? = 0 | configure:13810: result: yes | configure:13823: checking for _BSD_SOURCE | configure:13839: clang -c -g -O2 conftest.c >&5 | conftest.c:72:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:13839: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | #ifndef _BSD_SOURCE | | # error macro not defined | | #endif | | ; | | return 0; | | } | configure:13844: result: no | configure:13850: checking for timezone variable access | configure:13863: clang -c -g -O2 conftest.c >&5 | configure:13863: $? = 0 | configure:13867: result: yes | configure:13876: checking for designated initializers | configure:13892: clang -c -g -O2 conftest.c >&5 | configure:13892: $? = 0 | configure:13894: result: yes | configure:13911: checking for __GNUC__ | configure:13920: clang -c -g -O2 conftest.c >&5 | configure:13920: $? = 0 | configure:13922: result: yes | configure:13930: checking for __INTEL_COMPILER | configure:13939: clang -c -g -O2 conftest.c >&5 | conftest.c:70:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:13939: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __INTEL_COMPILER | | # error macro not defined | | #endif | configure:13947: result: no | configure:13953: checking for __clang__ | configure:13962: clang -c -g -O2 conftest.c >&5 | configure:13962: $? = 0 | configure:13964: result: yes | configure:13972: checking for __xlc__ | configure:13981: clang -c -g -O2 conftest.c >&5 | conftest.c:70:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:13981: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __xlc__ | | # error macro not defined | | #endif | configure:13986: result: no | configure:13991: checking for __WATCOMC__ | configure:14000: clang -c -g -O2 conftest.c >&5 | conftest.c:70:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:14000: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | /* end confdefs.h. */ | | | | #ifndef __WATCOMC__ | | # error macro not defined | | #endif | configure:14005: result: no | configure:14034: checking whether to build with code coverage support | configure:14054: result: no | configure:14712: Checks for GMP ... | configure:14716: checking gmp.h usability | configure:14716: clang -c -g -O2 conftest.c >&5 | configure:14716: $? = 0 | configure:14716: result: yes | configure:14716: checking gmp.h presence | configure:14716: clang -E conftest.c | configure:14716: $? = 0 | configure:14716: result: yes | configure:14716: checking for gmp.h | configure:14716: result: yes | configure:14729: checking for __gmpz_init in -lgmp | configure:14754: clang -o conftest -g -O2 conftest.c -lgmp >&5 | configure:14754: $? = 0 | configure:14763: result: yes | configure:14793: clang -o conftest -g -O2 conftest.c >&5 | configure:14793: $? = 0 | configure:14793: ./conftest | configure:14793: $? = 0 | configure:14828: clang -o conftest -g -O2 conftest.c -lgmp >&5 | configure:14828: $? = 0 | configure:14828: ./conftest | configure:14828: $? = 0 | configure:14841: checking matching GMP version | configure:14847: result: yes (6.1) | configure:14859: checking for __gmp_get_memory_functions in -lgmp | configure:14884: clang -o conftest -g -O2 conftest.c -lgmp >&5 | configure:14884: $? = 0 | configure:14893: result: yes | configure:14903: checking for nanosleep | configure:14916: clang -o conftest -g -O2 conftest.c >&5 | configure:14916: $? = 0 | configure:14918: result: yes | configure:15033: checking for clock_gettime and CLOCK_REALTIME | configure:15046: clang -o conftest -g -O2 conftest.c >&5 | configure:15046: $? = 0 | configure:15048: result: yes | configure:15057: checking for isfinite | configure:15070: clang -o conftest -g -O2 conftest.c >&5 | configure:15070: $? = 0 | configure:15072: result: yes | configure:15090: checking prototype for finite in | configure:15099: result: yes | configure:15130: checking for fdatasync | configure:15130: clang -o conftest -g -O2 conftest.c >&5 | configure:15130: $? = 0 | configure:15130: result: yes | configure:15130: checking for sigaction | configure:15130: clang -o conftest -g -O2 conftest.c >&5 | configure:15130: $? = 0 | configure:15130: result: yes | configure:15163: checking whether NLS is requested | configure:15172: result: yes | configure:15212: checking for msgfmt | configure: trying /usr/bin/msgfmt... | 0 translated messages. | configure:15244: result: /usr/bin/msgfmt | configure:15253: checking for gmsgfmt | configure:15284: result: /usr/bin/msgfmt | configure:15334: checking for xgettext | configure: trying /usr/bin/xgettext... | /usr/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:15366: result: /usr/bin/xgettext | configure:15411: checking for msgmerge | configure: trying /usr/bin/msgmerge... | configure:15442: result: /usr/bin/msgmerge | configure:16028: checking for CFPreferencesCopyAppValue | configure:16055: result: no | configure:16062: checking for CFLocaleCopyCurrent | configure:16089: result: no | configure:16138: checking for GNU gettext in libc | configure:16167: clang -o conftest -g -O2 conftest.c >&5 | configure:16167: $? = 0 | configure:16176: result: yes | configure:17023: checking whether to use NLS | configure:17025: result: yes | configure:17028: checking where the gettext function comes from | configure:17039: result: libc | configure:17105: checking for nl_langinfo and CODESET | configure:17121: clang -o conftest -g -O2 conftest.c >&5 | configure:17121: $? = 0 | configure:17130: result: yes | configure:17140: Checks for curses ... | configure:17144: checking for initscr in -lncursesw | configure:17169: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:17169: $? = 0 | configure:17178: result: yes | configure:17192: checking ncursesw/ncurses.h usability | configure:17192: clang -c -g -O2 conftest.c >&5 | configure:17192: $? = 0 | configure:17192: result: yes | configure:17192: checking ncursesw/ncurses.h presence | configure:17192: clang -E conftest.c | configure:17192: $? = 0 | configure:17192: result: yes | configure:17192: checking for ncursesw/ncurses.h | configure:17192: result: yes | configure:17524: checking for ncurses _nc_freeall function | configure:17538: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:17538: $? = 0 | configure:17540: result: yes | configure:17548: checking for ncurses use_legacy_coding function | configure:17562: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:17562: $? = 0 | configure:17564: result: yes | configure:17575: checking for curses color_set function | configure:17602: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:17602: $? = 0 | configure:17604: result: yes | configure:17616: Checks for Berkeley DB ... | configure:17621: checking db.h usability | configure:17621: clang -c -g -O2 conftest.c >&5 | configure:17621: $? = 0 | configure:17621: result: yes | configure:17621: checking db.h presence | configure:17621: clang -E conftest.c | configure:17621: $? = 0 | configure:17621: result: yes | configure:17621: checking for db.h | configure:17621: result: yes | configure:17659: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:17659: $? = 0 | configure:17659: ./conftest | configure:17659: $? = 0 | configure:17673: db.h reports version "-Berkeley DB 5.3.28: (September 9, 2013)-" | configure:17677: checking for Berkeley DB db.h version >= 4.1 | configure:17681: result: yes (5.3) | configure:17696: checking for Berkeley DB library with version 5.3 | configure:17727: clang -o conftest -g -O2 conftest.c -lncursesw -ldb-5.3 >&5 | configure:17727: $? = 0 | configure:17727: ./conftest | configure:17727: $? = 0 | configure:17741: result: yes | configure:17743: BDB library version 5.3 found as -ldb-5.3 | configure:17804: checking for _WIN32 | configure:17813: clang -c -g -O2 conftest.c >&5 | conftest.c:90:4: error: macro not defined | # error macro not defined | ^ | 1 error generated. | configure:17813: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 1 | | #define HAVE_DB_H 1 | | #define WITH_DB 1 | | /* end confdefs.h. */ | | | | #ifndef _WIN32 | | # error macro not defined | | #endif | configure:17818: result: no | configure:17825: checking for dlopen in -lc | configure:17850: clang -o conftest -g -O2 conftest.c -lc -lncursesw >&5 | /usr/bin/ld: /tmp/conftest-efdafe.o: undefined reference to symbol 'dlopen@@GLIBC_2.2.5' | //lib/x86_64-linux-gnu/libdl.so.2: error adding symbols: DSO missing from command line | clang: error: linker command failed with exit code 1 (use -v to see invocation) | configure:17850: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GnuCOBOL" | | #define PACKAGE_TARNAME "gnucobol" | | #define PACKAGE_VERSION "3.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 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:17859: result: no | configure:17866: checking for dlopen in -ldl | configure:17900: result: yes | configure:17910: checking for dladdr in -ldl | configure:17935: clang -o conftest -g -O2 conftest.c -ldl -lncursesw >&5 | configure:17935: $? = 0 | configure:17944: result: yes | configure:18147: checking for support of computed gotos | configure:18164: clang -c -g -O2 conftest.c >&5 | configure:18164: $? = 0 | configure:18167: result: yes | configure:18176: checking for working strftime | configure:18210: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:18210: $? = 0 | configure:18210: ./conftest | configure:18210: $? = 0 | configure:18214: result: yes | configure:18226: checking if size of long int = size of long long | configure:18262: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:18262: $? = 0 | configure:18262: ./conftest | configure:18262: $? = 0 | configure:18264: result: yes | configure:18275: checking if long is 32 bits | configure:18311: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:18311: $? = 0 | configure:18311: ./conftest | configure:18311: $? = 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.0-dev" | | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | | #define PACKAGE_BUGREPORT "address@hidden" | | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | | #define PACKAGE "gnucobol" | | #define VERSION "3.0-dev" | | #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 YYTEXT_POINTER 1 | | #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_READLINK 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_REALPATH 1 | | #define HAVE_STRCOLL 1 | | #define HAVE_STRXFRM 1 | | #define HAVE_SETENV 1 | | #define HAVE_RAISE 1 | | #define HAVE_TIMEZONE 1 | | #define HAVE_DESIGNATED_INITS 1 | | #define WITH_VARSEQ 0 | | #define HAVE_GMP_H 1 | | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | | #define HAVE_NANO_SLEEP 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_ISFINITE 1 | | #define HAVE_FDATASYNC 1 | | #define HAVE_SIGACTION 1 | | #define ENABLE_NLS 1 | | #define HAVE_GETTEXT 1 | | #define HAVE_DCGETTEXT 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_LIBNCURSESW 1 | | #define HAVE_NCURSESW_NCURSES_H 1 | | #define WITH_CURSES "ncursesw" | | #define HAVE_CURSES_FREEALL 1 | | #define HAVE_USE_LEGACY_CODING 1 | | #define HAVE_COLOR_SET 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_STRFTIME 1 | | #define COB_LI_IS_LL 1 | | /* end confdefs.h. */ | | | | int | | main () | | { | | | | if (sizeof (long) == 4) | | return 0; | | return 1; | | | | ; | | return 0; | | } | configure:18316: result: no | configure:18328: checking if pointer is longer than 32 bits | configure:18370: clang -o conftest -g -O2 conftest.c -lncursesw >&5 | configure:18370: $? = 0 | configure:18370: ./conftest | configure:18370: $? = 0 | configure:18374: result: yes | configure:18410: checking for aligned attribute | configure:18423: clang -c -g -O2 conftest.c >&5 | configure:18423: $? = 0 | configure:18425: result: yes | configure:18563: checking for gcc pointer sign option | configure:18576: clang -c -O2 -pipe -Wno-pointer-sign conftest.c >&5 | configure:18576: $? = 0 | configure:18577: result: yes | configure:18711: checking for ld bind now option | configure:18724: clang -o conftest -O2 -pipe -Wl,-z,relro,-z,now,-O1 conftest.c >&5 | configure:18724: $? = 0 | configure:18725: result: yes | configure:18967: checking that generated files are newer than configure | configure:18973: result: done | configure:19009: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GnuCOBOL config.status 3.0-dev, which was | generated by GNU Autoconf 2.69. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on catnip | | config.status:1351: creating bin/cob-config | config.status:1351: creating Makefile | config.status:1351: creating libcob/Makefile | config.status:1351: creating lib/Makefile | config.status:1351: creating cobc/Makefile | config.status:1351: creating bin/Makefile | config.status:1351: creating po/Makefile.in | config.status:1351: creating doc/Makefile | config.status:1351: creating config/Makefile | config.status:1351: creating copy/Makefile | config.status:1351: creating tests/atlocal | config.status:1351: creating tests/Makefile | config.status:1351: creating tests/cobol85/Makefile | config.status:1351: creating extras/Makefile | config.status:1351: creating config.h | config.status:1580: executing tests/atconfig commands | config.status:1580: executing depfiles commands | config.status:1580: executing libtool commands | config.status:1580: executing po-directories commands | config.status:1580: executing chmod commands | configure:21322: GnuCOBOL Configuration: | configure:21324: CC clang | configure:21326: CFLAGS -O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k -U_FORTIFY_SOURCE | configure:21328: LDFLAGS -Wl,-z,relro,-z,now,-O1 | configure:21334: COB_CC clang | configure:21336: COB_CFLAGS -I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments -pipe | configure:21338: COB_LDFLAGS | configure:21340: COB_LIBS -L${exec_prefix}/lib -lcob -lm -lgmp -lncursesw -ldb-5.3 -ldl | configure:21342: COB_CONFIG_DIR ${datarootdir}/gnucobol/config | configure:21344: COB_COPY_DIR ${datarootdir}/gnucobol/copy | configure:21346: COB_LIBRARY_PATH ${exec_prefix}/lib/gnucobol | configure:21348: COB_OBJECT_EXT o | configure:21350: COB_MODULE_EXT so | configure:21352: COB_EXE_EXT | configure:21354: COB_SHARED_OPT -shared | configure:21356: COB_PIC_FLAGS -fPIC -DPIC | configure:21358: COB_EXPORT_DYN -Wl,--export-dynamic | configure:21361: COB_STRIP_CMD strip --strip-unneeded | configure:21365: Dynamic loading: System | configure:21371: Use gettext for international messages: yes | configure:21373: Use fcntl for file locking: yes | configure:21385: Use ncurses/pdcurses/curses for screen I/O: ncursesw | configure:21410: Use Berkeley DB for ISAM I/O: yes | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_const=yes | ac_cv_env_CC_set=set | ac_cv_env_CC_value=clang | ac_cv_env_CFLAGS_set= | ac_cv_env_CFLAGS_value= | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_LDFLAGS_set= | ac_cv_env_LDFLAGS_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_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_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_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_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_strxfrm=yes | ac_cv_func_vprintf=yes | 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_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_ncursesw_ncurses_h=yes | 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_gmp___gmpz_init=yes | ac_cv_lib_lex=-lfl | ac_cv_lib_ncursesw_initscr=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_FGREP='/bin/grep -F' | ac_cv_path_GMSGFMT=/usr/bin/msgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_MSGFMT=/usr/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/bin/msgmerge | ac_cv_path_SED=/bin/sed | ac_cv_path_XGETTEXT=/usr/bin/xgettext | ac_cv_path_install='/usr/bin/install -c' | ac_cv_path_lt_DD=/bin/dd | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AWK=gawk | ac_cv_prog_CPP='clang -E' | ac_cv_prog_LEX=flex | ac_cv_prog_YACC='bison -y' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_MANIFEST_TOOL=mt | 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_lex_root=lex.yy | ac_cv_prog_lex_yytext_pointer=yes | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_struct_tm=time.h | ac_cv_type_sig_atomic_t=yes | ac_cv_type_size_t=yes | acl_cv_hardcode_direct=no | acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' | acl_cv_hardcode_libdir_separator= | acl_cv_hardcode_minus_L=no | acl_cv_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD='/usr/bin/ld -m elf_x86_64' | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=gcc3 | 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_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext1_libc=yes | lt_cv_ar_at_file=@ | lt_cv_archive_cmds_need_lc=no | lt_cv_deplibs_check_method=pass_all | lt_cv_dlopen=dlopen | lt_cv_dlopen_libs=-ldl | lt_cv_dlopen_self=yes | lt_cv_dlopen_self_static=no | lt_cv_file_magic_cmd='$MAGIC_CMD' | lt_cv_file_magic_test_file= | lt_cv_ld_reload_flag=-r | lt_cv_nm_interface='BSD nm' | lt_cv_objdir=.libs | lt_cv_path_LD=/usr/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_pic='-fPIC -DPIC' | lt_cv_prog_compiler_pic_works=yes | lt_cv_prog_compiler_rtti_exceptions=yes | lt_cv_prog_compiler_static_works=yes | lt_cv_prog_gnu_ld=yes | lt_cv_sharedlib_from_linklib_cmd='printf %s\n' | lt_cv_shlibpath_overrides_runpath=yes | lt_cv_sys_global_symbol_pipe='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='/bin/dd bs=4096 count=1' | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | | | | | | | | | | | | | | @echo "Need to reconfigure with --enable-code-coverage" | @echo "Need to reconfigure with --enable-code-coverage" | $(CODE_COVERAGE_IGNORE_PATTERN); | $(CODE_COVERAGE_OUTPUT_FILE); | # | # | # $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage) | # $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info) | # (Default: $(top_builddir)) | # (Default: empty) | # Multiple directories may be specified, separated by whitespace. | # by lcov for code coverage. (Default: | # collecting lcov instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) | # genhtml instance. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) | # instance. (Default: $CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) | # instance. (Default: $CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) | # instance. (Default: $CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) | # instances. (Default: $CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) | # instances. (Default: based on $CODE_COVERAGE_BRANCH_COVERAGE) | # lcov instance. (Default: empty) | # reports to be created. (Default: | # set to 0 to disable it and leave empty to stay with the default. | # - CODE_COVERAGE_BRANCH_COVERAGE: Set to 1 to enforce branch coverage, | # - CODE_COVERAGE_DIRECTORY: Top-level directory for code coverage reporting. | # - CODE_COVERAGE_GENHTML_OPTIONS: Extra options to pass to the genhtml | # - CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT: Extra options to pass to the | # - CODE_COVERAGE_IGNORE_PATTERN: Extra glob pattern of files to ignore | # - CODE_COVERAGE_LCOV_OPTIONS: Extra options to pass to the collecting lcov | # - CODE_COVERAGE_LCOV_OPTIONS_DEFAULT: Extra options to pass to the | # - CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH: --gcov-tool pathtogcov | # - CODE_COVERAGE_LCOV_RMOPTS: Extra options to pass to the filtering lcov | # - CODE_COVERAGE_LCOV_RMOPTS_DEFAULT: Extra options to pass to the filtering | # - CODE_COVERAGE_LCOV_SHOPTS: Extra options to shared between both lcov | # - CODE_COVERAGE_LCOV_SHOPTS_DEFAULT: Extra options shared between both lcov | # - CODE_COVERAGE_OUTPUT_DIRECTORY: Directory for generated code coverage | # - CODE_COVERAGE_OUTPUT_FILE: Filename and path for the .info file generated | # $(PACKAGE_VERSION). In order to add the current git hash to the title, | # Capture code coverage data | # Code coverage | # Hook rule executed before code-coverage-capture, overridable by the user | # Optional variables | # Optional: | # The generated report will be titled using the $(PACKAGE_NAME) and | # Use recursive makes in order to ignore errors during check | # sanitizes the test-name: replaces with underscores: dashes and dots | # use the git-version-gen script, available online. | $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ | ' | --rc genhtml_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) | --rc lcov_branch_coverage=$(CODE_COVERAGE_BRANCH_COVERAGE)) | .PHONY: check-code-coverage code-coverage-capture code-coverage-capture-hook code-coverage-clean | ACLOCAL='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing aclocal-1.15' | AMDEPBACKSLASH='\' | AMDEP_FALSE='#' | AMDEP_TRUE='' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='1' | AM_DISTCHECK_CONFIGURE_FLAGS += --disable-code-coverage | AM_DISTCHECK_CONFIGURE_FLAGS ?= | AM_V='$(V)' | AR='ar' | AS='as' | AUTOCONF='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing autoconf' | AUTOHEADER='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing autoheader' | AUTOMAKE='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing automake-1.15' | AWK='gawk' | CC='clang' | CCDEPMODE='depmode=gcc3' | CFLAGS='-O2 -pipe -finline-functions -fsigned-char -Wall -Wwrite-strings -Wmissing-prototypes -Wno-format-y2k -U_FORTIFY_SOURCE' | COBC_LIBS='' | COB_BIGENDIAN='no' | COB_CC='clang' | COB_CFLAGS='-I/usr/local/include -Wno-unused -fsigned-char -Wno-pointer-sign -Qunused-arguments -pipe' | COB_CONFIG_DIR='${datarootdir}/gnucobol/config' | COB_COPY_DIR='${datarootdir}/gnucobol/copy' | COB_EXE_EXT='' | COB_EXPORT_DYN='-Wl,--export-dynamic' | COB_FIX_LIB='-Wl,--export-dynamic' | COB_FIX_LIBTOOL='' | COB_HAS_64_BIT_POINTER='yes' | COB_HAS_CURSES='yes' | COB_HAS_ISAM='yes' | COB_HAS_UTC_OFFSET='yes' | COB_KEYWORD_INLINE='' | COB_LDFLAGS='' | COB_LIBRARY_PATH='${exec_prefix}/lib/gnucobol' | COB_LIBS='-L${exec_prefix}/lib -lcob -lm -lgmp -lncursesw -ldb-5.3 -ldl' | 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' | COB_PIC_FLAGS='-fPIC -DPIC' | COB_SHARED_OPT='-shared' | CODE_COVERAGE_BRANCH_COVERAGE ?= | CODE_COVERAGE_CFLAGS='' | CODE_COVERAGE_CPPFLAGS='' | CODE_COVERAGE_CXXFLAGS='' | CODE_COVERAGE_DIRECTORY ?= $(top_builddir) | CODE_COVERAGE_ENABLED='no' | CODE_COVERAGE_ENABLED_FALSE='' | CODE_COVERAGE_ENABLED_TRUE='#' | CODE_COVERAGE_GENHTML_OPTIONS ?= $(CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT) | CODE_COVERAGE_GENHTML_OPTIONS_DEFAULT ?=\ | CODE_COVERAGE_IGNORE_PATTERN ?= | CODE_COVERAGE_LCOV_OPTIONS ?= $(CODE_COVERAGE_LCOV_OPTIONS_DEFAULT) | CODE_COVERAGE_LCOV_OPTIONS_DEFAULT ?= $(CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH) | CODE_COVERAGE_LCOV_OPTIONS_GCOVPATH ?= --gcov-tool "$(GCOV)" | CODE_COVERAGE_LCOV_RMOPTS ?= $(CODE_COVERAGE_LCOV_RMOPTS_DEFAULT) | CODE_COVERAGE_LCOV_RMOPTS_DEFAULT ?= | CODE_COVERAGE_LCOV_SHOPTS ?= $(CODE_COVERAGE_LCOV_SHOPTS_DEFAULT) | CODE_COVERAGE_LCOV_SHOPTS_DEFAULT ?= $(if $(CODE_COVERAGE_BRANCH_COVERAGE),\ | CODE_COVERAGE_LDFLAGS='' | CODE_COVERAGE_LIBS='' | CODE_COVERAGE_OUTPUT_DIRECTORY ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage | CODE_COVERAGE_OUTPUT_FILE ?= $(PACKAGE_NAME)-$(PACKAGE_VERSION)-coverage.info | CODE_COVERAGE_RULES=' | CPP='clang -E' | CPPFLAGS='' | CYGPATH_W='echo' | DEFS='-DHAVE_CONFIG_H' | DEPDIR='.deps' | DLLTOOL='false' | DSYMUTIL='' | DUMPBIN='' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | EXEEXT='' | FGREP='/bin/grep -F' | GCOV='' | GENHTML='' | GETTEXT_MACRO_VERSION='0.19' | GITIGNOREFILES += $(CODE_COVERAGE_OUTPUT_FILE) $(CODE_COVERAGE_OUTPUT_DIRECTORY) | GITIGNOREFILES ?= | GMSGFMT='/usr/bin/msgfmt' | GMSGFMT_015='/usr/bin/msgfmt' | GREP='/bin/grep' | HELP2MAN='${SHELL} /home/harald/src/gnucobol/trunk/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='' | LCOV='' | LD='/usr/bin/ld -m elf_x86_64' | LDFLAGS=' -Wl,-z,relro,-z,now,-O1' | LEX='flex' | LEXLIB='-lfl' | LEX_OUTPUT_ROOT='lex.yy' | LIBCOB_LIBS='-lm -lgmp -lncursesw -ldb-5.3 -ldl' | LIBICONV='-liconv' | LIBINTL='' | LIBOBJS='' | LIBS='' | LIBTOOL='$(SHELL) $(top_builddir)/libtool' | LIPO='' | LN_S='ln -s' | LTLIBICONV='-liconv' | LTLIBINTL='' | LTLIBOBJS='' | LT_SYS_LIBRARY_PATH='' | MAKEINFO='${SHELL} /home/harald/src/gnucobol/trunk/build_aux/missing makeinfo' | MANIFEST_TOOL=':' | MKDIR_P='/bin/mkdir -p' | MSGFMT='/usr/bin/msgfmt' | MSGFMT_015='/usr/bin/msgfmt' | MSGMERGE='/usr/bin/msgmerge' | NM='/usr/bin/nm -B' | NMEDIT='' | OBJDUMP='objdump' | OBJEXT='o' | OTOOL64='' | OTOOL='' | PACKAGE='gnucobol' | PACKAGE_BUGREPORT='address@hidden' | PACKAGE_NAME='GnuCOBOL' | PACKAGE_STRING='GnuCOBOL 3.0-dev' | PACKAGE_TARNAME='gnucobol' | PACKAGE_URL='https://www.gnu.org/software/gnucobol/' | PACKAGE_VERSION='3.0-dev' | PATH_SEPARATOR=':' | POSUB='po' | RANLIB='ranlib' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/bash' | STRIP='strip' | USE_NLS='yes' | VERSION='3.0-dev' | XGETTEXT='/usr/bin/xgettext' | XGETTEXT_015='/usr/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS='' | YACC='bison -y' | 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' | check-code-coverage: | code-coverage-capture-hook: | code-coverage-capture: code-coverage-capture-hook | code_coverage_quiet = $(code_coverage_quiet_$(V)) | code_coverage_quiet_ = $(code_coverage_quiet_$(AM_DEFAULT_VERBOSITY)) | code_coverage_quiet_0 = --quiet | code_coverage_sanitize = $(subst -,_,$(subst .,_,$(1))) | code_coverage_v_genhtml = $(code_coverage_v_genhtml_$(V)) | code_coverage_v_genhtml_ = $(code_coverage_v_genhtml_$(AM_DEFAULT_VERBOSITY)) | code_coverage_v_genhtml_0 = @echo " GEN " $(CODE_COVERAGE_OUTPUT_DIRECTORY); | code_coverage_v_lcov_cap = $(code_coverage_v_lcov_cap_$(V)) | code_coverage_v_lcov_cap_ = $(code_coverage_v_lcov_cap_$(AM_DEFAULT_VERBOSITY)) | code_coverage_v_lcov_cap_0 = @echo " LCOV --capture"\ | code_coverage_v_lcov_ign = $(code_coverage_v_lcov_ign_$(V)) | code_coverage_v_lcov_ign_ = $(code_coverage_v_lcov_ign_$(AM_DEFAULT_VERBOSITY)) | code_coverage_v_lcov_ign_0 = @echo " LCOV --remove /tmp/*"\ | 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}' | includedir='${prefix}/include' | infodir='${datarootdir}/info' | install_sh='${SHELL} /home/harald/src/gnucobol/trunk/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='' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GnuCOBOL" | #define PACKAGE_TARNAME "gnucobol" | #define PACKAGE_VERSION "3.0-dev" | #define PACKAGE_STRING "GnuCOBOL 3.0-dev" | #define PACKAGE_BUGREPORT "address@hidden" | #define PACKAGE_URL "https://www.gnu.org/software/gnucobol/" | #define PACKAGE "gnucobol" | #define VERSION "3.0-dev" | #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 YYTEXT_POINTER 1 | #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_READLINK 1 | #define HAVE_CANONICALIZE_FILE_NAME 1 | #define HAVE_REALPATH 1 | #define HAVE_STRCOLL 1 | #define HAVE_STRXFRM 1 | #define HAVE_SETENV 1 | #define HAVE_RAISE 1 | #define HAVE_TIMEZONE 1 | #define HAVE_DESIGNATED_INITS 1 | #define WITH_VARSEQ 0 | #define HAVE_GMP_H 1 | #define HAVE_MP_GET_MEMORY_FUNCTIONS 1 | #define HAVE_NANO_SLEEP 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_ISFINITE 1 | #define HAVE_FDATASYNC 1 | #define HAVE_SIGACTION 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_LIBNCURSESW 1 | #define HAVE_NCURSESW_NCURSES_H 1 | #define WITH_CURSES "ncursesw" | #define HAVE_CURSES_FREEALL 1 | #define HAVE_USE_LEGACY_CODING 1 | #define HAVE_COLOR_SET 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_STRFTIME 1 | #define COB_LI_IS_LL 1 | #define COB_64_BIT_POINTER 1 | #define HAVE_ATTRIBUTE_ALIGNED 1 | #define COB_EXPORT_DYN "-Wl,--export-dynamic" | #define COB_PIC_FLAGS "-fPIC -DPIC" | #define COB_SHARED_OPT "-shared" | #define COB_OBJECT_EXT "o" | #define COB_MODULE_EXT "so" | #define COB_EXE_EXT "" | #define COB_STRIP_CMD "strip --strip-unneeded" | | configure: exit 0