## --------------------------- ## ## GNU Bison 3.7.3 test suite. ## ## --------------------------- ## testsuite: command line was: $ ../../bison-3.7.3/tests/testsuite -C tests -j3 ## ---------- ## ## ChangeLog. ## ## ---------- ## | 2020-10-13 Akim Demaille | | version 3.7.3 | * NEWS: Record release date. | | 2020-10-13 Akim Demaille | | build: don't link bison against libreadline | Reported by Paul Smith . | https://lists.gnu.org/r/bug-bison/2020-10/msg00001.html ## --------- ## ## Platform. ## ## --------- ## hostname = zendev1 uname -m = x86_64 uname -r = 5.9.0ryzen uname -s = Linux uname -v = #1 SMP Tue Oct 13 05:02:31 CEST 2020 /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/hv/ssd3/sources/builds/bison/tests/ PATH: /home/hv/ssd3/sources/bison-3.7.3/tests/ PATH: /home/hv/bin/ PATH: /usr/local/bin/ PATH: /usr/bin/ PATH: /bin/ PATH: /home/hv/ARM/gcc-arm-none-eabi-8-2019-q3-update/bin/ PATH: /opt/SEGGER/JLink/ testsuite: atconfig: | # Configurable variable values for building test suites. | # Generated by ./config.status. | # Copyright (C) 2020 Free Software Foundation, Inc. | | # The test suite will define top_srcdir=/../.. etc. | at_testdir='tests' | abs_builddir='/home/hv/ssd3/sources/builds/bison/tests' | at_srcdir='../../../bison-3.7.3/tests' | abs_srcdir='/home/hv/ssd3/sources/builds/bison/../../bison-3.7.3/tests' | at_top_srcdir='../../../bison-3.7.3' | abs_top_srcdir='/home/hv/ssd3/sources/builds/bison/../../bison-3.7.3' | at_top_build_prefix='../' | abs_top_builddir='/home/hv/ssd3/sources/builds/bison' | | # Backward compatibility with Autotest <= 2.59b: | at_top_builddir=$at_top_build_prefix | | | EXEEXT='' | AUTOTEST_PATH='tests' | | SHELL=${CONFIG_SHELL-'/bin/bash'} testsuite: atlocal: | # tests/atlocal. Generated from atlocal.in by configure. -*- shell-script -*- | # Configurable variable values for Bison test suite. | | # Copyright (C) 2000-2015, 2018-2020 Free Software Foundation, Inc. | # | # This program 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. | # | # This program 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 this program. If not, see . | | # We need 'testsuite.h' (srcdir/test). | CPPFLAGS="-I$abs_top_srcdir/tests " | | # Don't just check if $POSIXLY_CORRECT is set, as Bash, when launched | # as /bin/sh, sets the shell variable POSIXLY_CORRECT to y, but not | # the environment variable. | if env | grep '^POSIXLY_CORRECT=' >/dev/null; then | POSIXLY_CORRECT_IS_EXPORTED=true | else | POSIXLY_CORRECT_IS_EXPORTED=false | fi | | ## ------------------- ## | ## C/C++ Compilation. ## | ## ------------------- ## | | : ${CC='gcc10'} | : ${CXX='g++10'} | | # Is the compiler GCC? | : ${GCC='yes'} | | # Sometimes a test group needs to ignore gcc warnings, so it locally | # sets CFLAGS to this. | : ${NO_WERROR_CFLAGS='-march=znver1 -mtune=znver1 -O3 '} | : ${NO_WERROR_CXXFLAGS='-march=znver1 -mtune=znver1 -O3 '} | : ${WNO_DEPRECATED_CXXFLAGS=''} | | # But most of the time, we want -Werror. | : ${CFLAGS="$NO_WERROR_CFLAGS "} | : ${CXXFLAGS="$NO_WERROR_CXXFLAGS "} | | # If 'exit 77'; skip all C++ tests; otherwise ':'. | : ${BISON_CXX_WORKS=':'} | | # Compiler flags to disable exception support. | : ${NO_EXCEPTIONS_CXXFLAGS=' -fno-exceptions'} | | # Requiring a specific C++ standard. | : ${CXX98_CXXFLAGS='-std=c++98'} | : ${CXX03_CXXFLAGS='-std=c++03'} | : ${CXX11_CXXFLAGS='-std=c++11'} | : ${CXX14_CXXFLAGS='-std=c++14'} | : ${CXX17_CXXFLAGS='-std=c++17'} | : ${CXX2A_CXXFLAGS='-std=c++2a'} | | # Be sure that the C++ compiler is not broken because of gnulib. This | # cannot be checked in configure (gnulib is not parameterized yet), | # and checking this in every C++ test in AC_COMPILE_CXX is too costly. | # | # http://lists.gnu.org/archive/html/bug-bison/2013-06/msg00001.html | # | # FIXME: Check (say 2014) whether this is still needed. | if $BISON_CXX_WORKS; then | # See AT_DATA_SOURCE_PROLOGUE. | cat >conftest.cc < | #include | | int main () | { | std::cout << "Works\n"; | } | EOF | $CXX $CXXFLAGS $CPPFLAGS $LDFLAGS $LIBS -o conftest conftest.cc | case $? in | 0);; | *) BISON_CXX_WORKS="as_fn_error 77 cannot-compile-simple-program";; | esac | rm -fr conftest* | fi | | # Whether the compiler supports POSIXLY_CORRECT defined. | : ${C_COMPILER_POSIXLY_CORRECT='true'} | : ${CXX_COMPILER_POSIXLY_CORRECT='true'} | | if $POSIXLY_CORRECT_IS_EXPORTED; then | $C_COMPILER_POSIXLY_CORRECT || BISON_C_WORKS=false | $CXX_COMPILER_POSIXLY_CORRECT || BISON_CXX_WORKS=false | fi | | # Handle --compile-c-with-cxx here, once CXX and CXXFLAGS are known. | if "$at_arg_compile_c_with_cxx"; then | CC_IS_CXX=1 | CC=$CXX | NO_WERROR_CFLAGS=$NO_WERROR_CXXFLAGS | CFLAGS="$CXXFLAGS $WNO_DEPRECATED_CXXFLAGS" | BISON_C_WORKS=$BISON_CXX_WORKS | else | CC_IS_CXX=0 | fi | | | ## ------- ## | ## Other. ## | ## ------- ## | | # Empty if no D compiler was found. | : ${DC=''} | : ${DCFLAGS=''} | if test x"$DC" = x; then | BISON_DC_WORKS=false | else | BISON_DC_WORKS=true | fi | | # Empty if no javac was found | : ${CONF_JAVAC='javac -target 1.7 -source 1.7'} | | # Empty if no Java VM was found | : ${CONF_JAVA='gij'} | | # We need egrep and perl. | : ${EGREP='/bin/grep -E'} | : ${PERL='/usr/bin/perl'} | | # Use simple quotes (lib/quote.c). | # We have an LC_ALL=C pushed onto us via maint.mk. | LC_CTYPE=C | export LC_CTYPE | | # Are special link options needed? | : ${LDFLAGS=''} | | # Are special libraries needed? | : ${LIBS="$abs_top_builddir/lib/libbison.a "} | | # Empty if no xsltproc was found | : ${XSLTPROC='/usr/bin/xsltproc'} | | | # Some tests expect a precise diff format. See AT_DIFF_U_CHECK. | # See https://lists.gnu.org/r/bug-bison/2020-05/msg00049.html. | cat >conftest.1 <conftest.2 <conftest.expected </dev/null | sed -n '/^@@/,$p' | sed 's/^ $//' >conftest.diff | if diff conftest.expected conftest.diff >/dev/null; then | DIFF_U_WORKS=true | else | DIFF_U_WORKS=false | fi | rm conftest.* ## ---------------- ## ## Tested programs. ## ## ---------------- ## ../../../bison-3.7.3/tests/local.at:1668: /home/hv/ssd3/sources/builds/bison/tests/bison --version bison (GNU Bison) 3.7.3 Written by Robert Corbett and Richard Stallman. Copyright (C) 2020 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. ## ------------------ ## ## Running the tests. ## ## ------------------ ## testsuite: starting at: Tue Oct 13 22:26:21 CEST 2020 3. Invalid options (input.at:58): ok (0m0.010s 0m0.000s) 1. Generating Comments (m4.at:21): ok (0m0.012s 0m0.000s) 2. Invalid number of arguments (input.at:27): ok (0m0.011s 0m0.000s) 5. Invalid inputs with {} (input.at:142): ok (0m0.004s 0m0.000s) 4. Invalid inputs (input.at:83): ok (0m0.007s 0m0.000s) 6. Yacc warnings on symbols (input.at:168): ok (0m0.103s 0m0.009s) 9. Invalid symbol declarations (input.at:282): ok (0m0.004s 0m0.000s) 8. Yacc's %type (input.at:233): ok (0m0.133s 0m0.002s) 7. Yacc warnings (input.at:199): ok (0m0.137s 0m0.002s) 12. Symbol declarations (input.at:422): ok (0m0.024s 0m0.000s) 13. Invalid $n and @n (input.at:523): ok (0m0.004s 0m0.000s) 14. Type Clashes (input.at:547): ok (0m0.003s 0m0.000s) 10. Redefining the error token (input.at:336): ok (0m0.079s 0m0.003s) 11. Dangling aliases (input.at:396): ok (0m0.118s 0m0.002s) 17. Symbol redeclared (input.at:789): ok (0m0.117s 0m0.000s) 18. EOF redeclared (input.at:827): ok (0m0.110s 0m0.000s) 19. Symbol class redefinition (input.at:854): ok (0m0.003s 0m0.000s) 20. Default %printer and %destructor redeclared (input.at:894): ok (0m0.008s 0m0.000s) 21. Per-type %printer and %destructor redeclared (input.at:965): ok (0m0.004s 0m0.000s) 22. Undefined symbols (input.at:1008): ok (0m0.004s 0m0.000s) 23. Unassociated types used for a printer or destructor (input.at:1040): ok (0m0.125s 0m0.000s) 15. Unused values (input.at:769): ok (0m0.756s 0m0.006s) 16. Unused values before symbol declarations (input.at:779): ok (0m0.758s 0m0.009s) 24. Useless printers or destructors (input.at:1069): ok (0m0.385s 0m0.018s) 26. Unused values with per-type %destructor (input.at:1182): ok (0m0.109s 0m0.010s) 28. Token collisions (input.at:1242): ok (0m0.004s 0m0.000s) 29. Incompatible Aliases (input.at:1270): ok (0m0.027s 0m0.000s) 25. Unused values with default %destructor (input.at:1134): ok (0m0.242s 0m0.002s) 27. Duplicate string (input.at:1214): ok (0m0.116s 0m0.011s) 31. Typed symbol aliases (input.at:1564): ok (0m0.021s 0m0.000s) 32. Require 1.0 (input.at:1604): ok (0m0.022s 0m0.000s) 34. Require 100.0 (input.at:1607): ok (0m0.004s 0m0.000s) 33. Require 3.7.3 (input.at:1605): ok (0m0.021s 0m0.000s) 35. String aliases for character tokens (input.at:1614): ok (0m0.022s 0m0.000s) 30. Torturing the Scanner (input.at:1395): ok (0m0.119s 0m0.019s) 38. Unclosed constructs (input.at:1745): ok (0m0.004s 0m0.000s) 37. Numbered tokens (input.at:1703): ok (0m0.015s 0m0.008s) 40. %prec takes a token (input.at:1821): ok (0m0.004s 0m0.000s) 39. %start after first rule (input.at:1800): ok (0m0.021s 0m0.000s) 41. %prec's token must be defined (input.at:1842): ok (0m0.101s 0m0.010s) 36. Symbols (input.at:1637): ok (0m0.184s 0m0.019s) 42. Reject unused %code qualifiers (input.at:1862): ok (0m0.139s 0m0.004s) 44. errors (input.at:1991): ok (0m0.027s 0m0.000s) 46. "%define" Boolean variables (input.at:2096): ok (0m0.020s 0m0.001s) 43. Multiple %code (input.at:1951): ok (0m0.073s 0m0.007s) 45. %define, --define, --force-define (input.at:2028): ok (0m0.041s 0m0.000s) 49. "%define" enum variables (input.at:2183): ok (0m0.032s 0m0.001s) 50. "%define" file variables (input.at:2246): ok (0m0.022s 0m0.000s) 51. "%define" backward compatibility (input.at:2268): ok (0m0.005s 0m0.000s) 52. Unused api.pure (input.at:2319): ok (0m0.144s 0m0.001s) 48. "%define" keyword variables (input.at:2150): ok (0m0.231s 0m0.012s) 47. "%define" code variables (input.at:2117): ok (0m0.248s 0m0.012s) 55. Bad escapes in literals (input.at:2469): ok (0m0.005s 0m0.000s) 54. Bad character literals (input.at:2408): ok (0m0.020s 0m0.000s) 56. Unexpected end of file (input.at:2508): ok (0m0.039s 0m0.001s) 53. C++ namespace reference errors (input.at:2355): ok (0m0.228s 0m0.002s) 57. LAC: Errors for %define (input.at:2601): ok (0m0.206s 0m0.010s) 59. %name-prefix and api.prefix are incompatible (input.at:2700): ok (0m0.088s 0m0.002s) 60. Redefined %union name (input.at:2729): ok (0m0.154s 0m0.001s) 61. Stray $ or @ (input.at:2776): ok (0m0.141s 0m0.000s) 58. -Werror combinations (input.at:2655): ok (0m0.444s 0m0.005s) 64. Unput's effect on locations (input.at:3012): ok (0m0.004s 0m0.000s) 63. Deprecated directives (input.at:2883): ok (0m0.085s 0m0.001s) 66. Cannot type action (input.at:3083): ok (0m0.108s 0m0.001s) 65. Non-deprecated directives (input.at:3048): ok (0m0.116s 0m0.002s) 67. Character literals and api.token.raw (input.at:3106): ok (0m0.004s 0m0.000s) 62. Code injection (input.at:2819): ok (0m0.255s 0m0.010s) 69. Invalid file prefix mapping arguments (input.at:3166): ok (0m0.014s 0m0.001s) 71. Undefined and ambiguous references (named-refs.at:196): ok (0m0.005s 0m0.000s) 68. %token-table and parse.error (input.at:3140): ok (0m0.045s 0m0.000s) 73. Many kinds of errors (named-refs.at:316): ok (0m0.011s 0m0.000s) 74. Missing identifiers in brackets (named-refs.at:551): ok (0m0.003s 0m0.000s) 75. Redundant words in brackets (named-refs.at:567): ok (0m0.004s 0m0.000s) 76. Comments in brackets (named-refs.at:583): ok (0m0.004s 0m0.000s) 77. Stray symbols in brackets (named-refs.at:599): ok (0m0.004s 0m0.001s) 78. Redundant words in LHS brackets (named-refs.at:618): ok (0m0.004s 0m0.000s) 79. Factored LHS (named-refs.at:635): ok (0m0.022s 0m0.000s) 70. Tutorial calculator (named-refs.at:22): ok (0m0.126s 0m0.014s) 80. Unresolved references (named-refs.at:648): ok (0m0.003s 0m0.001s) 72. Misleading references (named-refs.at:297): ok (0m0.122s 0m0.000s) 82. Output files: -dv (output.at:66): ok (0m0.026s 0m0.000s) 83. Output files: -dv >&- (output.at:72): ok (0m0.025s 0m0.000s) 84. Output files: -dv -o foo.c (output.at:79): ok (0m0.027s 0m0.000s) 85. Output files: -dv -y (output.at:82): ok (0m0.032s 0m0.000s) 86. Output files: api.header.include={"./foo.h"} -dv -y (output.at:85): ok (0m0.029s 0m0.000s) 87. Output files: -dv -o foo.tab.c (output.at:90): ok (0m0.024s 0m0.002s) 81. $ or @ followed by . or - (named-refs.at:715): ok (0m0.110s 0m0.010s) 88. Output files: -dv -g --xml --fixed-output-files (output.at:93): ok (0m0.028s 0m0.000s) 89. Output files: -dv -g --xml -y (output.at:95): ok (0m0.031s 0m0.000s) 90. Output files: %require "3.4" -dv -g --xml -y (output.at:97): ok (0m0.031s 0m0.000s) 91. Output files: -dv -g --xml -o y.tab.c (output.at:100): ok (0m0.028s 0m0.000s) 92. Output files: -dv -b bar (output.at:103): ok (0m0.024s 0m0.002s) 93. Output files: -dv -g -o foo.c (output.at:105): ok (0m0.026s 0m0.000s) 94. Output files: %defines %verbose (output.at:109): ok (0m0.026s 0m0.000s) 95. Output files: %defines %verbose %yacc (output.at:111): ok (0m0.030s 0m0.001s) 96. Output files: %defines %verbose %yacc (output.at:114): ok (0m0.030s 0m0.000s) 97. Output files: %file-prefix "bar" %defines %verbose (output.at:118): ok (0m0.018s 0m0.009s) 98. Output files: %output "bar.c" %defines %verbose %yacc (output.at:120): ok (0m0.027s 0m0.000s) 99. Output files: %file-prefix "baz" %output "bar.c" %defines %verbose %yacc (output.at:122): ok (0m0.027s 0m0.000s) 100. Output files: %defines %verbose (output.at:129): ok (0m0.026s 0m0.000s) 101. Output files: %defines %verbose -o foo.c (output.at:132): ok (0m0.027s 0m0.000s) 102. Output files: --defines=foo.hpp -o foo.c++ (output.at:135): ok (0m0.026s 0m0.000s) 103. Output files: %defines "foo.hpp" -o foo.c++ (output.at:139): ok (0m0.026s 0m0.000s) 104. Output files: -o foo.c++ --graph=foo.gph (output.at:143): ok (0m0.025s 0m0.000s) 105. Output files: %type useless --defines --graph --xml --report=all -Wall -Werror (output.at:149): ok (0m0.026s 0m0.000s) 106. Output files: useless=--defines --graph --xml --report=all -Wall -Werror (output.at:156): ok (0m0.027s 0m0.001s) 107. Output files: lalr1.cc (output.at:172): ok (0m0.024s 0m0.001s) 108. Output files: lalr1.cc %verbose (output.at:175): ok (0m0.026s 0m0.000s) 109. Output files: lalr1.cc %defines %verbose (output.at:178): ok (0m0.026s 0m0.000s) 110. Output files: lalr1.cc %verbose %locations (output.at:181): ok (0m0.026s 0m0.000s) 111. Output files: lalr1.cc %defines %verbose %locations (output.at:184): ok (0m0.026s 0m0.000s) 112. Output files: lalr1.cc %defines %verbose (output.at:187): ok (0m0.029s 0m0.000s) 114. Output files: lalr1.cc %defines %verbose %file-prefix "output_dir/foo" (output.at:196): ok (0m0.033s 0m0.001s) 113. Output files: lalr1.cc %defines %verbose %locations -o subdir/foo.cc (output.at:191): ok (0m0.039s 0m0.002s) 115. Output files: lalr1.cc %defines %locations %verbose %file-prefix "output_dir/foo" (output.at:201): ok (0m0.036s 0m0.000s) 116. Output files: lalr1.cc %defines %locations api.location.file=none %require "3.2" (output.at:207): ok (0m0.026s 0m0.000s) 117. Output files: lalr1.cc %defines %locations api.location.file="foo.loc.hh" %require "3.2" (output.at:212): ok (0m0.027s 0m0.000s) 118. Output files: lalr1.cc %defines %locations api.location.file="$at_dir/foo.loc.hh" %require "3.2" (output.at:218): ok (0m0.029s 0m0.000s) 119. Conflicting output files: --graph="foo.tab.c" (output.at:248): ok (0m0.101s 0m0.009s) 120. Conflicting output files: %defines "foo.output" -v (output.at:253): ok (0m0.113s 0m0.001s) 121. Conflicting output files: lalr1.cc %defines %locations --graph="location.hh" (output.at:258): ok (0m0.119s 0m0.000s) 122. Conflicting output files: -o foo.y (output.at:263): ok (0m0.023s 0m0.000s) 123. Output file name: `~!@#$%^&*()-=_+{}[]|\:;<>, .' (output.at:309): ok (0m0.531s 0m0.040s) 124. Output file name: ( (output.at:316): ok (0m0.566s 0m0.012s) 125. Output file name: ) (output.at:317): ok (0m0.529s 0m0.050s) 126. Output file name: # (output.at:318): ok (0m0.537s 0m0.040s) 127. Output file name: @@ (output.at:319): ok (0m0.525s 0m0.053s) 128. Output file name: @{ (output.at:320): ok (0m0.570s 0m0.001s) 129. Output file name: @} (output.at:321): ok (0m0.549s 0m0.021s) 131. Output file name: ] (output.at:323): ok (0m0.555s 0m0.021s) 130. Output file name: [ (output.at:322): ok (0m0.555s 0m0.021s) 132. Graph with no conflicts (output.at:344): ok (0m0.025s 0m0.000s) 133. Graph with unsolved S/R (output.at:384): ok (0m0.025s 0m0.001s) 134. Graph with solved S/R (output.at:454): ok (0m0.027s 0m0.001s) 135. Graph with R/R (output.at:519): ok (0m0.024s 0m0.000s) 136. Graph with reductions with multiple LAT (output.at:557): ok (0m0.027s 0m0.000s) 139. Warnings (diagnostics.at:84): ok (0m0.050s 0m0.000s) 137. Graph with a reduction rule both enabled and disabled (output.at:622): ok (0m0.096s 0m0.000s) 141. Line is too short, and then you die (diagnostics.at:182): ok (0m0.010s 0m0.000s) 142. Zero-width characters (diagnostics.at:217): ok (0m0.013s 0m0.000s) 140. Single point locations (diagnostics.at:133): ok (0m0.053s 0m0.001s) 143. Tabulations and multibyte characters (diagnostics.at:235): ok (0m0.055s 0m0.001s) 144. Tabulations and multibyte characters (diagnostics.at:282): ok (0m0.041s 0m0.009s) 145. Special files (diagnostics.at:303): ok (0m0.051s 0m0.000s) 146. Complaints from M4 (diagnostics.at:328): ok (0m0.051s 0m0.000s) 147. Carriage return (diagnostics.at:351): ok (0m0.014s 0m0.000s) 148. CR NL (diagnostics.at:372): ok (0m0.051s 0m0.000s) 149. Screen width: 200 columns (diagnostics.at:399): ok (0m0.050s 0m0.001s) 150. Screen width: 80 columns (diagnostics.at:432): ok (0m0.043s 0m0.010s) 151. Screen width: 60 columns (diagnostics.at:465): ok (0m0.051s 0m0.000s) 152. Suggestions (diagnostics.at:504): ok (0m0.012s 0m0.001s) 154. Deep Counterexamples (diagnostics.at:585): ok (0m0.014s 0m0.000s) 153. Counterexamples (diagnostics.at:527): ok (0m0.041s 0m0.000s) 156. Relative skeleton file names (skeletons.at:25): ok (0m0.034s 0m0.000s) 155. Indentation with message suppression (diagnostics.at:653): ok (0m0.114s 0m0.001s) 158. Boolean=variables: invalid skeleton defaults (skeletons.at:142): ok (0m0.011s 0m0.000s) 159. Complaining during macro argument expansion (skeletons.at:166): ok (0m0.016s 0m0.000s) 160. Fatal errors make M4 exit immediately (skeletons.at:248): ok (0m0.009s 0m0.000s) 161. Fatal errors but M4 continues producing output (skeletons.at:302): ok (0m0.006s 0m0.000s) 162. Nullable (sets.at:27): ok (0m0.023s 0m0.000s) 163. Broken Closure (sets.at:111): ok (0m0.027s 0m0.000s) 157. Installed skeleton file names (skeletons.at:85): ok (0m0.238s 0m0.007s) 164. Firsts (sets.at:153): ok (0m0.027s 0m0.002s) 165. Accept (sets.at:228): ok (0m0.027s 0m0.000s) 166. Build relations (sets.at:269): ok (0m0.115s 0m0.003s) 167. Reduced Grammar (sets.at:315): ok (0m0.127s 0m0.001s) 168. Reduced Grammar with prec and assoc (sets.at:393): ok (0m0.026s 0m0.000s) 169. Useless Terminals (reduce.at:26): ok (0m0.030s 0m0.000s) 170. Useless Nonterminals (reduce.at:70): ok (0m0.146s 0m0.011s) 171. Useless Rules (reduce.at:120): ok (0m0.187s 0m0.003s) 172. Useless Parts (reduce.at:224): ok (0m0.155s 0m0.001s) 173. Reduced Automaton (reduce.at:312): ok (0m0.144s 0m0.003s) 175. Empty Language (reduce.at:452): ok (0m0.003s 0m0.001s) 138. C++ Output File Prefix Mapping (output.at:725): ok (0m1.287s 0m0.021s) 174. Underivable Rules (reduce.at:406): ok (0m0.112s 0m0.002s) 177. lr.type=lalr: Single State Split (reduce.at:503): ok (0m0.095s 0m0.003s) 176. no lr.type: Single State Split (reduce.at:503): ok (0m0.076s 0m0.022s) 178. lr.type=ielr: Single State Split (reduce.at:503): ok (0m0.097s 0m0.001s) 179. lr.type=canonical-lr: Single State Split (reduce.at:503): ok (0m0.099s 0m0.000s) 180. no lr.type: Lane Split (reduce.at:736): ok (0m0.088s 0m0.010s) 181. lr.type=lalr: Lane Split (reduce.at:736): ok (0m0.094s 0m0.003s) 183. lr.type=canonical-lr: Lane Split (reduce.at:736): ok (0m0.097s 0m0.002s) 182. lr.type=ielr: Lane Split (reduce.at:736): ok (0m0.098s 0m0.001s) 184. no lr.type: Complex Lane Split (reduce.at:980): ok (0m0.089s 0m0.011s) 185. lr.type=lalr: Complex Lane Split (reduce.at:980): ok (0m0.089s 0m0.010s) 186. lr.type=ielr: Complex Lane Split (reduce.at:980): ok (0m0.080s 0m0.017s) 187. lr.type=canonical-lr: Complex Lane Split (reduce.at:980): ok (0m0.098s 0m0.000s) 190. lr.type=ielr: Split During Added Lookahead Propagation (reduce.at:1249): ok (0m0.100s 0m0.000s) 189. lr.type=lalr: Split During Added Lookahead Propagation (reduce.at:1249): ok (0m0.215s 0m0.002s) 188. no lr.type: Split During Added Lookahead Propagation (reduce.at:1249): ok (0m0.217s 0m0.000s) 191. lr.type=canonical-lr: Split During Added Lookahead Propagation (reduce.at:1249): ok (0m0.101s 0m0.000s) 192. no lr.default-reduction (reduce.at:1580): ok (0m0.087s 0m0.010s) 193. lr.default-reduction=most (reduce.at:1580): ok (0m0.090s 0m0.008s) 194. lr.default-reduction=consistent (reduce.at:1580): ok (0m0.095s 0m0.003s) 196. Reports (report.at:24): ok (0m0.082s 0m0.001s) 195. lr.default-reduction=accepting (reduce.at:1580): ok (0m0.092s 0m0.004s) 199. Token declaration order: literals vs. identifiers (conflicts.at:101): ok (0m0.036s 0m0.000s) 197. Reports with conflicts (report.at:1516): ok (0m0.084s 0m0.001s) 198. Token declaration order (conflicts.at:28): ok (0m0.080s 0m0.002s) 200. Useless associativity warning (conflicts.at:183): ok (0m0.136s 0m0.002s) 201. Useless precedence warning (conflicts.at:218): ok (0m0.150s 0m0.002s) 202. S/R in initial (conflicts.at:275): ok (0m0.229s 0m0.001s) 204. parse.error=verbose and consistent errors: lr.type=ielr (conflicts.at:509): ok (0m0.141s 0m0.000s) 205. parse.error=verbose and consistent errors: lr.type=ielr %glr-parser (conflicts.at:513): ok (0m0.368s 0m0.000s) 203. %nonassoc and eof (conflicts.at:301): ok (0m0.575s 0m0.036s) 208. parse.error=verbose and consistent errors: lr.type=ielr lr.default-reduction=consistent (conflicts.at:530): ok (0m0.146s 0m0.001s) 206. parse.error=verbose and consistent errors: lr.type=ielr c++ (conflicts.at:518): ok (0m0.566s 0m0.040s) 209. parse.error=verbose and consistent errors: lr.type=ielr lr.default-reduction=accepting (conflicts.at:535): ok (0m0.134s 0m0.009s) 210. parse.error=verbose and consistent errors: lr.type=canonical-lr (conflicts.at:540): ok (0m0.135s 0m0.010s) 207. parse.error=verbose and consistent errors: lr.type=ielr java (conflicts.at:523): ok (0m0.967s 0m0.050s) 211. parse.error=verbose and consistent errors: lr.type=canonical-lr parse.lac=full (conflicts.at:546): ok (0m0.141s 0m0.024s) 212. parse.error=verbose and consistent errors: lr.type=ielr parse.lac=full (conflicts.at:551): ok (0m0.163s 0m0.001s) 215. parse.error=verbose and consistent errors: (conflicts.at:622): ok (0m0.132s 0m0.019s) 213. parse.error=verbose and consistent errors: c++ lr.type=canonical-lr parse.lac=full (conflicts.at:558): ok (0m0.625s 0m0.039s) 216. parse.error=verbose and consistent errors: %glr-parser (conflicts.at:626): ok (0m0.407s 0m0.000s) 214. parse.error=verbose and consistent errors: c++ lr.type=ielr parse.lac=full (conflicts.at:564): ok (0m0.650s 0m0.010s) 217. parse.error=verbose and consistent errors: lr.default-reduction=consistent (conflicts.at:632): ok (0m0.158s 0m0.000s) 218. parse.error=verbose and consistent errors: lr.default-reduction=accepting (conflicts.at:638): ok (0m0.144s 0m0.014s) 219. parse.error=verbose and consistent errors: lr.type=canonical-lr (conflicts.at:642): ok (0m0.152s 0m0.007s) 220. parse.error=verbose and consistent errors: parse.lac=full (conflicts.at:647): ok (0m0.174s 0m0.007s) 221. parse.error=verbose and consistent errors: parse.lac=full lr.default-reduction=accepting (conflicts.at:651): ok (0m0.178s 0m0.000s) 224. Resolved SR Conflicts (conflicts.at:887): ok (0m0.024s 0m0.000s) 225. %precedence suffices (conflicts.at:989): ok (0m0.025s 0m0.000s) 223. Unresolved SR Conflicts (conflicts.at:764): ok (0m0.112s 0m0.010s) 226. %precedence does not suffice (conflicts.at:1015): ok (0m0.128s 0m0.000s) 227. Syntax error in consistent error state: yacc.c (conflicts.at:1096): ok (0m0.234s 0m0.003s) 228. Syntax error in consistent error state: glr.c (conflicts.at:1096): ok (0m0.466s 0m0.002s) 222. LAC: %nonassoc requires splitting canonical LR states (conflicts.at:676): ok (0m0.739s 0m0.057s) 231. Defaulted Conflicted Reduction (conflicts.at:1127): ok (0m0.120s 0m0.001s) 232. %expect not enough (conflicts.at:1264): ok (0m0.004s 0m0.000s) 233. %expect right (conflicts.at:1284): ok (0m0.023s 0m0.000s) 234. %expect too much (conflicts.at:1301): ok (0m0.003s 0m0.001s) 235. %expect with reduce conflicts (conflicts.at:1321): ok (0m0.004s 0m0.000s) 236. %expect in grammar rule not enough (conflicts.at:1341): ok (0m0.004s 0m0.000s) 237. %expect in grammar rule right (conflicts.at:1360): ok (0m0.023s 0m0.000s) 238. %expect in grammar rules (conflicts.at:1377): ok (0m0.028s 0m0.000s) 239. %expect in grammar rule too much (conflicts.at:1396): ok (0m0.003s 0m0.001s) 240. %expect-rr in grammar rule (conflicts.at:1415): ok (0m0.025s 0m0.000s) 229. Syntax error in consistent error state: lalr1.cc (conflicts.at:1096): ok (0m0.688s 0m0.003s) 241. %expect-rr too much in grammar rule (conflicts.at:1440): ok (0m0.004s 0m0.000s) 242. %expect-rr not enough in grammar rule (conflicts.at:1469): ok (0m0.004s 0m0.000s) 243. %prec with user string (conflicts.at:1498): ok (0m0.023s 0m0.000s) 245. %no-default-prec with %prec (conflicts.at:1544): ok (0m0.023s 0m0.000s) 246. %default-prec (conflicts.at:1568): ok (0m0.023s 0m0.000s) 244. %no-default-prec without %prec (conflicts.at:1515): ok (0m0.118s 0m0.000s) 248. Solved conflicts report for multiple reductions in a state (conflicts.at:1855): ok (0m0.029s 0m0.000s) 249. %nonassoc error actions for multiple reductions in a state (conflicts.at:1935): ok (0m0.018s 0m0.011s) 247. Unreachable States After Conflict Resolution (conflicts.at:1592): ok (0m0.242s 0m0.012s) 250. %expect-rr non GLR (conflicts.at:2020): ok (0m0.224s 0m0.002s) 230. Syntax error in consistent error state: glr.cc (conflicts.at:1096): ok (0m0.776s 0m0.041s) 252. Unifying S/R (counterexample.at:43): ok (0m0.047s 0m0.007s) 253. Deep Unifying S/R (counterexample.at:83): ok (0m0.058s 0m0.001s) 254. S/R Conflict with Nullable Symbols (counterexample.at:144): ok (0m0.057s 0m0.000s) 255. Non-unifying Ambiguous S/R (counterexample.at:207): ok (0m0.058s 0m0.000s) 256. Non-unifying Unambiguous S/R (counterexample.at:254): ok (0m0.051s 0m0.001s) 257. S/R after first token (counterexample.at:298): ok (0m0.062s 0m0.000s) 258. Unifying R/R counterexample (counterexample.at:363): ok (0m0.048s 0m0.000s) 259. Non-unifying R/R LR(1) conflict (counterexample.at:399): ok (0m0.054s 0m0.000s) 261. Cex Search Prepend (counterexample.at:488): ok (0m0.057s 0m0.000s) 262. R/R cex with prec (counterexample.at:550): ok (0m0.092s 0m0.000s) 251. -W versus %expect and %expect-rr (conflicts.at:2052): ok (0m0.864s 0m0.018s) 264. Non-unifying Prefix Share (counterexample.at:797): ok (0m0.050s 0m0.000s) 265. Deep Null Unifying (counterexample.at:842): ok (0m0.052s 0m0.000s) 266. Deep Null Non-unifying (counterexample.at:884): ok (0m0.054s 0m0.000s) 267. Prologue syncline (synclines.at:194): skipped (synclines.at:194) 268. %union syncline (synclines.at:214): skipped (synclines.at:214) 269. %union name syncline (synclines.at:237): skipped (synclines.at:254) 270. Postprologue syncline (synclines.at:264): skipped (synclines.at:264) 271. Action syncline (synclines.at:291): skipped (synclines.at:291) 272. Epilogue syncline (synclines.at:310): skipped (synclines.at:310) 273. %code top syncline (synclines.at:327): skipped (synclines.at:327) 274. %destructor syncline (synclines.at:346): skipped (synclines.at:346) 275. %printer syncline (synclines.at:370): skipped (synclines.at:370) 276. syncline escapes: yacc.c (synclines.at:440): ok (0m0.089s 0m0.007s) 277. syncline escapes: glr.c (synclines.at:440): ok (0m0.345s 0m0.000s) 278. syncline escapes: lalr1.cc (synclines.at:440): ok (0m0.506s 0m0.049s) 279. syncline escapes: glr.cc (synclines.at:440): ok (0m0.624s 0m0.063s) 280. %no-lines: yacc.c (synclines.at:497): ok (0m0.052s 0m0.000s) 281. %no-lines: glr.c (synclines.at:497): ok (0m0.055s 0m0.000s) 282. %no-lines: lalr1.cc (synclines.at:497): ok (0m0.053s 0m0.000s) 283. %no-lines: glr.cc (synclines.at:497): ok (0m0.069s 0m0.000s) 284. Output columns (synclines.at:507): ok (0m0.028s 0m0.000s) 285. Invalid CPP guards: --defines=input/input.h (headers.at:57): ok (0m0.060s 0m0.000s) 286. Invalid CPP guards: --defines=9foo.h (headers.at:58): ok (0m0.047s 0m0.010s) 287. Invalid CPP guards: %glr-parser --defines=input/input.h (headers.at:59): ok (0m0.172s 0m0.000s) 288. Invalid CPP guards: %glr-parser --defines=9foo.h (headers.at:60): ok (0m0.160s 0m0.010s) 289. export YYLTYPE (headers.at:68): ok (0m0.201s 0m0.001s) 290. Sane headers: (headers.at:178): ok (0m0.097s 0m0.025s) 291. Sane headers: %locations %debug (headers.at:179): ok (0m0.178s 0m0.007s) 292. Sane headers: %glr-parser (headers.at:181): ok (0m0.311s 0m0.040s) 293. Sane headers: %locations %debug %glr-parser (headers.at:182): ok (0m0.441s 0m0.036s) 294. Sane headers: api.pure (headers.at:184): ok (0m0.126s 0m0.001s) 295. Sane headers: api.push-pull=both (headers.at:185): ok (0m0.138s 0m0.004s) 296. Sane headers: api.pure api.push-pull=both (headers.at:186): ok (0m0.132s 0m0.009s) 297. Sane headers: c++ (headers.at:188): ok (0m0.686s 0m0.067s) 298. Sane headers: %locations %debug c++ (headers.at:189): ok (0m1.206s 0m0.112s) 299. Sane headers: c++ api.value.type=variant parse.assert (headers.at:190): ok (0m0.846s 0m0.025s) 300. Sane headers: %locations c++ %glr-parser (headers.at:192): ok (0m1.210s 0m0.092s) 301. Several parsers (headers.at:200): ok (0m3.202s 0m0.187s) 302. Midrule actions (actions.at:24): ok (0m0.192s 0m0.030s) 303. Typed midrule actions (actions.at:72): ok (0m0.198s 0m0.029s) 304. Implicitly empty rule (actions.at:122): ok (0m0.264s 0m0.004s) 305. Invalid uses of %empty (actions.at:172): ok (0m0.013s 0m0.000s) 306. Valid uses of %empty (actions.at:240): ok (0m0.114s 0m0.033s) 307. Add missing %empty (actions.at:270): ok (0m0.029s 0m0.000s) 308. Initial location: yacc.c (actions.at:365): ok (0m0.146s 0m0.018s) 309. Initial location: yacc.c api.pure=full (actions.at:366): ok (0m0.149s 0m0.001s) 310. Initial location: yacc.c api.pure %parse-param { int x } (actions.at:367): ok (0m0.124s 0m0.028s) 311. Initial location: yacc.c api.push-pull=both (actions.at:368): ok (0m0.167s 0m0.012s) 312. Initial location: yacc.c api.push-pull=both api.pure=full (actions.at:369): ok (0m0.176s 0m0.000s) 313. Initial location: glr.c (actions.at:370): ok (0m0.255s 0m0.013s) 314. Initial location: glr.c api.pure (actions.at:371): ok (0m0.249s 0m0.012s) 315. Initial location: lalr1.cc (actions.at:372): ok (0m0.602s 0m0.048s) 316. Initial location: glr.cc (actions.at:373): ok (0m0.534s 0m0.064s) 317. Initial location: yacc.c api.pure=full (actions.at:382): ok (0m0.118s 0m0.028s) 318. Initial location: yacc.c api.pure=full (actions.at:393): ok (0m0.139s 0m0.000s) 319. Location print: yacc.c (actions.at:477): ok (0m0.144s 0m0.001s) 320. Location print: glr.c (actions.at:477): ok (0m0.255s 0m0.011s) 321. Location print: lalr1.cc (actions.at:477): ok (0m0.579s 0m0.028s) 322. Location print: glr.cc (actions.at:477): ok (0m0.507s 0m0.058s) 323. Exotic Dollars (actions.at:487): ok (0m0.252s 0m0.016s) 324. Printers and Destructors (actions.at:1046): ok (0m0.261s 0m0.000s) 325. Printers and Destructors with union (actions.at:1047): ok (0m0.246s 0m0.018s) 326. Printers and Destructors: %glr-parser (actions.at:1049): ok (0m0.610s 0m0.010s) 327. Printers and Destructors with union: %glr-parser (actions.at:1050): ok (0m0.592s 0m0.021s) 328. Printers and Destructors: %defines lalr1.cc (actions.at:1052): ok (0m0.827s 0m0.036s) 329. Printers and Destructors with union: %defines lalr1.cc (actions.at:1053): ok (0m0.827s 0m0.070s) 330. Printers and Destructors: %defines glr.cc (actions.at:1055): ok (0m1.069s 0m0.074s) 331. Printers and Destructors with union: %defines glr.cc (actions.at:1056): ok (0m1.069s 0m0.072s) 332. Default tagless %printer and %destructor (actions.at:1067): ok (0m0.377s 0m0.003s) 333. Default tagged and per-type %printer and %destructor (actions.at:1170): ok (0m0.350s 0m0.011s) 334. Default %printer and %destructor for user-defined end token (actions.at:1303): ok (0m0.593s 0m0.027s) 335. Default %printer and %destructor are not for error or $undefined (actions.at:1425): ok (0m0.263s 0m0.012s) 336. Default %printer and %destructor are not for $accept (actions.at:1528): ok (0m0.225s 0m0.018s) 337. Default %printer and %destructor for midrule values (actions.at:1592): ok (0m0.436s 0m0.019s) 338. @$ in %initial-action implies %locations (actions.at:1739): ok (0m0.135s 0m0.012s) 339. @$ in %destructor implies %locations (actions.at:1740): ok (0m0.141s 0m0.010s) 340. @$ in %printer implies %locations (actions.at:1741): ok (0m0.125s 0m0.025s) 341. Qualified $$ in actions: yacc.c (actions.at:1855): ok (0m0.154s 0m0.010s) 342. Qualified $$ in actions: glr.c (actions.at:1855): ok (0m0.390s 0m0.019s) 343. Qualified $$ in actions: lalr1.cc (actions.at:1855): ok (0m0.601s 0m0.061s) 260. Non-unifying R/R LR(2) conflict (counterexample.at:441): ok (0m14.265s 0m3.286s) 345. Destroying lookahead assigned by semantic action (actions.at:1862): ok (0m0.093s 0m0.027s) 346. YYBACKUP (actions.at:1917): ok (0m0.197s 0m0.014s) 347. %union vs. api.value.type (types.at:25): ok (0m0.023s 0m0.000s) 348. %yacc vs. api.value.type=union (types.at:44): ok (0m0.024s 0m0.000s) 344. Qualified $$ in actions: glr.cc (actions.at:1855): ok (0m0.702s 0m0.058s) 349. yacc.c api.value.type={double} (types.at:138): ok (0m0.163s 0m0.000s) 350. yacc.c api.value.type={double} %defines (types.at:138): ok (0m0.146s 0m0.019s) 351. yacc.c api.value.type={variant} (types.at:138): ok (0m0.162s 0m0.009s) 352. yacc.c api.value.type={variant} %defines (types.at:138): ok (0m0.155s 0m0.010s) 353. yacc.c api.value.type={struct foo} (types.at:138): ok (0m0.143s 0m0.029s) 354. yacc.c api.value.type={struct foo} %defines (types.at:138): ok (0m0.158s 0m0.012s) 355. yacc.c api.value.type={struct bar} (types.at:138): ok (0m0.179s 0m0.006s) 357. yacc.c api.value.type={union foo} (types.at:138): ok (0m0.141s 0m0.024s) 356. yacc.c api.value.type={struct bar} %defines (types.at:138): ok (0m0.180s 0m0.000s) 358. yacc.c api.value.type={union foo} %defines (types.at:138): ok (0m0.148s 0m0.015s) 359. yacc.c %union { float fval; int ival; }; (types.at:138): ok (0m0.156s 0m0.008s) 361. yacc.c %union foo { float fval; int ival; }; (types.at:138): ok (0m0.143s 0m0.019s) 360. yacc.c %union { float fval; int ival; }; %defines (types.at:138): ok (0m0.153s 0m0.019s) 363. yacc.c api.value.union.name=foo; %union { float fval; int ival; }; (types.at:138): ok (0m0.162s 0m0.000s) 362. yacc.c %union foo { float fval; int ival; }; %defines (types.at:138): ok (0m0.148s 0m0.020s) 364. yacc.c api.value.union.name=foo; %union { float fval; int ival; }; %defines (types.at:138): ok (0m0.148s 0m0.020s) 365. yacc.c api.value.type=union (types.at:138): ok (0m0.151s 0m0.016s) 366. yacc.c api.value.type=union %defines (types.at:138): ok (0m0.157s 0m0.013s) 367. glr.c api.value.type={double} (types.at:138): ok (0m0.402s 0m0.010s) 368. glr.c api.value.type={double} %defines (types.at:138): ok (0m0.404s 0m0.007s) 369. glr.c api.value.type={variant} (types.at:138): ok (0m0.384s 0m0.026s) 370. glr.c api.value.type={variant} %defines (types.at:138): ok (0m0.389s 0m0.019s) 371. glr.c api.value.type={struct foo} (types.at:138): ok (0m0.396s 0m0.011s) 372. glr.c api.value.type={struct foo} %defines (types.at:138): ok (0m0.386s 0m0.020s) 373. glr.c api.value.type={struct bar} (types.at:138): ok (0m0.435s 0m0.000s) 374. glr.c api.value.type={struct bar} %defines (types.at:138): ok (0m0.411s 0m0.021s) 375. glr.c api.value.type={union foo} (types.at:138): ok (0m0.386s 0m0.019s) 376. glr.c api.value.type={union foo} %defines (types.at:138): ok (0m0.380s 0m0.014s) 377. glr.c %union { float fval; int ival; }; (types.at:138): ok (0m0.391s 0m0.010s) 378. glr.c %union { float fval; int ival; }; %defines (types.at:138): ok (0m0.356s 0m0.039s) 379. glr.c %union foo { float fval; int ival; }; (types.at:138): ok (0m0.372s 0m0.036s) 380. glr.c %union foo { float fval; int ival; }; %defines (types.at:138): ok (0m0.379s 0m0.017s) 381. glr.c api.value.union.name=foo; %union { float fval; int ival; }; (types.at:138): ok (0m0.389s 0m0.010s) 382. glr.c api.value.union.name=foo; %union { float fval; int ival; }; %defines (types.at:138): ok (0m0.375s 0m0.025s) 383. glr.c api.value.type=union (types.at:138): ok (0m0.391s 0m0.010s) 384. glr.c api.value.type=union %defines (types.at:138): ok (0m0.351s 0m0.042s) 263. Null nonterminals (counterexample.at:610): ok (0m40.100s 0m3.474s) 385. lalr1.cc api.value.type={double} (types.at:138): ok (0m4.187s 0m0.313s) 386. lalr1.cc api.value.type={double} %defines (types.at:138): ok (0m4.266s 0m0.296s) 387. lalr1.cc api.value.type={variant} (types.at:138): ok (0m4.076s 0m0.233s) 388. lalr1.cc api.value.type={variant} %defines (types.at:138): ok (0m4.103s 0m0.212s) 389. lalr1.cc api.value.type={struct foo} (types.at:138): ok (0m4.127s 0m0.234s) 390. lalr1.cc api.value.type={struct foo} %defines (types.at:138): ok (0m4.072s 0m0.330s) 391. lalr1.cc api.value.type={struct bar} (types.at:138): ok (0m4.180s 0m0.173s) 392. lalr1.cc api.value.type={struct bar} %defines (types.at:138): ok (0m4.162s 0m0.211s) 393. lalr1.cc api.value.type={union foo} (types.at:138): ok (0m4.082s 0m0.199s) 394. lalr1.cc api.value.type={union foo} %defines (types.at:138): ok (0m4.094s 0m0.234s) 395. lalr1.cc %union { float fval; int ival; }; (types.at:138): ok (0m4.141s 0m0.199s) 396. lalr1.cc %union { float fval; int ival; }; %defines (types.at:138): ok (0m4.036s 0m0.260s) 397. lalr1.cc api.value.type=union (types.at:138): ok (0m4.182s 0m0.226s) 398. lalr1.cc api.value.type=union %defines (types.at:138): ok (0m4.187s 0m0.199s) 399. lalr1.cc api.value.type=variant (types.at:138): ok (0m4.877s 0m0.279s) 400. lalr1.cc api.value.type=variant %defines (types.at:138): ok (0m4.917s 0m0.236s) 401. lalr1.cc api.value.type=variant (types.at:138): ok (0m5.327s 0m0.239s) 402. lalr1.cc api.value.type=variant %defines (types.at:138): ok (0m5.338s 0m0.245s) 403. lalr1.cc api.value.type=variant api.token.constructor (types.at:138): ok (0m4.527s 0m0.157s) 404. lalr1.cc api.value.type=variant api.token.constructor %defines (types.at:138): ok (0m4.385s 0m0.216s) 405. lalr1.cc %code requires { #include } api.value.type=variant (types.at:138): ok (0m3.923s 0m0.195s) 406. lalr1.cc %code requires { #include } api.value.type=variant %defines (types.at:138): ok (0m3.924s 0m0.251s) 407. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor (types.at:138): ok (0m3.918s 0m0.268s) 408. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor %defines (types.at:138): ok (0m3.943s 0m0.214s) 409. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor (types.at:138): ok (0m3.974s 0m0.207s) 410. lalr1.cc %code requires { #include } api.value.type=variant api.token.constructor %defines (types.at:138): ok (0m3.868s 0m0.223s) 411. glr.cc api.value.type={double} (types.at:138): ok (0m4.737s 0m0.282s) 412. glr.cc api.value.type={double} %defines (types.at:138): ok (0m4.789s 0m0.229s) 413. glr.cc api.value.type={variant} (types.at:138): ok (0m4.849s 0m0.179s) 414. glr.cc api.value.type={variant} %defines (types.at:138): ok (0m4.829s 0m0.192s) 415. glr.cc api.value.type={struct foo} (types.at:138): ok (0m4.791s 0m0.242s) 416. glr.cc api.value.type={struct foo} %defines (types.at:138): ok (0m4.835s 0m0.185s) 417. glr.cc api.value.type={struct bar} (types.at:138): ok (0m4.825s 0m0.237s) 418. glr.cc api.value.type={struct bar} %defines (types.at:138): ok (0m4.892s 0m0.180s) 419. glr.cc api.value.type={union foo} (types.at:138): ok (0m4.766s 0m0.230s) 420. glr.cc api.value.type={union foo} %defines (types.at:138): ok (0m4.759s 0m0.222s) 421. glr.cc %union { float fval; int ival; }; (types.at:138): ok (0m4.667s 0m0.291s) 422. glr.cc %union { float fval; int ival; }; %defines (types.at:138): ok (0m4.713s 0m0.299s) 425. lalr1.cc: Named %union (types.at:376): ok (0m0.017s 0m0.009s) 426. glr.cc: Named %union (types.at:376): ok (0m0.031s 0m0.000s) 427. Token numbers: yacc.c (scanner.at:336): ok (0m0.165s 0m0.016s) 428. Token numbers: yacc.c api.token.raw (scanner.at:336): ok (0m0.165s 0m0.010s) 429. Token numbers: glr.c (scanner.at:336): ok (0m0.436s 0m0.011s) 430. Token numbers: glr.c api.token.raw (scanner.at:336): ok (0m0.420s 0m0.020s) 431. Token numbers: lalr1.cc (scanner.at:336): ok (0m0.616s 0m0.021s) 432. Token numbers: lalr1.cc api.token.raw (scanner.at:336): ok (0m0.610s 0m0.029s) 433. Token numbers: glr.cc (scanner.at:336): ok (0m0.735s 0m0.008s) 434. Token numbers: glr.cc api.token.raw (scanner.at:336): ok (0m0.709s 0m0.030s) 423. glr.cc api.value.type=union (types.at:138): ok (0m4.943s 0m0.195s) 424. glr.cc api.value.type=union %defines (types.at:138): ok (0m4.861s 0m0.230s) 437. Token numbers: lalr1.d (scanner.at:336): skipped (scanner.at:336) 438. Token numbers: lalr1.d api.token.raw (scanner.at:336): skipped (scanner.at:336) 435. Token numbers: lalr1.java (scanner.at:336): ok (0m1.056s 0m0.083s) 436. Token numbers: lalr1.java api.token.raw (scanner.at:336): ok (0m1.064s 0m0.031s) 440. Calculator parse.trace (calc.at:1082): ok (0m0.336s 0m0.023s) 439. Token numbers: lalr1.cc api.token.raw api.value.type=variant api.token.constructor (scanner.at:340): ok (0m0.643s 0m0.041s) 441. Calculator %defines (calc.at:1084): ok (0m0.284s 0m0.033s) 442. Calculator %debug %locations (calc.at:1085): ok (0m0.315s 0m0.035s) 443. Calculator %locations api.location.type={Span} (calc.at:1086): ok (0m0.250s 0m0.038s) 444. Calculator %name-prefix "calc" (calc.at:1088): ok (0m0.269s 0m0.020s) 445. Calculator %verbose (calc.at:1089): ok (0m0.282s 0m0.008s) 446. Calculator %yacc (calc.at:1090): ok (0m0.271s 0m0.025s) 447. Calculator parse.error=detailed (calc.at:1091): ok (0m0.322s 0m0.007s) 448. Calculator parse.error=verbose (calc.at:1092): ok (0m0.309s 0m0.023s) 449. Calculator api.pure=full %locations (calc.at:1094): ok (0m0.244s 0m0.038s) 450. Calculator api.push-pull=both api.pure=full %locations (calc.at:1095): ok (0m0.289s 0m0.014s) 451. Calculator parse.error=detailed %locations (calc.at:1096): ok (0m0.320s 0m0.011s) 452. Calculator parse.error=detailed %locations %defines api.prefix={calc} %verbose %yacc (calc.at:1098): ok (0m0.347s 0m0.021s) 453. Calculator parse.error=detailed %locations %defines %name-prefix "calc" api.token.prefix={TOK_} %verbose %yacc (calc.at:1099): ok (0m0.327s 0m0.041s) 454. Calculator %debug (calc.at:1101): ok (0m0.345s 0m0.006s) 455. Calculator parse.error=detailed %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:1102): ok (0m0.405s 0m0.030s) 456. Calculator parse.error=detailed %debug %locations %defines api.prefix={calc} %verbose %yacc (calc.at:1103): ok (0m0.430s 0m0.005s) 457. Calculator api.pure=full parse.error=detailed %debug %locations %defines %name-prefix "calc" %verbose %yacc (calc.at:1105): ok (0m0.401s 0m0.014s) 458. Calculator api.push-pull=both api.pure=full parse.error=detailed %debug %locations %defines api.prefix={calc} %verbose %yacc (calc.at:1106): ok (0m0.440s 0m0.022s) 459. Calculator api.pure parse.error=detailed %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1108): ok (0m0.431s 0m0.020s) 460. Calculator %no-lines api.pure parse.error=detailed %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1110): ok (0m0.415s 0m0.018s) 462. Calculator parse.error=custom (calc.at:1114): ok (0m0.286s 0m0.013s) 461. Calculator %no-lines api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %yacc %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1111): ok (0m0.441s 0m0.003s) 463. Calculator parse.error=custom %locations api.prefix={calc} (calc.at:1115): ok (0m0.253s 0m0.041s) 464. Calculator parse.error=custom %locations api.prefix={calc} %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1116): ok (0m0.295s 0m0.023s) 465. Calculator parse.error=custom %locations api.prefix={calc} %parse-param {semantic_value *result}{int *count}{int *nerrs} api.push-pull=both api.pure=full (calc.at:1117): ok (0m0.319s 0m0.013s) 466. Calculator parse.error=custom %locations api.prefix={calc} %parse-param {semantic_value *result}{int *count}{int *nerrs} api.push-pull=both api.pure=full parse.lac=full (calc.at:1118): ok (0m0.343s 0m0.013s) 467. Calculator %glr-parser (calc.at:1129): ok (0m0.563s 0m0.025s) 468. Calculator %glr-parser %defines (calc.at:1131): ok (0m0.574s 0m0.036s) 469. Calculator %glr-parser %locations (calc.at:1132): ok (0m0.582s 0m0.003s) 470. Calculator %glr-parser %locations api.location.type={Span} (calc.at:1133): ok (0m0.562s 0m0.002s) 471. Calculator %glr-parser %name-prefix "calc" (calc.at:1134): ok (0m0.578s 0m0.004s) 472. Calculator %glr-parser api.prefix={calc} (calc.at:1135): ok (0m0.579s 0m0.007s) 473. Calculator %glr-parser %verbose (calc.at:1136): ok (0m0.550s 0m0.012s) 474. Calculator %glr-parser parse.error=verbose (calc.at:1137): ok (0m0.583s 0m0.036s) 475. Calculator %glr-parser api.pure %locations (calc.at:1139): ok (0m0.571s 0m0.014s) 476. Calculator %glr-parser parse.error=verbose %locations (calc.at:1140): ok (0m0.583s 0m0.013s) 477. Calculator %glr-parser parse.error=custom %locations %defines %name-prefix "calc" %verbose (calc.at:1142): ok (0m0.571s 0m0.040s) 478. Calculator %glr-parser parse.error=detailed %locations %defines %name-prefix "calc" %verbose (calc.at:1143): ok (0m0.642s 0m0.010s) 479. Calculator %glr-parser parse.error=verbose %locations %defines %name-prefix "calc" %verbose (calc.at:1144): ok (0m0.645s 0m0.005s) 480. Calculator %glr-parser %debug (calc.at:1146): ok (0m0.657s 0m0.019s) 481. Calculator %glr-parser parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose (calc.at:1147): ok (0m0.737s 0m0.016s) 482. Calculator %glr-parser parse.error=verbose %debug %locations %defines api.prefix={calc} api.token.prefix={TOK_} %verbose (calc.at:1148): ok (0m0.708s 0m0.025s) 483. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose (calc.at:1150): ok (0m0.731s 0m0.005s) 484. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines %name-prefix "calc" %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1152): ok (0m0.762s 0m0.026s) 485. Calculator %glr-parser api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1153): ok (0m0.783s 0m0.026s) 486. Calculator %glr-parser %no-lines api.pure parse.error=verbose %debug %locations %defines api.prefix={calc} %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1155): ok (0m0.782s 0m0.026s) 488. Calculator C++ (calc.at:1170): ok (0m0.718s 0m0.018s) 487. Calculator lalr1.cc %defines (calc.at:1165): ok (0m1.133s 0m0.077s) 489. Calculator C++ %locations (calc.at:1171): ok (0m0.764s 0m0.024s) 490. Calculator C++ %locations $NO_EXCEPTIONS_CXXFLAGS (calc.at:1172): ok (0m0.689s 0m0.054s) 491. Calculator C++ %locations api.location.type={Span} (calc.at:1173): ok (0m0.711s 0m0.032s) 493. Calculator C++ %locations parse.error=verbose api.prefix={calc} %verbose (calc.at:1176): ok (0m0.799s 0m0.035s) 492. Calculator C++ %defines %locations parse.error=verbose %name-prefix "calc" %verbose (calc.at:1174): ok (0m1.301s 0m0.048s) 494. Calculator C++ %locations parse.error=verbose %debug %name-prefix "calc" %verbose (calc.at:1177): ok (0m0.892s 0m0.075s) 495. Calculator C++ %locations parse.error=verbose %debug api.prefix={calc} %verbose (calc.at:1179): ok (0m0.905s 0m0.039s) 496. Calculator C++ %locations parse.error=verbose %debug api.prefix={calc} api.token.prefix={TOK_} %verbose (calc.at:1180): ok (0m0.908s 0m0.066s) 497. Calculator C++ %defines %locations parse.error=verbose %debug %name-prefix "calc" %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1182): ok (0m1.415s 0m0.076s) 498. Calculator C++ parse.error=verbose %debug api.prefix={calc} %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1184): ok (0m0.897s 0m0.041s) 499. Calculator C++ %defines %locations parse.error=verbose %debug api.prefix={calc} %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1185): ok (0m1.365s 0m0.108s) 500. Calculator C++ %defines %locations api.location.file=none (calc.at:1187): ok (0m1.153s 0m0.085s) 501. Calculator C++ %defines %locations api.location.file="my-location.hh" (calc.at:1188): ok (0m1.205s 0m0.057s) 502. Calculator C++ %no-lines %defines %locations api.location.file="my-location.hh" (calc.at:1190): ok (0m1.189s 0m0.082s) 503. Calculator C++ %locations parse.lac=full parse.error=verbose (calc.at:1192): ok (0m0.914s 0m0.016s) 504. Calculator C++ %locations parse.lac=full parse.error=detailed (calc.at:1193): ok (0m0.851s 0m0.033s) 505. Calculator C++ parse.error=custom (calc.at:1195): ok (0m0.714s 0m0.033s) 506. Calculator C++ parse.error=custom %locations api.prefix={calc} %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1196): ok (0m0.778s 0m0.023s) 507. Calculator C++ parse.error=custom %locations api.prefix={calc} %parse-param {semantic_value *result}{int *count}{int *nerrs} parse.lac=full (calc.at:1197): ok (0m0.792s 0m0.046s) 508. Calculator glr.cc (calc.at:1206): ok (0m0.888s 0m0.039s) 509. Calculator C++ %glr-parser (calc.at:1211): ok (0m0.866s 0m0.056s) 510. Calculator C++ %glr-parser %locations (calc.at:1212): ok (0m0.929s 0m0.034s) 511. Calculator C++ %glr-parser %locations api.location.type={Span} (calc.at:1213): ok (0m0.895s 0m0.054s) 513. Calculator C++ %glr-parser parse.error=verbose api.prefix={calc} %verbose (calc.at:1215): ok (0m0.911s 0m0.055s) 512. Calculator C++ %glr-parser %defines parse.error=verbose %name-prefix "calc" %verbose (calc.at:1214): ok (0m1.309s 0m0.057s) 514. Calculator C++ %glr-parser %debug (calc.at:1217): ok (0m0.959s 0m0.037s) 515. Calculator C++ %glr-parser parse.error=verbose %debug %name-prefix "calc" %verbose (calc.at:1219): ok (0m0.952s 0m0.084s) 516. Calculator C++ %glr-parser parse.error=verbose %debug %name-prefix "calc" api.token.prefix={TOK_} %verbose (calc.at:1220): ok (0m0.974s 0m0.049s) 517. Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug %name-prefix "calc" %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1222): ok (0m1.543s 0m0.064s) 520. Calculator lalr1.d (calc.at:1235): skipped (calc.at:1235) 521. Calculator D (calc.at:1240): skipped (calc.at:1240) 522. Calculator D %locations (calc.at:1241): skipped (calc.at:1241) 523. Calculator D parse.error=verbose api.prefix={calc} %verbose (calc.at:1243): skipped (calc.at:1243) 524. Calculator D %debug (calc.at:1245): skipped (calc.at:1245) 525. Calculator D parse.error=verbose %debug %verbose (calc.at:1247): skipped (calc.at:1247) 518. Calculator C++ %glr-parser %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1223): ok (0m1.577s 0m0.050s) 519. Calculator C++ %glr-parser %no-lines %locations %defines parse.error=verbose %debug api.prefix={calc} %verbose %parse-param {semantic_value *result}{int *count}{int *nerrs} (calc.at:1225): ok (0m1.569s 0m0.079s) 526. Calculator Java (calc.at:1263): ok (0m1.560s 0m0.099s) 527. Calculator Java parse.error=custom (calc.at:1264): ok (0m1.402s 0m0.125s) 528. Calculator Java parse.error=detailed (calc.at:1265): ok (0m1.411s 0m0.161s) 529. Calculator Java parse.error=verbose (calc.at:1266): ok (0m1.386s 0m0.153s) 533. Calculator Java parse.trace parse.error=verbose (calc.at:1270): ok (0m1.692s 0m0.117s) 535. Calculator Java api.push-pull=both (calc.at:1273): ok (0m1.378s 0m0.178s) 541. State number type: 128 states (torture.at:270): skipped (torture.at:270) 542. State number type: 129 states (torture.at:271): skipped (torture.at:271) 543. State number type: 256 states (torture.at:272): skipped (torture.at:272) 544. State number type: 257 states (torture.at:273): skipped (torture.at:273) 539. Big triangle (torture.at:132): ok (0m0.693s 0m0.020s) 545. State number type: 32768 states (torture.at:274): skipped (torture.at:274) 546. State number type: 65536 states (torture.at:275): skipped (torture.at:275) 547. State number type: 65537 states (torture.at:276): skipped (torture.at:276) 549. Exploding the Stack Size with Alloca (torture.at:485): ok (0m0.289s 0m0.020s) 550. Exploding the Stack Size with Malloc (torture.at:531): ok (0m0.302s 0m0.011s) 540. Big horizontal (torture.at:216): ok (0m1.121s 0m0.009s) 551. GNU AWK 3.1.0 Grammar: LALR(1) (existing.at:74): ok (0m0.703s 0m0.032s) 552. GNU AWK 3.1.0 Grammar: IELR(1) (existing.at:74): ok (0m0.747s 0m0.007s) 554. GNU Cim Grammar: LALR(1) (existing.at:808): ok (0m1.141s 0m0.035s) 555. GNU Cim Grammar: IELR(1) (existing.at:808): ok (0m1.187s 0m0.010s) 553. GNU AWK 3.1.0 Grammar: Canonical LR(1) (existing.at:74): ok (0m2.465s 0m0.011s) 548. Many lookahead tokens (torture.at:385): ok (0m4.030s 0m0.019s) 557. GNU pic (Groff 1.18.1) Grammar: LALR(1) (existing.at:1460): ok (0m1.165s 0m0.013s) 558. GNU pic (Groff 1.18.1) Grammar: IELR(1) (existing.at:1460): ok (0m1.203s 0m0.013s) 560. Trivial grammars (regression.at:25): ok (0m0.219s 0m0.014s) 561. YYSTYPE typedef (regression.at:55): ok (0m0.056s 0m0.000s) 562. Early token definitions with --yacc (regression.at:85): ok (0m0.062s 0m0.002s) 563. Early token definitions without --yacc (regression.at:127): ok (0m0.057s 0m0.010s) 564. Braces parsing (regression.at:173): ok (0m0.013s 0m0.009s) 565. Rule Line Numbers (regression.at:196): ok (0m0.026s 0m0.001s) 566. Mixing %token styles (regression.at:345): ok (0m0.107s 0m0.010s) 567. Token definitions: parse.error=detailed (regression.at:437): ok (0m0.233s 0m0.014s) 568. Token definitions: parse.error=verbose (regression.at:438): ok (0m0.222s 0m0.033s) 569. Characters Escapes (regression.at:447): ok (0m0.063s 0m0.004s) 570. Web2c Report (regression.at:480): ok (0m0.027s 0m0.000s) 571. Web2c Actions (regression.at:661): ok (0m0.027s 0m0.000s) 572. Dancer (regression.at:851): ok (0m0.159s 0m0.000s) 573. Dancer %glr-parser (regression.at:852): ok (0m0.487s 0m0.000s) 574. Dancer lalr1.cc (regression.at:853): ok (0m0.558s 0m0.030s) 575. Expecting two tokens (regression.at:928): ok (0m0.142s 0m0.001s) 576. Expecting two tokens %glr-parser (regression.at:929): ok (0m0.370s 0m0.000s) 577. Expecting two tokens lalr1.cc (regression.at:930): ok (0m0.553s 0m0.030s) 578. Braced code in declaration in rules section (regression.at:938): ok (0m0.173s 0m0.010s) 579. String alias declared after use (regression.at:999): ok (0m0.022s 0m0.000s) 580. Extra lookahead sets in report (regression.at:1022): ok (0m0.023s 0m0.000s) 581. Token number in precedence declaration (regression.at:1063): ok (0m0.227s 0m0.011s) 582. parse-gram.y: LALR = IELR (regression.at:1116): ok (0m0.343s 0m0.014s) 583. parse.error=verbose and YYSTACK_USE_ALLOCA (regression.at:1138): ok (0m0.143s 0m0.000s) 584. parse.error=verbose overflow (regression.at:1212): ok (0m0.146s 0m0.007s) 585. LAC: Exploratory stack (regression.at:1336): ok (0m1.742s 0m0.067s) 559. GNU pic (Groff 1.18.1) Grammar: Canonical LR(1) (existing.at:1460): ok (0m7.432s 0m0.141s) 587. Lex and parse params: yacc.c (regression.at:1556): ok (0m0.107s 0m0.000s) 588. Lex and parse params: glr.c (regression.at:1557): ok (0m0.377s 0m0.000s) 586. LAC: Memory exhaustion (regression.at:1422): ok (0m0.809s 0m0.040s) 589. Lex and parse params: lalr1.cc (regression.at:1558): ok (0m0.541s 0m0.027s) 591. stdio.h is not needed (regression.at:1570): ok (0m0.085s 0m0.000s) 592. Memory Leak for Early Deletion (push.at:25): ok (0m0.101s 0m0.002s) 590. Lex and parse params: glr.cc (regression.at:1559): ok (0m0.685s 0m0.021s) 594. Unsupported Skeletons (push.at:145): ok (0m0.023s 0m0.002s) 593. Multiple impure instances (push.at:84): ok (0m0.206s 0m0.012s) 595. C++ Locations Unit Tests (c++.at:26): ok (0m4.829s 0m0.174s) 597. Multiple occurrences of $n and api.value.automove (c++.at:247): ok (0m0.128s 0m0.000s) 556. GNU Cim Grammar: Canonical LR(1) (existing.at:808): ok (0m17.009s 0m0.209s) 596. C++ Variant-based Symbols Unit Tests (c++.at:107): ok (0m6.324s 0m0.201s) 598. Variants lalr1.cc (c++.at:566): ok (0m10.349s 0m0.351s) 600. Variants lalr1.cc parse.assert api.value.automove (c++.at:568): ok (0m10.623s 0m0.497s) 599. Variants lalr1.cc parse.assert (c++.at:567): ok (0m10.978s 0m0.376s) 601. Variants lalr1.cc parse.assert %locations (c++.at:569): ok (0m11.080s 0m0.387s) 602. Variants lalr1.cc parse.assert %code {\n#define TWO_STAGE_BUILD\n} (c++.at:570): ok (0m11.051s 0m0.331s) 603. Variants lalr1.cc parse.assert api.token.constructor (c++.at:571): ok (0m11.021s 0m0.386s) 604. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} (c++.at:572): ok (0m10.805s 0m0.478s) 606. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations api.value.automove (c++.at:574): ok (0m11.206s 0m0.439s) 605. Variants lalr1.cc parse.assert api.token.constructor api.token.prefix={TOK_} %locations (c++.at:573): ok (0m11.373s 0m0.467s) 608. Doxygen Public Documentation (c++.at:794): skipped (c++.at:794) 609. Doxygen Private Documentation (c++.at:795): skipped (c++.at:795) 607. Variants and Typed Midrule Actions (c++.at:584): ok (0m6.635s 0m0.230s) 612. Syntactically invalid namespace references (c++.at:863): ok (0m0.107s 0m0.000s) 613. Syntax error discarding no lookahead (c++.at:884): ok (0m4.060s 0m0.193s) 610. Relative namespace references (c++.at:848): ok (0m10.618s 0m0.695s) 614. Syntax error as exception: lalr1.cc (c++.at:1063): ok (0m6.430s 0m0.333s) 615. Syntax error as exception: glr.cc (c++.at:1064): ok (0m6.431s 0m0.346s) 611. Absolute namespace references (c++.at:854): ok (0m21.282s 0m1.233s) 616. Exception safety with error recovery (c++.at:1358): ok (0m7.794s 0m0.346s) 617. Exception safety without error recovery (c++.at:1359): ok (0m7.801s 0m0.251s) 620. C++ GLR parser identifier shadowing (c++.at:1369): ok (0m4.024s 0m0.146s) 621. Shared locations (c++.at:1420): ok (0m1.207s 0m0.070s) 618. Exception safety with error recovery api.value.type=variant (c++.at:1360): ok (0m9.694s 0m0.286s) 623. Java invalid directives (java.at:25): ok (0m0.022s 0m0.000s) 619. Exception safety without error recovery api.value.type=variant (c++.at:1361): ok (0m9.756s 0m0.306s) 622. Default action (c++.at:1515): ok (0m3.830s 0m0.217s) 624. Java parser class and package names (java.at:171): ok (0m7.416s 0m0.258s) 626. Java parser class extends and implements (java.at:272): ok (0m3.649s 0m0.092s) 625. Java parser class modifiers (java.at:202): ok (0m14.712s 0m0.537s) 627. Java %parse-param and %lex-param (java.at:292): ok (0m10.255s 0m0.569s) 629. Java constructor init and init_throws (java.at:455): ok (0m2.248s 0m0.073s) 630. Java value, position, and location types (java.at:482): ok (0m2.592s 0m0.041s) 631. Java syntax error handling without error token (java.at:513): ok (0m0.952s 0m0.074s) 632. Trivial Push Parser with api.push-pull verification (javapush.at:172): ok (0m1.204s 0m0.055s) 633. Trivial Push Parser with %initial-action (javapush.at:217): ok (0m1.141s 0m0.044s) 634. GLR: Resolve ambiguity, impure, no locations (cxx-type.at:390): ok (0m0.473s 0m0.010s) 635. GLR: Resolve ambiguity, impure, locations (cxx-type.at:397): ok (0m0.589s 0m0.017s) 636. GLR: Resolve ambiguity, pure, no locations (cxx-type.at:403): ok (0m0.473s 0m0.010s) 637. GLR: Resolve ambiguity, pure, locations (cxx-type.at:410): ok (0m0.583s 0m0.020s) 638. GLR: Merge conflicting parses, impure, no locations (cxx-type.at:417): ok (0m0.478s 0m0.012s) 639. GLR: Merge conflicting parses, impure, locations (cxx-type.at:424): ok (0m0.585s 0m0.020s) 640. GLR: Merge conflicting parses, pure, no locations (cxx-type.at:431): ok (0m0.478s 0m0.010s) 642. GLR: Verbose messages, resolve ambiguity, impure, no locations (cxx-type.at:444): ok (0m0.512s 0m0.018s) 641. GLR: Merge conflicting parses, pure, locations (cxx-type.at:437): ok (0m0.599s 0m0.006s) 643. Badly Collapsed GLR States (glr-regression.at:25): ok (0m0.399s 0m0.043s) 644. Improper handling of embedded actions and dollar(-N) in GLR parsers (glr-regression.at:113): ok (0m0.609s 0m0.021s) 645. Improper merging of GLR delayed action sets (glr-regression.at:250): ok (0m0.506s 0m0.011s) 646. Duplicate representation of merged trees (glr-regression.at:373): ok (0m0.439s 0m0.027s) 647. User destructor for unresolved GLR semantic value (glr-regression.at:466): ok (0m0.442s 0m0.020s) 648. User destructor after an error during a split parse (glr-regression.at:524): ok (0m0.439s 0m0.010s) 649. Duplicated user destructor for lookahead (glr-regression.at:576): ok (0m0.467s 0m0.022s) 650. Incorrectly initialized location for empty right-hand side in GLR (glr-regression.at:667): ok (0m0.506s 0m0.015s) 651. No users destructors if stack 0 deleted (glr-regression.at:758): ok (0m0.437s 0m0.013s) 652. Corrupted semantic options if user action cuts parse (glr-regression.at:837): ok (0m0.417s 0m0.013s) 653. Undesirable destructors if user action cuts parse (glr-regression.at:893): ok (0m0.435s 0m0.021s) 654. Leaked semantic values if user action cuts parse (glr-regression.at:953): ok (0m0.491s 0m0.029s) 655. Incorrect lookahead during deterministic GLR (glr-regression.at:1078): ok (0m0.467s 0m0.017s) 656. Incorrect lookahead during nondeterministic GLR (glr-regression.at:1203): ok (0m0.638s 0m0.022s) 657. Leaked semantic values when reporting ambiguity (glr-regression.at:1421): ok (0m0.442s 0m0.019s) 658. Leaked lookahead after nondeterministic parse syntax error (glr-regression.at:1505): ok (0m0.470s 0m0.003s) 660. Missed %merge type warnings when LHS type is declared later (glr-regression.at:1643): ok (0m0.004s 0m0.000s) 659. Uninitialized location when reporting ambiguity (glr-regression.at:1567): ok (0m0.530s 0m0.026s) 662. Predicates (glr-regression.at:1799): ok (0m0.373s 0m0.012s) 661. Ambiguity reports (glr-regression.at:1692): ok (0m0.516s 0m0.013s) 628. Java throws specifications (java.at:366): ok (0m35.455s 0m1.083s) testsuite: ending at: Tue Oct 13 22:30:44 CEST 2020 testsuite: test suite duration: 0h 4m 23s ## ------------- ## ## Test results. ## ## ------------- ## ERROR: 636 tests were run, 7 failed unexpectedly. 26 tests were skipped. ## ------------------------ ## ## Summary of the failures. ## ## ------------------------ ## Failed tests: GNU Bison 3.7.3 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 530: calc.at:1267 Calculator Java %locations parse.error=custom java 531: calc.at:1268 Calculator Java %locations parse.error=detailed java 532: calc.at:1269 Calculator Java %locations parse.error=verbose java 534: calc.at:1271 Calculator Java parse.trace parse.error=verbose %locations %lex-param {InputStream is} java 536: calc.at:1274 Calculator Java api.push-pull=both parse.error=detailed %locations push java 537: calc.at:1275 Calculator Java parse.trace parse.error=custom %locations %lex-param {InputStream is} api.push-pull=both push java 538: calc.at:1276 Calculator Java parse.trace parse.error=verbose %locations %lex-param {InputStream is} api.push-pull=both push java Skipped tests: GNU Bison 3.7.3 test suite test groups: NUM: FILE-NAME:LINE TEST-GROUP-NAME KEYWORDS 267: synclines.at:194 Prologue syncline 268: synclines.at:214 %union syncline 269: synclines.at:237 %union name syncline 270: synclines.at:264 Postprologue syncline 271: synclines.at:291 Action syncline 272: synclines.at:310 Epilogue syncline 273: synclines.at:327 %code top syncline 274: synclines.at:346 %destructor syncline 275: synclines.at:370 %printer syncline 437: scanner.at:336 Token numbers: lalr1.d d 438: scanner.at:336 Token numbers: lalr1.d api.token.raw d 520: calc.at:1235 Calculator lalr1.d d 521: calc.at:1240 Calculator D d 522: calc.at:1241 Calculator D %locations d 523: calc.at:1243 Calculator D parse.error=verbose api.prefix={calc} %verbose d 524: calc.at:1245 Calculator D %debug d 525: calc.at:1247 Calculator D parse.error=verbose %debug %verbose d 541: torture.at:270 State number type: 128 states 542: torture.at:271 State number type: 129 states 543: torture.at:272 State number type: 256 states 544: torture.at:273 State number type: 257 states 545: torture.at:274 State number type: 32768 states 546: torture.at:275 State number type: 65536 states 547: torture.at:276 State number type: 65537 states 608: c++.at:794 Doxygen Public Documentation 609: c++.at:795 Doxygen Private Documentation ## ---------------------- ## ## Detailed failed tests. ## ## ---------------------- ## # -*- compilation -*- 530. calc.at:1267: testing Calculator Java %locations parse.error=custom ... ../../../bison-3.7.3/tests/calc.at:1267: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1267: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1267: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1267: $SHELL ../../../javaexec.sh Calc < input stderr: ../../../bison-3.7.3/tests/calc.at:1267: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1267: $SHELL ../../../javaexec.sh Calc < input stderr: 1.3-1.4: syntax error on token [number] (expected: ['='] ['-'] ['+'] ['*'] ['/'] ['^'] ['\n']) ../../../bison-3.7.3/tests/calc.at:1267: cat stderr ../../../bison-3.7.3/tests/calc.at:1267: $SHELL ../../../javaexec.sh Calc < input stderr: 1.4-1.5: syntax error on token ['/'] (expected: [number] ['-'] ['('] ['!']) ../../../bison-3.7.3/tests/calc.at:1267: cat stderr --- expout 2020-10-13 22:28:49.470519471 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/530/stdout 2020-10-13 22:28:49.470519471 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error on token ['/'] (expected: [number] ['-'] ['('] ['!']) +1.4-1.5: syntax error on token ['/'] (expected: [number] ['-'] ['('] ['!']) 530. calc.at:1267: 530. Calculator Java %locations parse.error=custom (calc.at:1267): FAILED (calc.at:1267) # -*- compilation -*- 531. calc.at:1268: testing Calculator Java %locations parse.error=detailed ... ../../../bison-3.7.3/tests/calc.at:1268: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1268: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1268: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1268: $SHELL ../../../javaexec.sh Calc < input stderr: ../../../bison-3.7.3/tests/calc.at:1268: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1268: $SHELL ../../../javaexec.sh Calc < input stderr: 1.3-1.4: syntax error, unexpected number ../../../bison-3.7.3/tests/calc.at:1268: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1268: cat stderr ../../../bison-3.7.3/tests/calc.at:1268: $SHELL ../../../javaexec.sh Calc < input stderr: 1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' ../../../bison-3.7.3/tests/calc.at:1268: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1268: cat stderr --- expout 2020-10-13 22:28:49.850514499 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/531/stdout 2020-10-13 22:28:49.850514499 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error, unexpected '/', expecting number or '-' or '(' or '!' +1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' 531. calc.at:1268: 531. Calculator Java %locations parse.error=detailed (calc.at:1268): FAILED (calc.at:1268) # -*- compilation -*- 532. calc.at:1269: testing Calculator Java %locations parse.error=verbose ... ../../../bison-3.7.3/tests/calc.at:1269: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1269: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1269: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1269: $SHELL ../../../javaexec.sh Calc < input stderr: ../../../bison-3.7.3/tests/calc.at:1269: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1269: $SHELL ../../../javaexec.sh Calc < input stderr: 1.3-1.4: syntax error, unexpected number ../../../bison-3.7.3/tests/calc.at:1269: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1269: cat stderr ../../../bison-3.7.3/tests/calc.at:1269: $SHELL ../../../javaexec.sh Calc < input stderr: 1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' ../../../bison-3.7.3/tests/calc.at:1269: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1269: cat stderr --- expout 2020-10-13 22:28:50.340508087 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/532/stdout 2020-10-13 22:28:50.340508087 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error, unexpected '/', expecting number or '-' or '(' or '!' +1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' 532. calc.at:1269: 532. Calculator Java %locations parse.error=verbose (calc.at:1269): FAILED (calc.at:1269) # -*- compilation -*- 534. calc.at:1271: testing Calculator Java parse.trace parse.error=verbose %locations %lex-param {InputStream is} ... ../../../bison-3.7.3/tests/calc.at:1271: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1271: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1271: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1271: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 55): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token '+' (1.3-1.4: 1) Shifting token '+' (1.3-1.4: 1) Entering state 17 Stack now 0 8 17 Reading a token Next token is token number (1.5-1.6: 2) Shifting token number (1.5-1.6: 2) Entering state 1 Stack now 0 8 17 1 Reducing stack by rule 5 (line 55): $1 = token number (1.5-1.6: 2) -> $$ = nterm exp (1.5-1.6: 2) Entering state 26 Stack now 0 8 17 26 Reading a token Next token is token '*' (1.7-1.8: 2) Shifting token '*' (1.7-1.8: 2) Entering state 18 Stack now 0 8 17 26 18 Reading a token Next token is token number (1.9-1.10: 3) Shifting token number (1.9-1.10: 3) Entering state 1 Stack now 0 8 17 26 18 1 Reducing stack by rule 5 (line 55): $1 = token number (1.9-1.10: 3) -> $$ = nterm exp (1.9-1.10: 3) Entering state 27 Stack now 0 8 17 26 18 27 Reading a token Next token is token '=' (1.11-1.12: 3) Reducing stack by rule 9 (line 63): $1 = nterm exp (1.5-1.6: 2) $2 = token '*' (1.7-1.8: 2) $3 = nterm exp (1.9-1.10: 3) -> $$ = nterm exp (1.5-1.10: 6) Entering state 26 Stack now 0 8 17 26 Next token is token '=' (1.11-1.12: 3) Reducing stack by rule 7 (line 61): $1 = nterm exp (1.1-1.2: 1) $2 = token '+' (1.3-1.4: 1) $3 = nterm exp (1.5-1.10: 6) -> $$ = nterm exp (1.1-1.10: 7) Entering state 8 Stack now 0 8 Next token is token '=' (1.11-1.12: 3) Shifting token '=' (1.11-1.12: 3) Entering state 15 Stack now 0 8 15 Reading a token Next token is token number (1.13-1.14: 7) Shifting token number (1.13-1.14: 7) Entering state 1 Stack now 0 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (1.13-1.14: 7) -> $$ = nterm exp (1.13-1.14: 7) Entering state 24 Stack now 0 8 15 24 Reading a token Next token is token '\n' (2.1-3.0: 7) Reducing stack by rule 6 (line 56): $1 = nterm exp (1.1-1.10: 7) $2 = token '=' (1.11-1.12: 3) $3 = nterm exp (1.13-1.14: 7) -> $$ = nterm exp (1.1-1.14: 7) Entering state 8 Stack now 0 8 Next token is token '\n' (2.1-3.0: 7) Shifting token '\n' (2.1-3.0: 7) Entering state 21 Stack now 0 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (1.1-1.14: 7) $2 = token '\n' (2.1-3.0: 7) -> $$ = nterm line (1.1-3.0: 7) Entering state 7 Stack now 0 7 Reducing stack by rule 1 (line 45): $1 = nterm line (1.1-3.0: 7) -> $$ = nterm input (1.1-3.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (2.1-2.2: 1) Shifting token number (2.1-2.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (2.1-2.2: 1) -> $$ = nterm exp (2.1-2.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '+' (2.3-2.4: 1) Shifting token '+' (2.3-2.4: 1) Entering state 17 Stack now 0 6 8 17 Reading a token Next token is token number (2.5-2.6: 2) Shifting token number (2.5-2.6: 2) Entering state 1 Stack now 0 6 8 17 1 Reducing stack by rule 5 (line 55): $1 = token number (2.5-2.6: 2) -> $$ = nterm exp (2.5-2.6: 2) Entering state 26 Stack now 0 6 8 17 26 Reading a token Next token is token '*' (2.7-2.8: 2) Shifting token '*' (2.7-2.8: 2) Entering state 18 Stack now 0 6 8 17 26 18 Reading a token Next token is token '-' (2.9-2.10: 2) Shifting token '-' (2.9-2.10: 2) Entering state 2 Stack now 0 6 8 17 26 18 2 Reading a token Next token is token number (2.10-2.11: 3) Shifting token number (2.10-2.11: 3) Entering state 1 Stack now 0 6 8 17 26 18 2 1 Reducing stack by rule 5 (line 55): $1 = token number (2.10-2.11: 3) -> $$ = nterm exp (2.10-2.11: 3) Entering state 10 Stack now 0 6 8 17 26 18 2 10 Reading a token Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 11 (line 65): $1 = token '-' (2.9-2.10: 2) $2 = nterm exp (2.10-2.11: 3) -> $$ = nterm exp (2.9-2.11: -3) Entering state 27 Stack now 0 6 8 17 26 18 27 Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 9 (line 63): $1 = nterm exp (2.5-2.6: 2) $2 = token '*' (2.7-2.8: 2) $3 = nterm exp (2.9-2.11: -3) -> $$ = nterm exp (2.5-2.11: -6) Entering state 26 Stack now 0 6 8 17 26 Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 7 (line 61): $1 = nterm exp (2.1-2.2: 1) $2 = token '+' (2.3-2.4: 1) $3 = nterm exp (2.5-2.11: -6) -> $$ = nterm exp (2.1-2.11: -5) Entering state 8 Stack now 0 6 8 Next token is token '=' (2.12-2.13: 3) Shifting token '=' (2.12-2.13: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (2.14-2.15: 3) Shifting token '-' (2.14-2.15: 3) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (2.15-2.16: 5) Shifting token number (2.15-2.16: 5) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (2.15-2.16: 5) -> $$ = nterm exp (2.15-2.16: 5) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (3.1-4.0: 5) Reducing stack by rule 11 (line 65): $1 = token '-' (2.14-2.15: 3) $2 = nterm exp (2.15-2.16: 5) -> $$ = nterm exp (2.14-2.16: -5) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (3.1-4.0: 5) Reducing stack by rule 6 (line 56): $1 = nterm exp (2.1-2.11: -5) $2 = token '=' (2.12-2.13: 3) $3 = nterm exp (2.14-2.16: -5) -> $$ = nterm exp (2.1-2.16: -5) Entering state 8 Stack now 0 6 8 Next token is token '\n' (3.1-4.0: 5) Shifting token '\n' (3.1-4.0: 5) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (2.1-2.16: -5) $2 = token '\n' (3.1-4.0: 5) -> $$ = nterm line (2.1-4.0: -5) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-3.0: 7) $2 = nterm line (2.1-4.0: -5) -> $$ = nterm input (1.1-4.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (3.1-5.0: 5) Shifting token '\n' (3.1-5.0: 5) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (3.1-5.0: 5) -> $$ = nterm line (3.1-5.0: 5) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-4.0: 7) $2 = nterm line (3.1-5.0: 5) -> $$ = nterm input (1.1-5.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '-' (4.1-4.2: 5) Shifting token '-' (4.1-4.2: 5) Entering state 2 Stack now 0 6 2 Reading a token Next token is token number (4.2-4.3: 1) Shifting token number (4.2-4.3: 1) Entering state 1 Stack now 0 6 2 1 Reducing stack by rule 5 (line 55): $1 = token number (4.2-4.3: 1) -> $$ = nterm exp (4.2-4.3: 1) Entering state 10 Stack now 0 6 2 10 Reading a token Next token is token '^' (4.4: 1) Shifting token '^' (4.4: 1) Entering state 20 Stack now 0 6 2 10 20 Reading a token Next token is token number (4.4-4.5: 2) Shifting token number (4.4-4.5: 2) Entering state 1 Stack now 0 6 2 10 20 1 Reducing stack by rule 5 (line 55): $1 = token number (4.4-4.5: 2) -> $$ = nterm exp (4.4-4.5: 2) Entering state 29 Stack now 0 6 2 10 20 29 Reading a token Next token is token '=' (4.6-4.7: 2) Reducing stack by rule 12 (line 66): $1 = nterm exp (4.2-4.3: 1) $2 = token '^' (4.4: 1) $3 = nterm exp (4.4-4.5: 2) -> $$ = nterm exp (4.2-4.5: 1) Entering state 10 Stack now 0 6 2 10 Next token is token '=' (4.6-4.7: 2) Reducing stack by rule 11 (line 65): $1 = token '-' (4.1-4.2: 5) $2 = nterm exp (4.2-4.5: 1) -> $$ = nterm exp (4.1-4.5: -1) Entering state 8 Stack now 0 6 8 Next token is token '=' (4.6-4.7: 2) Shifting token '=' (4.6-4.7: 2) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (4.8-4.9: 2) Shifting token '-' (4.8-4.9: 2) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (4.9-4.10: 1) Shifting token number (4.9-4.10: 1) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (4.9-4.10: 1) -> $$ = nterm exp (4.9-4.10: 1) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (5.1-6.0: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (4.8-4.9: 2) $2 = nterm exp (4.9-4.10: 1) -> $$ = nterm exp (4.8-4.10: -1) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (5.1-6.0: 1) Reducing stack by rule 6 (line 56): $1 = nterm exp (4.1-4.5: -1) $2 = token '=' (4.6-4.7: 2) $3 = nterm exp (4.8-4.10: -1) -> $$ = nterm exp (4.1-4.10: -1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (5.1-6.0: 1) Shifting token '\n' (5.1-6.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (4.1-4.10: -1) $2 = token '\n' (5.1-6.0: 1) -> $$ = nterm line (4.1-6.0: -1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-5.0: 7) $2 = nterm line (4.1-6.0: -1) -> $$ = nterm input (1.1-6.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '(' (5.1-5.2: 1) Shifting token '(' (5.1-5.2: 1) Entering state 4 Stack now 0 6 4 Reading a token Next token is token '-' (5.2-5.3: 1) Shifting token '-' (5.2-5.3: 1) Entering state 2 Stack now 0 6 4 2 Reading a token Next token is token number (5.3-5.4: 1) Shifting token number (5.3-5.4: 1) Entering state 1 Stack now 0 6 4 2 1 Reducing stack by rule 5 (line 55): $1 = token number (5.3-5.4: 1) -> $$ = nterm exp (5.3-5.4: 1) Entering state 10 Stack now 0 6 4 2 10 Reading a token Next token is token ')' (5.5: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (5.2-5.3: 1) $2 = nterm exp (5.3-5.4: 1) -> $$ = nterm exp (5.2-5.4: -1) Entering state 12 Stack now 0 6 4 12 Next token is token ')' (5.5: 1) Shifting token ')' (5.5: 1) Entering state 23 Stack now 0 6 4 12 23 Reducing stack by rule 13 (line 67): $1 = token '(' (5.1-5.2: 1) $2 = nterm exp (5.2-5.4: -1) $3 = token ')' (5.5: 1) -> $$ = nterm exp (5.1-5.5: -1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (5.5-5.6: 1) Shifting token '^' (5.5-5.6: 1) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (5.6-5.7: 2) Shifting token number (5.6-5.7: 2) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 55): $1 = token number (5.6-5.7: 2) -> $$ = nterm exp (5.6-5.7: 2) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '=' (5.8-5.9: 2) Reducing stack by rule 12 (line 66): $1 = nterm exp (5.1-5.5: -1) $2 = token '^' (5.5-5.6: 1) $3 = nterm exp (5.6-5.7: 2) -> $$ = nterm exp (5.1-5.7: 1) Entering state 8 Stack now 0 6 8 Next token is token '=' (5.8-5.9: 2) Shifting token '=' (5.8-5.9: 2) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (5.10-5.11: 1) Shifting token number (5.10-5.11: 1) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (5.10-5.11: 1) -> $$ = nterm exp (5.10-5.11: 1) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (6.1-7.0: 1) Reducing stack by rule 6 (line 56): $1 = nterm exp (5.1-5.7: 1) $2 = token '=' (5.8-5.9: 2) $3 = nterm exp (5.10-5.11: 1) -> $$ = nterm exp (5.1-5.11: 1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (6.1-7.0: 1) Shifting token '\n' (6.1-7.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (5.1-5.11: 1) $2 = token '\n' (6.1-7.0: 1) -> $$ = nterm line (5.1-7.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-6.0: 7) $2 = nterm line (5.1-7.0: 1) -> $$ = nterm input (1.1-7.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (6.1-8.0: 1) Shifting token '\n' (6.1-8.0: 1) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (6.1-8.0: 1) -> $$ = nterm line (6.1-8.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-7.0: 7) $2 = nterm line (6.1-8.0: 1) -> $$ = nterm input (1.1-8.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '-' (7.1-7.2: 1) Shifting token '-' (7.1-7.2: 1) Entering state 2 Stack now 0 6 2 Reading a token Next token is token '-' (7.2-7.3: 1) Shifting token '-' (7.2-7.3: 1) Entering state 2 Stack now 0 6 2 2 Reading a token Next token is token '-' (7.3-7.4: 1) Shifting token '-' (7.3-7.4: 1) Entering state 2 Stack now 0 6 2 2 2 Reading a token Next token is token number (7.4-7.5: 1) Shifting token number (7.4-7.5: 1) Entering state 1 Stack now 0 6 2 2 2 1 Reducing stack by rule 5 (line 55): $1 = token number (7.4-7.5: 1) -> $$ = nterm exp (7.4-7.5: 1) Entering state 10 Stack now 0 6 2 2 2 10 Reading a token Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.3-7.4: 1) $2 = nterm exp (7.4-7.5: 1) -> $$ = nterm exp (7.3-7.5: -1) Entering state 10 Stack now 0 6 2 2 10 Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.2-7.3: 1) $2 = nterm exp (7.3-7.5: -1) -> $$ = nterm exp (7.2-7.5: 1) Entering state 10 Stack now 0 6 2 10 Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.1-7.2: 1) $2 = nterm exp (7.2-7.5: 1) -> $$ = nterm exp (7.1-7.5: -1) Entering state 8 Stack now 0 6 8 Next token is token '=' (7.6-7.7: 1) Shifting token '=' (7.6-7.7: 1) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (7.8-7.9: 1) Shifting token '-' (7.8-7.9: 1) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (7.9-7.10: 1) Shifting token number (7.9-7.10: 1) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (7.9-7.10: 1) -> $$ = nterm exp (7.9-7.10: 1) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (8.1-9.0: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.8-7.9: 1) $2 = nterm exp (7.9-7.10: 1) -> $$ = nterm exp (7.8-7.10: -1) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (8.1-9.0: 1) Reducing stack by rule 6 (line 56): $1 = nterm exp (7.1-7.5: -1) $2 = token '=' (7.6-7.7: 1) $3 = nterm exp (7.8-7.10: -1) -> $$ = nterm exp (7.1-7.10: -1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (8.1-9.0: 1) Shifting token '\n' (8.1-9.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (7.1-7.10: -1) $2 = token '\n' (8.1-9.0: 1) -> $$ = nterm line (7.1-9.0: -1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-8.0: 7) $2 = nterm line (7.1-9.0: -1) -> $$ = nterm input (1.1-9.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (8.1-10.0: 1) Shifting token '\n' (8.1-10.0: 1) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (8.1-10.0: 1) -> $$ = nterm line (8.1-10.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-9.0: 7) $2 = nterm line (8.1-10.0: 1) -> $$ = nterm input (1.1-10.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (9.1-9.2: 1) Shifting token number (9.1-9.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (9.1-9.2: 1) -> $$ = nterm exp (9.1-9.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '-' (9.3-9.4: 1) Shifting token '-' (9.3-9.4: 1) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token number (9.5-9.6: 2) Shifting token number (9.5-9.6: 2) Entering state 1 Stack now 0 6 8 16 1 Reducing stack by rule 5 (line 55): $1 = token number (9.5-9.6: 2) -> $$ = nterm exp (9.5-9.6: 2) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '-' (9.7-9.8: 2) Reducing stack by rule 8 (line 62): $1 = nterm exp (9.1-9.2: 1) $2 = token '-' (9.3-9.4: 1) $3 = nterm exp (9.5-9.6: 2) -> $$ = nterm exp (9.1-9.6: -1) Entering state 8 Stack now 0 6 8 Next token is token '-' (9.7-9.8: 2) Shifting token '-' (9.7-9.8: 2) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token number (9.9-9.10: 3) Shifting token number (9.9-9.10: 3) Entering state 1 Stack now 0 6 8 16 1 Reducing stack by rule 5 (line 55): $1 = token number (9.9-9.10: 3) -> $$ = nterm exp (9.9-9.10: 3) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '=' (9.11-9.12: 3) Reducing stack by rule 8 (line 62): $1 = nterm exp (9.1-9.6: -1) $2 = token '-' (9.7-9.8: 2) $3 = nterm exp (9.9-9.10: 3) -> $$ = nterm exp (9.1-9.10: -4) Entering state 8 Stack now 0 6 8 Next token is token '=' (9.11-9.12: 3) Shifting token '=' (9.11-9.12: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (9.13-9.14: 3) Shifting token '-' (9.13-9.14: 3) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (9.14-9.15: 4) Shifting token number (9.14-9.15: 4) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (9.14-9.15: 4) -> $$ = nterm exp (9.14-9.15: 4) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (10.1-11.0: 4) Reducing stack by rule 11 (line 65): $1 = token '-' (9.13-9.14: 3) $2 = nterm exp (9.14-9.15: 4) -> $$ = nterm exp (9.13-9.15: -4) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (10.1-11.0: 4) Reducing stack by rule 6 (line 56): $1 = nterm exp (9.1-9.10: -4) $2 = token '=' (9.11-9.12: 3) $3 = nterm exp (9.13-9.15: -4) -> $$ = nterm exp (9.1-9.15: -4) Entering state 8 Stack now 0 6 8 Next token is token '\n' (10.1-11.0: 4) Shifting token '\n' (10.1-11.0: 4) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (9.1-9.15: -4) $2 = token '\n' (10.1-11.0: 4) -> $$ = nterm line (9.1-11.0: -4) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-10.0: 7) $2 = nterm line (9.1-11.0: -4) -> $$ = nterm input (1.1-11.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (10.1-10.2: 1) Shifting token number (10.1-10.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (10.1-10.2: 1) -> $$ = nterm exp (10.1-10.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '-' (10.3-10.4: 1) Shifting token '-' (10.3-10.4: 1) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token '(' (10.5-10.6: 1) Shifting token '(' (10.5-10.6: 1) Entering state 4 Stack now 0 6 8 16 4 Reading a token Next token is token number (10.6-10.7: 2) Shifting token number (10.6-10.7: 2) Entering state 1 Stack now 0 6 8 16 4 1 Reducing stack by rule 5 (line 55): $1 = token number (10.6-10.7: 2) -> $$ = nterm exp (10.6-10.7: 2) Entering state 12 Stack now 0 6 8 16 4 12 Reading a token Next token is token '-' (10.8-10.9: 2) Shifting token '-' (10.8-10.9: 2) Entering state 16 Stack now 0 6 8 16 4 12 16 Reading a token Next token is token number (10.10-10.11: 3) Shifting token number (10.10-10.11: 3) Entering state 1 Stack now 0 6 8 16 4 12 16 1 Reducing stack by rule 5 (line 55): $1 = token number (10.10-10.11: 3) -> $$ = nterm exp (10.10-10.11: 3) Entering state 25 Stack now 0 6 8 16 4 12 16 25 Reading a token Next token is token ')' (10.12: 3) Reducing stack by rule 8 (line 62): $1 = nterm exp (10.6-10.7: 2) $2 = token '-' (10.8-10.9: 2) $3 = nterm exp (10.10-10.11: 3) -> $$ = nterm exp (10.6-10.11: -1) Entering state 12 Stack now 0 6 8 16 4 12 Next token is token ')' (10.12: 3) Shifting token ')' (10.12: 3) Entering state 23 Stack now 0 6 8 16 4 12 23 Reducing stack by rule 13 (line 67): $1 = token '(' (10.5-10.6: 1) $2 = nterm exp (10.6-10.11: -1) $3 = token ')' (10.12: 3) -> $$ = nterm exp (10.5-10.12: -1) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '=' (10.13-10.14: 3) Reducing stack by rule 8 (line 62): $1 = nterm exp (10.1-10.2: 1) $2 = token '-' (10.3-10.4: 1) $3 = nterm exp (10.5-10.12: -1) -> $$ = nterm exp (10.1-10.12: 2) Entering state 8 Stack now 0 6 8 Next token is token '=' (10.13-10.14: 3) Shifting token '=' (10.13-10.14: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (10.15-10.16: 2) Shifting token number (10.15-10.16: 2) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (10.15-10.16: 2) -> $$ = nterm exp (10.15-10.16: 2) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (11.1-12.0: 2) Reducing stack by rule 6 (line 56): $1 = nterm exp (10.1-10.12: 2) $2 = token '=' (10.13-10.14: 3) $3 = nterm exp (10.15-10.16: 2) -> $$ = nterm exp (10.1-10.16: 2) Entering state 8 Stack now 0 6 8 Next token is token '\n' (11.1-12.0: 2) Shifting token '\n' (11.1-12.0: 2) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (10.1-10.16: 2) $2 = token '\n' (11.1-12.0: 2) -> $$ = nterm line (10.1-12.0: 2) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-11.0: 7) $2 = nterm line (10.1-12.0: 2) -> $$ = nterm input (1.1-12.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (11.1-13.0: 2) Shifting token '\n' (11.1-13.0: 2) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (11.1-13.0: 2) -> $$ = nterm line (11.1-13.0: 2) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-12.0: 7) $2 = nterm line (11.1-13.0: 2) -> $$ = nterm input (1.1-13.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (12.1-12.2: 2) Shifting token number (12.1-12.2: 2) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (12.1-12.2: 2) -> $$ = nterm exp (12.1-12.2: 2) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (12.3: 2) Shifting token '^' (12.3: 2) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (12.3-12.4: 2) Shifting token number (12.3-12.4: 2) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 55): $1 = token number (12.3-12.4: 2) -> $$ = nterm exp (12.3-12.4: 2) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '^' (12.5: 2) Shifting token '^' (12.5: 2) Entering state 20 Stack now 0 6 8 20 29 20 Reading a token Next token is token number (12.5-12.6: 3) Shifting token number (12.5-12.6: 3) Entering state 1 Stack now 0 6 8 20 29 20 1 Reducing stack by rule 5 (line 55): $1 = token number (12.5-12.6: 3) -> $$ = nterm exp (12.5-12.6: 3) Entering state 29 Stack now 0 6 8 20 29 20 29 Reading a token Next token is token '=' (12.7-12.8: 3) Reducing stack by rule 12 (line 66): $1 = nterm exp (12.3-12.4: 2) $2 = token '^' (12.5: 2) $3 = nterm exp (12.5-12.6: 3) -> $$ = nterm exp (12.3-12.6: 8) Entering state 29 Stack now 0 6 8 20 29 Next token is token '=' (12.7-12.8: 3) Reducing stack by rule 12 (line 66): $1 = nterm exp (12.1-12.2: 2) $2 = token '^' (12.3: 2) $3 = nterm exp (12.3-12.6: 8) -> $$ = nterm exp (12.1-12.6: 256) Entering state 8 Stack now 0 6 8 Next token is token '=' (12.7-12.8: 3) Shifting token '=' (12.7-12.8: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (12.9-12.12: 256) Shifting token number (12.9-12.12: 256) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (12.9-12.12: 256) -> $$ = nterm exp (12.9-12.12: 256) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (13.1-14.0: 256) Reducing stack by rule 6 (line 56): $1 = nterm exp (12.1-12.6: 256) $2 = token '=' (12.7-12.8: 3) $3 = nterm exp (12.9-12.12: 256) -> $$ = nterm exp (12.1-12.12: 256) Entering state 8 Stack now 0 6 8 Next token is token '\n' (13.1-14.0: 256) Shifting token '\n' (13.1-14.0: 256) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (12.1-12.12: 256) $2 = token '\n' (13.1-14.0: 256) -> $$ = nterm line (12.1-14.0: 256) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-13.0: 7) $2 = nterm line (12.1-14.0: 256) -> $$ = nterm input (1.1-14.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '(' (13.1-13.2: 256) Shifting token '(' (13.1-13.2: 256) Entering state 4 Stack now 0 6 4 Reading a token Next token is token number (13.2-13.3: 2) Shifting token number (13.2-13.3: 2) Entering state 1 Stack now 0 6 4 1 Reducing stack by rule 5 (line 55): $1 = token number (13.2-13.3: 2) -> $$ = nterm exp (13.2-13.3: 2) Entering state 12 Stack now 0 6 4 12 Reading a token Next token is token '^' (13.4: 2) Shifting token '^' (13.4: 2) Entering state 20 Stack now 0 6 4 12 20 Reading a token Next token is token number (13.4-13.5: 2) Shifting token number (13.4-13.5: 2) Entering state 1 Stack now 0 6 4 12 20 1 Reducing stack by rule 5 (line 55): $1 = token number (13.4-13.5: 2) -> $$ = nterm exp (13.4-13.5: 2) Entering state 29 Stack now 0 6 4 12 20 29 Reading a token Next token is token ')' (13.6: 2) Reducing stack by rule 12 (line 66): $1 = nterm exp (13.2-13.3: 2) $2 = token '^' (13.4: 2) $3 = nterm exp (13.4-13.5: 2) -> $$ = nterm exp (13.2-13.5: 4) Entering state 12 Stack now 0 6 4 12 Next token is token ')' (13.6: 2) Shifting token ')' (13.6: 2) Entering state 23 Stack now 0 6 4 12 23 Reducing stack by rule 13 (line 67): $1 = token '(' (13.1-13.2: 256) $2 = nterm exp (13.2-13.5: 4) $3 = token ')' (13.6: 2) -> $$ = nterm exp (13.1-13.6: 4) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (13.6-13.7: 2) Shifting token '^' (13.6-13.7: 2) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (13.7-13.8: 3) Shifting token number (13.7-13.8: 3) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 55): $1 = token number (13.7-13.8: 3) -> $$ = nterm exp (13.7-13.8: 3) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '=' (13.9-13.10: 3) Reducing stack by rule 12 (line 66): $1 = nterm exp (13.1-13.6: 4) $2 = token '^' (13.6-13.7: 2) $3 = nterm exp (13.7-13.8: 3) -> $$ = nterm exp (13.1-13.8: 64) Entering state 8 Stack now 0 6 8 Next token is token '=' (13.9-13.10: 3) Shifting token '=' (13.9-13.10: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (13.11-13.13: 64) Shifting token number (13.11-13.13: 64) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (13.11-13.13: 64) -> $$ = nterm exp (13.11-13.13: 64) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (14.1-15.0: 64) Reducing stack by rule 6 (line 56): $1 = nterm exp (13.1-13.8: 64) $2 = token '=' (13.9-13.10: 3) $3 = nterm exp (13.11-13.13: 64) -> $$ = nterm exp (13.1-13.13: 64) Entering state 8 Stack now 0 6 8 Next token is token '\n' (14.1-15.0: 64) Shifting token '\n' (14.1-15.0: 64) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (13.1-13.13: 64) $2 = token '\n' (14.1-15.0: 64) -> $$ = nterm line (13.1-15.0: 64) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-14.0: 7) $2 = nterm line (13.1-15.0: 64) -> $$ = nterm input (1.1-15.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token end of input (14.1: 64) Shifting token end of input (14.1: 64) Entering state 13 Stack now 0 6 13 ../../../bison-3.7.3/tests/calc.at:1271: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1271: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 55): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token number (1.3-1.4: 2) 1.3-1.4: syntax error, unexpected number Stack now 0 ../../../bison-3.7.3/tests/calc.at:1271: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1271: cat stderr ../../../bison-3.7.3/tests/calc.at:1271: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 55): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token '/' (1.3-1.4: 1) Shifting token '/' (1.3-1.4: 1) Entering state 19 Stack now 0 8 19 Reading a token Next token is token '/' (1.4-1.5: 1) 1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' Stack now 0 8 Stack now 0 ../../../bison-3.7.3/tests/calc.at:1271: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1271: cat stderr --- expout 2020-10-13 22:28:50.680503636 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/534/stdout 2020-10-13 22:28:50.680503636 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error, unexpected '/', expecting number or '-' or '(' or '!' +1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' 534. calc.at:1271: 534. Calculator Java parse.trace parse.error=verbose %locations %lex-param {InputStream is} (calc.at:1271): FAILED (calc.at:1271) # -*- compilation -*- 536. calc.at:1274: testing Calculator Java api.push-pull=both parse.error=detailed %locations ... ../../../bison-3.7.3/tests/calc.at:1274: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1274: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1274: grep -c '^.*public void push_parse_initialize ().*$' Calc.java ../../../bison-3.7.3/tests/calc.at:1274: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1274: $SHELL ../../../javaexec.sh Calc < input stderr: ../../../bison-3.7.3/tests/calc.at:1274: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1274: $SHELL ../../../javaexec.sh Calc < input stderr: 1.3-1.4: syntax error, unexpected number ../../../bison-3.7.3/tests/calc.at:1274: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1274: cat stderr ../../../bison-3.7.3/tests/calc.at:1274: $SHELL ../../../javaexec.sh Calc < input stderr: 1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' ../../../bison-3.7.3/tests/calc.at:1274: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1274: cat stderr --- expout 2020-10-13 22:28:51.420493954 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/536/stdout 2020-10-13 22:28:51.420493954 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error, unexpected '/', expecting number or '-' or '(' or '!' +1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' 536. calc.at:1274: 536. Calculator Java api.push-pull=both parse.error=detailed %locations (calc.at:1274): FAILED (calc.at:1274) # -*- compilation -*- 537. calc.at:1275: testing Calculator Java parse.trace parse.error=custom %locations %lex-param {InputStream is} api.push-pull=both ... ../../../bison-3.7.3/tests/calc.at:1275: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1275: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1275: grep -c '^.*public void push_parse_initialize ().*$' Calc.java ../../../bison-3.7.3/tests/calc.at:1275: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1275: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 65): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token '+' (1.3-1.4: 1) Shifting token '+' (1.3-1.4: 1) Entering state 17 Stack now 0 8 17 Reading a token Next token is token number (1.5-1.6: 2) Shifting token number (1.5-1.6: 2) Entering state 1 Stack now 0 8 17 1 Reducing stack by rule 5 (line 65): $1 = token number (1.5-1.6: 2) -> $$ = nterm exp (1.5-1.6: 2) Entering state 26 Stack now 0 8 17 26 Reading a token Next token is token '*' (1.7-1.8: 2) Shifting token '*' (1.7-1.8: 2) Entering state 18 Stack now 0 8 17 26 18 Reading a token Next token is token number (1.9-1.10: 3) Shifting token number (1.9-1.10: 3) Entering state 1 Stack now 0 8 17 26 18 1 Reducing stack by rule 5 (line 65): $1 = token number (1.9-1.10: 3) -> $$ = nterm exp (1.9-1.10: 3) Entering state 27 Stack now 0 8 17 26 18 27 Reading a token Next token is token '=' (1.11-1.12: 3) Reducing stack by rule 9 (line 73): $1 = nterm exp (1.5-1.6: 2) $2 = token '*' (1.7-1.8: 2) $3 = nterm exp (1.9-1.10: 3) -> $$ = nterm exp (1.5-1.10: 6) Entering state 26 Stack now 0 8 17 26 Next token is token '=' (1.11-1.12: 3) Reducing stack by rule 7 (line 71): $1 = nterm exp (1.1-1.2: 1) $2 = token '+' (1.3-1.4: 1) $3 = nterm exp (1.5-1.10: 6) -> $$ = nterm exp (1.1-1.10: 7) Entering state 8 Stack now 0 8 Next token is token '=' (1.11-1.12: 3) Shifting token '=' (1.11-1.12: 3) Entering state 15 Stack now 0 8 15 Reading a token Next token is token number (1.13-1.14: 7) Shifting token number (1.13-1.14: 7) Entering state 1 Stack now 0 8 15 1 Reducing stack by rule 5 (line 65): $1 = token number (1.13-1.14: 7) -> $$ = nterm exp (1.13-1.14: 7) Entering state 24 Stack now 0 8 15 24 Reading a token Next token is token '\n' (2.1-3.0: 7) Reducing stack by rule 6 (line 66): $1 = nterm exp (1.1-1.10: 7) $2 = token '=' (1.11-1.12: 3) $3 = nterm exp (1.13-1.14: 7) -> $$ = nterm exp (1.1-1.14: 7) Entering state 8 Stack now 0 8 Next token is token '\n' (2.1-3.0: 7) Shifting token '\n' (2.1-3.0: 7) Entering state 21 Stack now 0 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (1.1-1.14: 7) $2 = token '\n' (2.1-3.0: 7) -> $$ = nterm line (1.1-3.0: 7) Entering state 7 Stack now 0 7 Reducing stack by rule 1 (line 55): $1 = nterm line (1.1-3.0: 7) -> $$ = nterm input (1.1-3.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (2.1-2.2: 1) Shifting token number (2.1-2.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 65): $1 = token number (2.1-2.2: 1) -> $$ = nterm exp (2.1-2.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '+' (2.3-2.4: 1) Shifting token '+' (2.3-2.4: 1) Entering state 17 Stack now 0 6 8 17 Reading a token Next token is token number (2.5-2.6: 2) Shifting token number (2.5-2.6: 2) Entering state 1 Stack now 0 6 8 17 1 Reducing stack by rule 5 (line 65): $1 = token number (2.5-2.6: 2) -> $$ = nterm exp (2.5-2.6: 2) Entering state 26 Stack now 0 6 8 17 26 Reading a token Next token is token '*' (2.7-2.8: 2) Shifting token '*' (2.7-2.8: 2) Entering state 18 Stack now 0 6 8 17 26 18 Reading a token Next token is token '-' (2.9-2.10: 2) Shifting token '-' (2.9-2.10: 2) Entering state 2 Stack now 0 6 8 17 26 18 2 Reading a token Next token is token number (2.10-2.11: 3) Shifting token number (2.10-2.11: 3) Entering state 1 Stack now 0 6 8 17 26 18 2 1 Reducing stack by rule 5 (line 65): $1 = token number (2.10-2.11: 3) -> $$ = nterm exp (2.10-2.11: 3) Entering state 10 Stack now 0 6 8 17 26 18 2 10 Reading a token Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 11 (line 75): $1 = token '-' (2.9-2.10: 2) $2 = nterm exp (2.10-2.11: 3) -> $$ = nterm exp (2.9-2.11: -3) Entering state 27 Stack now 0 6 8 17 26 18 27 Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 9 (line 73): $1 = nterm exp (2.5-2.6: 2) $2 = token '*' (2.7-2.8: 2) $3 = nterm exp (2.9-2.11: -3) -> $$ = nterm exp (2.5-2.11: -6) Entering state 26 Stack now 0 6 8 17 26 Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 7 (line 71): $1 = nterm exp (2.1-2.2: 1) $2 = token '+' (2.3-2.4: 1) $3 = nterm exp (2.5-2.11: -6) -> $$ = nterm exp (2.1-2.11: -5) Entering state 8 Stack now 0 6 8 Next token is token '=' (2.12-2.13: 3) Shifting token '=' (2.12-2.13: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (2.14-2.15: 3) Shifting token '-' (2.14-2.15: 3) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (2.15-2.16: 5) Shifting token number (2.15-2.16: 5) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 65): $1 = token number (2.15-2.16: 5) -> $$ = nterm exp (2.15-2.16: 5) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (3.1-4.0: 5) Reducing stack by rule 11 (line 75): $1 = token '-' (2.14-2.15: 3) $2 = nterm exp (2.15-2.16: 5) -> $$ = nterm exp (2.14-2.16: -5) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (3.1-4.0: 5) Reducing stack by rule 6 (line 66): $1 = nterm exp (2.1-2.11: -5) $2 = token '=' (2.12-2.13: 3) $3 = nterm exp (2.14-2.16: -5) -> $$ = nterm exp (2.1-2.16: -5) Entering state 8 Stack now 0 6 8 Next token is token '\n' (3.1-4.0: 5) Shifting token '\n' (3.1-4.0: 5) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (2.1-2.16: -5) $2 = token '\n' (3.1-4.0: 5) -> $$ = nterm line (2.1-4.0: -5) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-3.0: 7) $2 = nterm line (2.1-4.0: -5) -> $$ = nterm input (1.1-4.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (3.1-5.0: 5) Shifting token '\n' (3.1-5.0: 5) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 60): $1 = token '\n' (3.1-5.0: 5) -> $$ = nterm line (3.1-5.0: 5) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-4.0: 7) $2 = nterm line (3.1-5.0: 5) -> $$ = nterm input (1.1-5.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '-' (4.1-4.2: 5) Shifting token '-' (4.1-4.2: 5) Entering state 2 Stack now 0 6 2 Reading a token Next token is token number (4.2-4.3: 1) Shifting token number (4.2-4.3: 1) Entering state 1 Stack now 0 6 2 1 Reducing stack by rule 5 (line 65): $1 = token number (4.2-4.3: 1) -> $$ = nterm exp (4.2-4.3: 1) Entering state 10 Stack now 0 6 2 10 Reading a token Next token is token '^' (4.4: 1) Shifting token '^' (4.4: 1) Entering state 20 Stack now 0 6 2 10 20 Reading a token Next token is token number (4.4-4.5: 2) Shifting token number (4.4-4.5: 2) Entering state 1 Stack now 0 6 2 10 20 1 Reducing stack by rule 5 (line 65): $1 = token number (4.4-4.5: 2) -> $$ = nterm exp (4.4-4.5: 2) Entering state 29 Stack now 0 6 2 10 20 29 Reading a token Next token is token '=' (4.6-4.7: 2) Reducing stack by rule 12 (line 76): $1 = nterm exp (4.2-4.3: 1) $2 = token '^' (4.4: 1) $3 = nterm exp (4.4-4.5: 2) -> $$ = nterm exp (4.2-4.5: 1) Entering state 10 Stack now 0 6 2 10 Next token is token '=' (4.6-4.7: 2) Reducing stack by rule 11 (line 75): $1 = token '-' (4.1-4.2: 5) $2 = nterm exp (4.2-4.5: 1) -> $$ = nterm exp (4.1-4.5: -1) Entering state 8 Stack now 0 6 8 Next token is token '=' (4.6-4.7: 2) Shifting token '=' (4.6-4.7: 2) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (4.8-4.9: 2) Shifting token '-' (4.8-4.9: 2) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (4.9-4.10: 1) Shifting token number (4.9-4.10: 1) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 65): $1 = token number (4.9-4.10: 1) -> $$ = nterm exp (4.9-4.10: 1) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (5.1-6.0: 1) Reducing stack by rule 11 (line 75): $1 = token '-' (4.8-4.9: 2) $2 = nterm exp (4.9-4.10: 1) -> $$ = nterm exp (4.8-4.10: -1) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (5.1-6.0: 1) Reducing stack by rule 6 (line 66): $1 = nterm exp (4.1-4.5: -1) $2 = token '=' (4.6-4.7: 2) $3 = nterm exp (4.8-4.10: -1) -> $$ = nterm exp (4.1-4.10: -1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (5.1-6.0: 1) Shifting token '\n' (5.1-6.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (4.1-4.10: -1) $2 = token '\n' (5.1-6.0: 1) -> $$ = nterm line (4.1-6.0: -1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-5.0: 7) $2 = nterm line (4.1-6.0: -1) -> $$ = nterm input (1.1-6.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '(' (5.1-5.2: 1) Shifting token '(' (5.1-5.2: 1) Entering state 4 Stack now 0 6 4 Reading a token Next token is token '-' (5.2-5.3: 1) Shifting token '-' (5.2-5.3: 1) Entering state 2 Stack now 0 6 4 2 Reading a token Next token is token number (5.3-5.4: 1) Shifting token number (5.3-5.4: 1) Entering state 1 Stack now 0 6 4 2 1 Reducing stack by rule 5 (line 65): $1 = token number (5.3-5.4: 1) -> $$ = nterm exp (5.3-5.4: 1) Entering state 10 Stack now 0 6 4 2 10 Reading a token Next token is token ')' (5.5: 1) Reducing stack by rule 11 (line 75): $1 = token '-' (5.2-5.3: 1) $2 = nterm exp (5.3-5.4: 1) -> $$ = nterm exp (5.2-5.4: -1) Entering state 12 Stack now 0 6 4 12 Next token is token ')' (5.5: 1) Shifting token ')' (5.5: 1) Entering state 23 Stack now 0 6 4 12 23 Reducing stack by rule 13 (line 77): $1 = token '(' (5.1-5.2: 1) $2 = nterm exp (5.2-5.4: -1) $3 = token ')' (5.5: 1) -> $$ = nterm exp (5.1-5.5: -1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (5.5-5.6: 1) Shifting token '^' (5.5-5.6: 1) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (5.6-5.7: 2) Shifting token number (5.6-5.7: 2) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 65): $1 = token number (5.6-5.7: 2) -> $$ = nterm exp (5.6-5.7: 2) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '=' (5.8-5.9: 2) Reducing stack by rule 12 (line 76): $1 = nterm exp (5.1-5.5: -1) $2 = token '^' (5.5-5.6: 1) $3 = nterm exp (5.6-5.7: 2) -> $$ = nterm exp (5.1-5.7: 1) Entering state 8 Stack now 0 6 8 Next token is token '=' (5.8-5.9: 2) Shifting token '=' (5.8-5.9: 2) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (5.10-5.11: 1) Shifting token number (5.10-5.11: 1) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 65): $1 = token number (5.10-5.11: 1) -> $$ = nterm exp (5.10-5.11: 1) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (6.1-7.0: 1) Reducing stack by rule 6 (line 66): $1 = nterm exp (5.1-5.7: 1) $2 = token '=' (5.8-5.9: 2) $3 = nterm exp (5.10-5.11: 1) -> $$ = nterm exp (5.1-5.11: 1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (6.1-7.0: 1) Shifting token '\n' (6.1-7.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (5.1-5.11: 1) $2 = token '\n' (6.1-7.0: 1) -> $$ = nterm line (5.1-7.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-6.0: 7) $2 = nterm line (5.1-7.0: 1) -> $$ = nterm input (1.1-7.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (6.1-8.0: 1) Shifting token '\n' (6.1-8.0: 1) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 60): $1 = token '\n' (6.1-8.0: 1) -> $$ = nterm line (6.1-8.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-7.0: 7) $2 = nterm line (6.1-8.0: 1) -> $$ = nterm input (1.1-8.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '-' (7.1-7.2: 1) Shifting token '-' (7.1-7.2: 1) Entering state 2 Stack now 0 6 2 Reading a token Next token is token '-' (7.2-7.3: 1) Shifting token '-' (7.2-7.3: 1) Entering state 2 Stack now 0 6 2 2 Reading a token Next token is token '-' (7.3-7.4: 1) Shifting token '-' (7.3-7.4: 1) Entering state 2 Stack now 0 6 2 2 2 Reading a token Next token is token number (7.4-7.5: 1) Shifting token number (7.4-7.5: 1) Entering state 1 Stack now 0 6 2 2 2 1 Reducing stack by rule 5 (line 65): $1 = token number (7.4-7.5: 1) -> $$ = nterm exp (7.4-7.5: 1) Entering state 10 Stack now 0 6 2 2 2 10 Reading a token Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 75): $1 = token '-' (7.3-7.4: 1) $2 = nterm exp (7.4-7.5: 1) -> $$ = nterm exp (7.3-7.5: -1) Entering state 10 Stack now 0 6 2 2 10 Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 75): $1 = token '-' (7.2-7.3: 1) $2 = nterm exp (7.3-7.5: -1) -> $$ = nterm exp (7.2-7.5: 1) Entering state 10 Stack now 0 6 2 10 Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 75): $1 = token '-' (7.1-7.2: 1) $2 = nterm exp (7.2-7.5: 1) -> $$ = nterm exp (7.1-7.5: -1) Entering state 8 Stack now 0 6 8 Next token is token '=' (7.6-7.7: 1) Shifting token '=' (7.6-7.7: 1) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (7.8-7.9: 1) Shifting token '-' (7.8-7.9: 1) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (7.9-7.10: 1) Shifting token number (7.9-7.10: 1) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 65): $1 = token number (7.9-7.10: 1) -> $$ = nterm exp (7.9-7.10: 1) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (8.1-9.0: 1) Reducing stack by rule 11 (line 75): $1 = token '-' (7.8-7.9: 1) $2 = nterm exp (7.9-7.10: 1) -> $$ = nterm exp (7.8-7.10: -1) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (8.1-9.0: 1) Reducing stack by rule 6 (line 66): $1 = nterm exp (7.1-7.5: -1) $2 = token '=' (7.6-7.7: 1) $3 = nterm exp (7.8-7.10: -1) -> $$ = nterm exp (7.1-7.10: -1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (8.1-9.0: 1) Shifting token '\n' (8.1-9.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (7.1-7.10: -1) $2 = token '\n' (8.1-9.0: 1) -> $$ = nterm line (7.1-9.0: -1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-8.0: 7) $2 = nterm line (7.1-9.0: -1) -> $$ = nterm input (1.1-9.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (8.1-10.0: 1) Shifting token '\n' (8.1-10.0: 1) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 60): $1 = token '\n' (8.1-10.0: 1) -> $$ = nterm line (8.1-10.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-9.0: 7) $2 = nterm line (8.1-10.0: 1) -> $$ = nterm input (1.1-10.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (9.1-9.2: 1) Shifting token number (9.1-9.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 65): $1 = token number (9.1-9.2: 1) -> $$ = nterm exp (9.1-9.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '-' (9.3-9.4: 1) Shifting token '-' (9.3-9.4: 1) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token number (9.5-9.6: 2) Shifting token number (9.5-9.6: 2) Entering state 1 Stack now 0 6 8 16 1 Reducing stack by rule 5 (line 65): $1 = token number (9.5-9.6: 2) -> $$ = nterm exp (9.5-9.6: 2) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '-' (9.7-9.8: 2) Reducing stack by rule 8 (line 72): $1 = nterm exp (9.1-9.2: 1) $2 = token '-' (9.3-9.4: 1) $3 = nterm exp (9.5-9.6: 2) -> $$ = nterm exp (9.1-9.6: -1) Entering state 8 Stack now 0 6 8 Next token is token '-' (9.7-9.8: 2) Shifting token '-' (9.7-9.8: 2) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token number (9.9-9.10: 3) Shifting token number (9.9-9.10: 3) Entering state 1 Stack now 0 6 8 16 1 Reducing stack by rule 5 (line 65): $1 = token number (9.9-9.10: 3) -> $$ = nterm exp (9.9-9.10: 3) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '=' (9.11-9.12: 3) Reducing stack by rule 8 (line 72): $1 = nterm exp (9.1-9.6: -1) $2 = token '-' (9.7-9.8: 2) $3 = nterm exp (9.9-9.10: 3) -> $$ = nterm exp (9.1-9.10: -4) Entering state 8 Stack now 0 6 8 Next token is token '=' (9.11-9.12: 3) Shifting token '=' (9.11-9.12: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (9.13-9.14: 3) Shifting token '-' (9.13-9.14: 3) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (9.14-9.15: 4) Shifting token number (9.14-9.15: 4) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 65): $1 = token number (9.14-9.15: 4) -> $$ = nterm exp (9.14-9.15: 4) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (10.1-11.0: 4) Reducing stack by rule 11 (line 75): $1 = token '-' (9.13-9.14: 3) $2 = nterm exp (9.14-9.15: 4) -> $$ = nterm exp (9.13-9.15: -4) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (10.1-11.0: 4) Reducing stack by rule 6 (line 66): $1 = nterm exp (9.1-9.10: -4) $2 = token '=' (9.11-9.12: 3) $3 = nterm exp (9.13-9.15: -4) -> $$ = nterm exp (9.1-9.15: -4) Entering state 8 Stack now 0 6 8 Next token is token '\n' (10.1-11.0: 4) Shifting token '\n' (10.1-11.0: 4) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (9.1-9.15: -4) $2 = token '\n' (10.1-11.0: 4) -> $$ = nterm line (9.1-11.0: -4) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-10.0: 7) $2 = nterm line (9.1-11.0: -4) -> $$ = nterm input (1.1-11.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (10.1-10.2: 1) Shifting token number (10.1-10.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 65): $1 = token number (10.1-10.2: 1) -> $$ = nterm exp (10.1-10.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '-' (10.3-10.4: 1) Shifting token '-' (10.3-10.4: 1) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token '(' (10.5-10.6: 1) Shifting token '(' (10.5-10.6: 1) Entering state 4 Stack now 0 6 8 16 4 Reading a token Next token is token number (10.6-10.7: 2) Shifting token number (10.6-10.7: 2) Entering state 1 Stack now 0 6 8 16 4 1 Reducing stack by rule 5 (line 65): $1 = token number (10.6-10.7: 2) -> $$ = nterm exp (10.6-10.7: 2) Entering state 12 Stack now 0 6 8 16 4 12 Reading a token Next token is token '-' (10.8-10.9: 2) Shifting token '-' (10.8-10.9: 2) Entering state 16 Stack now 0 6 8 16 4 12 16 Reading a token Next token is token number (10.10-10.11: 3) Shifting token number (10.10-10.11: 3) Entering state 1 Stack now 0 6 8 16 4 12 16 1 Reducing stack by rule 5 (line 65): $1 = token number (10.10-10.11: 3) -> $$ = nterm exp (10.10-10.11: 3) Entering state 25 Stack now 0 6 8 16 4 12 16 25 Reading a token Next token is token ')' (10.12: 3) Reducing stack by rule 8 (line 72): $1 = nterm exp (10.6-10.7: 2) $2 = token '-' (10.8-10.9: 2) $3 = nterm exp (10.10-10.11: 3) -> $$ = nterm exp (10.6-10.11: -1) Entering state 12 Stack now 0 6 8 16 4 12 Next token is token ')' (10.12: 3) Shifting token ')' (10.12: 3) Entering state 23 Stack now 0 6 8 16 4 12 23 Reducing stack by rule 13 (line 77): $1 = token '(' (10.5-10.6: 1) $2 = nterm exp (10.6-10.11: -1) $3 = token ')' (10.12: 3) -> $$ = nterm exp (10.5-10.12: -1) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '=' (10.13-10.14: 3) Reducing stack by rule 8 (line 72): $1 = nterm exp (10.1-10.2: 1) $2 = token '-' (10.3-10.4: 1) $3 = nterm exp (10.5-10.12: -1) -> $$ = nterm exp (10.1-10.12: 2) Entering state 8 Stack now 0 6 8 Next token is token '=' (10.13-10.14: 3) Shifting token '=' (10.13-10.14: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (10.15-10.16: 2) Shifting token number (10.15-10.16: 2) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 65): $1 = token number (10.15-10.16: 2) -> $$ = nterm exp (10.15-10.16: 2) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (11.1-12.0: 2) Reducing stack by rule 6 (line 66): $1 = nterm exp (10.1-10.12: 2) $2 = token '=' (10.13-10.14: 3) $3 = nterm exp (10.15-10.16: 2) -> $$ = nterm exp (10.1-10.16: 2) Entering state 8 Stack now 0 6 8 Next token is token '\n' (11.1-12.0: 2) Shifting token '\n' (11.1-12.0: 2) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (10.1-10.16: 2) $2 = token '\n' (11.1-12.0: 2) -> $$ = nterm line (10.1-12.0: 2) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-11.0: 7) $2 = nterm line (10.1-12.0: 2) -> $$ = nterm input (1.1-12.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (11.1-13.0: 2) Shifting token '\n' (11.1-13.0: 2) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 60): $1 = token '\n' (11.1-13.0: 2) -> $$ = nterm line (11.1-13.0: 2) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-12.0: 7) $2 = nterm line (11.1-13.0: 2) -> $$ = nterm input (1.1-13.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (12.1-12.2: 2) Shifting token number (12.1-12.2: 2) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 65): $1 = token number (12.1-12.2: 2) -> $$ = nterm exp (12.1-12.2: 2) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (12.3: 2) Shifting token '^' (12.3: 2) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (12.3-12.4: 2) Shifting token number (12.3-12.4: 2) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 65): $1 = token number (12.3-12.4: 2) -> $$ = nterm exp (12.3-12.4: 2) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '^' (12.5: 2) Shifting token '^' (12.5: 2) Entering state 20 Stack now 0 6 8 20 29 20 Reading a token Next token is token number (12.5-12.6: 3) Shifting token number (12.5-12.6: 3) Entering state 1 Stack now 0 6 8 20 29 20 1 Reducing stack by rule 5 (line 65): $1 = token number (12.5-12.6: 3) -> $$ = nterm exp (12.5-12.6: 3) Entering state 29 Stack now 0 6 8 20 29 20 29 Reading a token Next token is token '=' (12.7-12.8: 3) Reducing stack by rule 12 (line 76): $1 = nterm exp (12.3-12.4: 2) $2 = token '^' (12.5: 2) $3 = nterm exp (12.5-12.6: 3) -> $$ = nterm exp (12.3-12.6: 8) Entering state 29 Stack now 0 6 8 20 29 Next token is token '=' (12.7-12.8: 3) Reducing stack by rule 12 (line 76): $1 = nterm exp (12.1-12.2: 2) $2 = token '^' (12.3: 2) $3 = nterm exp (12.3-12.6: 8) -> $$ = nterm exp (12.1-12.6: 256) Entering state 8 Stack now 0 6 8 Next token is token '=' (12.7-12.8: 3) Shifting token '=' (12.7-12.8: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (12.9-12.12: 256) Shifting token number (12.9-12.12: 256) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 65): $1 = token number (12.9-12.12: 256) -> $$ = nterm exp (12.9-12.12: 256) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (13.1-14.0: 256) Reducing stack by rule 6 (line 66): $1 = nterm exp (12.1-12.6: 256) $2 = token '=' (12.7-12.8: 3) $3 = nterm exp (12.9-12.12: 256) -> $$ = nterm exp (12.1-12.12: 256) Entering state 8 Stack now 0 6 8 Next token is token '\n' (13.1-14.0: 256) Shifting token '\n' (13.1-14.0: 256) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (12.1-12.12: 256) $2 = token '\n' (13.1-14.0: 256) -> $$ = nterm line (12.1-14.0: 256) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-13.0: 7) $2 = nterm line (12.1-14.0: 256) -> $$ = nterm input (1.1-14.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '(' (13.1-13.2: 256) Shifting token '(' (13.1-13.2: 256) Entering state 4 Stack now 0 6 4 Reading a token Next token is token number (13.2-13.3: 2) Shifting token number (13.2-13.3: 2) Entering state 1 Stack now 0 6 4 1 Reducing stack by rule 5 (line 65): $1 = token number (13.2-13.3: 2) -> $$ = nterm exp (13.2-13.3: 2) Entering state 12 Stack now 0 6 4 12 Reading a token Next token is token '^' (13.4: 2) Shifting token '^' (13.4: 2) Entering state 20 Stack now 0 6 4 12 20 Reading a token Next token is token number (13.4-13.5: 2) Shifting token number (13.4-13.5: 2) Entering state 1 Stack now 0 6 4 12 20 1 Reducing stack by rule 5 (line 65): $1 = token number (13.4-13.5: 2) -> $$ = nterm exp (13.4-13.5: 2) Entering state 29 Stack now 0 6 4 12 20 29 Reading a token Next token is token ')' (13.6: 2) Reducing stack by rule 12 (line 76): $1 = nterm exp (13.2-13.3: 2) $2 = token '^' (13.4: 2) $3 = nterm exp (13.4-13.5: 2) -> $$ = nterm exp (13.2-13.5: 4) Entering state 12 Stack now 0 6 4 12 Next token is token ')' (13.6: 2) Shifting token ')' (13.6: 2) Entering state 23 Stack now 0 6 4 12 23 Reducing stack by rule 13 (line 77): $1 = token '(' (13.1-13.2: 256) $2 = nterm exp (13.2-13.5: 4) $3 = token ')' (13.6: 2) -> $$ = nterm exp (13.1-13.6: 4) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (13.6-13.7: 2) Shifting token '^' (13.6-13.7: 2) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (13.7-13.8: 3) Shifting token number (13.7-13.8: 3) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 65): $1 = token number (13.7-13.8: 3) -> $$ = nterm exp (13.7-13.8: 3) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '=' (13.9-13.10: 3) Reducing stack by rule 12 (line 76): $1 = nterm exp (13.1-13.6: 4) $2 = token '^' (13.6-13.7: 2) $3 = nterm exp (13.7-13.8: 3) -> $$ = nterm exp (13.1-13.8: 64) Entering state 8 Stack now 0 6 8 Next token is token '=' (13.9-13.10: 3) Shifting token '=' (13.9-13.10: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (13.11-13.13: 64) Shifting token number (13.11-13.13: 64) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 65): $1 = token number (13.11-13.13: 64) -> $$ = nterm exp (13.11-13.13: 64) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (14.1-15.0: 64) Reducing stack by rule 6 (line 66): $1 = nterm exp (13.1-13.8: 64) $2 = token '=' (13.9-13.10: 3) $3 = nterm exp (13.11-13.13: 64) -> $$ = nterm exp (13.1-13.13: 64) Entering state 8 Stack now 0 6 8 Next token is token '\n' (14.1-15.0: 64) Shifting token '\n' (14.1-15.0: 64) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 61): $1 = nterm exp (13.1-13.13: 64) $2 = token '\n' (14.1-15.0: 64) -> $$ = nterm line (13.1-15.0: 64) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 56): $1 = nterm input (1.1-14.0: 7) $2 = nterm line (13.1-15.0: 64) -> $$ = nterm input (1.1-15.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token end of file (14.1: 64) Shifting token end of file (14.1: 64) Entering state 13 Stack now 0 6 13 ../../../bison-3.7.3/tests/calc.at:1275: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1275: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 65): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token number (1.3-1.4: 2) 1.3-1.4: syntax error on token [number] (expected: ['='] ['-'] ['+'] ['*'] ['/'] ['^'] ['\n']) Stack now 0 ../../../bison-3.7.3/tests/calc.at:1275: cat stderr ../../../bison-3.7.3/tests/calc.at:1275: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 65): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token '/' (1.3-1.4: 1) Shifting token '/' (1.3-1.4: 1) Entering state 19 Stack now 0 8 19 Reading a token Next token is token '/' (1.4-1.5: 1) 1.4-1.5: syntax error on token ['/'] (expected: [number] ['-'] ['('] ['!']) Stack now 0 8 Stack now 0 ../../../bison-3.7.3/tests/calc.at:1275: cat stderr --- expout 2020-10-13 22:28:51.820488722 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/537/stdout 2020-10-13 22:28:51.820488722 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error on token ['/'] (expected: [number] ['-'] ['('] ['!']) +1.4-1.5: syntax error on token ['/'] (expected: [number] ['-'] ['('] ['!']) 537. calc.at:1275: 537. Calculator Java parse.trace parse.error=custom %locations %lex-param {InputStream is} api.push-pull=both (calc.at:1275): FAILED (calc.at:1275) # -*- compilation -*- 538. calc.at:1276: testing Calculator Java parse.trace parse.error=verbose %locations %lex-param {InputStream is} api.push-pull=both ... ../../../bison-3.7.3/tests/calc.at:1276: COLUMNS=1000; export COLUMNS; NO_TERM_HYPERLINKS=1; export NO_TERM_HYPERLINKS; bison --color=no -fno-caret -Wno-deprecated -o Calc.java Calc.y ../../../bison-3.7.3/tests/calc.at:1276: $SHELL ../../../javacomp.sh Calc.java stderr: warning: [options] bootstrap class path not set in conjunction with -source 1.7 1 warning stdout: ../../../bison-3.7.3/tests/calc.at:1276: grep -c '^.*public void push_parse_initialize ().*$' Calc.java ../../../bison-3.7.3/tests/calc.at:1276: "$PERL" -ne ' chomp; print "$ARGV:$.: {$_}\n" if (# No starting/ending empty lines. (eof || $. == 1) && /^\s*$/ # No trailing space. || /\s$/ # No tabs. || /\t/ )' Calc.java ../../../bison-3.7.3/tests/calc.at:1276: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 55): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token '+' (1.3-1.4: 1) Shifting token '+' (1.3-1.4: 1) Entering state 17 Stack now 0 8 17 Reading a token Next token is token number (1.5-1.6: 2) Shifting token number (1.5-1.6: 2) Entering state 1 Stack now 0 8 17 1 Reducing stack by rule 5 (line 55): $1 = token number (1.5-1.6: 2) -> $$ = nterm exp (1.5-1.6: 2) Entering state 26 Stack now 0 8 17 26 Reading a token Next token is token '*' (1.7-1.8: 2) Shifting token '*' (1.7-1.8: 2) Entering state 18 Stack now 0 8 17 26 18 Reading a token Next token is token number (1.9-1.10: 3) Shifting token number (1.9-1.10: 3) Entering state 1 Stack now 0 8 17 26 18 1 Reducing stack by rule 5 (line 55): $1 = token number (1.9-1.10: 3) -> $$ = nterm exp (1.9-1.10: 3) Entering state 27 Stack now 0 8 17 26 18 27 Reading a token Next token is token '=' (1.11-1.12: 3) Reducing stack by rule 9 (line 63): $1 = nterm exp (1.5-1.6: 2) $2 = token '*' (1.7-1.8: 2) $3 = nterm exp (1.9-1.10: 3) -> $$ = nterm exp (1.5-1.10: 6) Entering state 26 Stack now 0 8 17 26 Next token is token '=' (1.11-1.12: 3) Reducing stack by rule 7 (line 61): $1 = nterm exp (1.1-1.2: 1) $2 = token '+' (1.3-1.4: 1) $3 = nterm exp (1.5-1.10: 6) -> $$ = nterm exp (1.1-1.10: 7) Entering state 8 Stack now 0 8 Next token is token '=' (1.11-1.12: 3) Shifting token '=' (1.11-1.12: 3) Entering state 15 Stack now 0 8 15 Reading a token Next token is token number (1.13-1.14: 7) Shifting token number (1.13-1.14: 7) Entering state 1 Stack now 0 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (1.13-1.14: 7) -> $$ = nterm exp (1.13-1.14: 7) Entering state 24 Stack now 0 8 15 24 Reading a token Next token is token '\n' (2.1-3.0: 7) Reducing stack by rule 6 (line 56): $1 = nterm exp (1.1-1.10: 7) $2 = token '=' (1.11-1.12: 3) $3 = nterm exp (1.13-1.14: 7) -> $$ = nterm exp (1.1-1.14: 7) Entering state 8 Stack now 0 8 Next token is token '\n' (2.1-3.0: 7) Shifting token '\n' (2.1-3.0: 7) Entering state 21 Stack now 0 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (1.1-1.14: 7) $2 = token '\n' (2.1-3.0: 7) -> $$ = nterm line (1.1-3.0: 7) Entering state 7 Stack now 0 7 Reducing stack by rule 1 (line 45): $1 = nterm line (1.1-3.0: 7) -> $$ = nterm input (1.1-3.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (2.1-2.2: 1) Shifting token number (2.1-2.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (2.1-2.2: 1) -> $$ = nterm exp (2.1-2.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '+' (2.3-2.4: 1) Shifting token '+' (2.3-2.4: 1) Entering state 17 Stack now 0 6 8 17 Reading a token Next token is token number (2.5-2.6: 2) Shifting token number (2.5-2.6: 2) Entering state 1 Stack now 0 6 8 17 1 Reducing stack by rule 5 (line 55): $1 = token number (2.5-2.6: 2) -> $$ = nterm exp (2.5-2.6: 2) Entering state 26 Stack now 0 6 8 17 26 Reading a token Next token is token '*' (2.7-2.8: 2) Shifting token '*' (2.7-2.8: 2) Entering state 18 Stack now 0 6 8 17 26 18 Reading a token Next token is token '-' (2.9-2.10: 2) Shifting token '-' (2.9-2.10: 2) Entering state 2 Stack now 0 6 8 17 26 18 2 Reading a token Next token is token number (2.10-2.11: 3) Shifting token number (2.10-2.11: 3) Entering state 1 Stack now 0 6 8 17 26 18 2 1 Reducing stack by rule 5 (line 55): $1 = token number (2.10-2.11: 3) -> $$ = nterm exp (2.10-2.11: 3) Entering state 10 Stack now 0 6 8 17 26 18 2 10 Reading a token Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 11 (line 65): $1 = token '-' (2.9-2.10: 2) $2 = nterm exp (2.10-2.11: 3) -> $$ = nterm exp (2.9-2.11: -3) Entering state 27 Stack now 0 6 8 17 26 18 27 Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 9 (line 63): $1 = nterm exp (2.5-2.6: 2) $2 = token '*' (2.7-2.8: 2) $3 = nterm exp (2.9-2.11: -3) -> $$ = nterm exp (2.5-2.11: -6) Entering state 26 Stack now 0 6 8 17 26 Next token is token '=' (2.12-2.13: 3) Reducing stack by rule 7 (line 61): $1 = nterm exp (2.1-2.2: 1) $2 = token '+' (2.3-2.4: 1) $3 = nterm exp (2.5-2.11: -6) -> $$ = nterm exp (2.1-2.11: -5) Entering state 8 Stack now 0 6 8 Next token is token '=' (2.12-2.13: 3) Shifting token '=' (2.12-2.13: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (2.14-2.15: 3) Shifting token '-' (2.14-2.15: 3) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (2.15-2.16: 5) Shifting token number (2.15-2.16: 5) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (2.15-2.16: 5) -> $$ = nterm exp (2.15-2.16: 5) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (3.1-4.0: 5) Reducing stack by rule 11 (line 65): $1 = token '-' (2.14-2.15: 3) $2 = nterm exp (2.15-2.16: 5) -> $$ = nterm exp (2.14-2.16: -5) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (3.1-4.0: 5) Reducing stack by rule 6 (line 56): $1 = nterm exp (2.1-2.11: -5) $2 = token '=' (2.12-2.13: 3) $3 = nterm exp (2.14-2.16: -5) -> $$ = nterm exp (2.1-2.16: -5) Entering state 8 Stack now 0 6 8 Next token is token '\n' (3.1-4.0: 5) Shifting token '\n' (3.1-4.0: 5) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (2.1-2.16: -5) $2 = token '\n' (3.1-4.0: 5) -> $$ = nterm line (2.1-4.0: -5) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-3.0: 7) $2 = nterm line (2.1-4.0: -5) -> $$ = nterm input (1.1-4.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (3.1-5.0: 5) Shifting token '\n' (3.1-5.0: 5) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (3.1-5.0: 5) -> $$ = nterm line (3.1-5.0: 5) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-4.0: 7) $2 = nterm line (3.1-5.0: 5) -> $$ = nterm input (1.1-5.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '-' (4.1-4.2: 5) Shifting token '-' (4.1-4.2: 5) Entering state 2 Stack now 0 6 2 Reading a token Next token is token number (4.2-4.3: 1) Shifting token number (4.2-4.3: 1) Entering state 1 Stack now 0 6 2 1 Reducing stack by rule 5 (line 55): $1 = token number (4.2-4.3: 1) -> $$ = nterm exp (4.2-4.3: 1) Entering state 10 Stack now 0 6 2 10 Reading a token Next token is token '^' (4.4: 1) Shifting token '^' (4.4: 1) Entering state 20 Stack now 0 6 2 10 20 Reading a token Next token is token number (4.4-4.5: 2) Shifting token number (4.4-4.5: 2) Entering state 1 Stack now 0 6 2 10 20 1 Reducing stack by rule 5 (line 55): $1 = token number (4.4-4.5: 2) -> $$ = nterm exp (4.4-4.5: 2) Entering state 29 Stack now 0 6 2 10 20 29 Reading a token Next token is token '=' (4.6-4.7: 2) Reducing stack by rule 12 (line 66): $1 = nterm exp (4.2-4.3: 1) $2 = token '^' (4.4: 1) $3 = nterm exp (4.4-4.5: 2) -> $$ = nterm exp (4.2-4.5: 1) Entering state 10 Stack now 0 6 2 10 Next token is token '=' (4.6-4.7: 2) Reducing stack by rule 11 (line 65): $1 = token '-' (4.1-4.2: 5) $2 = nterm exp (4.2-4.5: 1) -> $$ = nterm exp (4.1-4.5: -1) Entering state 8 Stack now 0 6 8 Next token is token '=' (4.6-4.7: 2) Shifting token '=' (4.6-4.7: 2) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (4.8-4.9: 2) Shifting token '-' (4.8-4.9: 2) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (4.9-4.10: 1) Shifting token number (4.9-4.10: 1) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (4.9-4.10: 1) -> $$ = nterm exp (4.9-4.10: 1) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (5.1-6.0: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (4.8-4.9: 2) $2 = nterm exp (4.9-4.10: 1) -> $$ = nterm exp (4.8-4.10: -1) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (5.1-6.0: 1) Reducing stack by rule 6 (line 56): $1 = nterm exp (4.1-4.5: -1) $2 = token '=' (4.6-4.7: 2) $3 = nterm exp (4.8-4.10: -1) -> $$ = nterm exp (4.1-4.10: -1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (5.1-6.0: 1) Shifting token '\n' (5.1-6.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (4.1-4.10: -1) $2 = token '\n' (5.1-6.0: 1) -> $$ = nterm line (4.1-6.0: -1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-5.0: 7) $2 = nterm line (4.1-6.0: -1) -> $$ = nterm input (1.1-6.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '(' (5.1-5.2: 1) Shifting token '(' (5.1-5.2: 1) Entering state 4 Stack now 0 6 4 Reading a token Next token is token '-' (5.2-5.3: 1) Shifting token '-' (5.2-5.3: 1) Entering state 2 Stack now 0 6 4 2 Reading a token Next token is token number (5.3-5.4: 1) Shifting token number (5.3-5.4: 1) Entering state 1 Stack now 0 6 4 2 1 Reducing stack by rule 5 (line 55): $1 = token number (5.3-5.4: 1) -> $$ = nterm exp (5.3-5.4: 1) Entering state 10 Stack now 0 6 4 2 10 Reading a token Next token is token ')' (5.5: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (5.2-5.3: 1) $2 = nterm exp (5.3-5.4: 1) -> $$ = nterm exp (5.2-5.4: -1) Entering state 12 Stack now 0 6 4 12 Next token is token ')' (5.5: 1) Shifting token ')' (5.5: 1) Entering state 23 Stack now 0 6 4 12 23 Reducing stack by rule 13 (line 67): $1 = token '(' (5.1-5.2: 1) $2 = nterm exp (5.2-5.4: -1) $3 = token ')' (5.5: 1) -> $$ = nterm exp (5.1-5.5: -1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (5.5-5.6: 1) Shifting token '^' (5.5-5.6: 1) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (5.6-5.7: 2) Shifting token number (5.6-5.7: 2) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 55): $1 = token number (5.6-5.7: 2) -> $$ = nterm exp (5.6-5.7: 2) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '=' (5.8-5.9: 2) Reducing stack by rule 12 (line 66): $1 = nterm exp (5.1-5.5: -1) $2 = token '^' (5.5-5.6: 1) $3 = nterm exp (5.6-5.7: 2) -> $$ = nterm exp (5.1-5.7: 1) Entering state 8 Stack now 0 6 8 Next token is token '=' (5.8-5.9: 2) Shifting token '=' (5.8-5.9: 2) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (5.10-5.11: 1) Shifting token number (5.10-5.11: 1) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (5.10-5.11: 1) -> $$ = nterm exp (5.10-5.11: 1) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (6.1-7.0: 1) Reducing stack by rule 6 (line 56): $1 = nterm exp (5.1-5.7: 1) $2 = token '=' (5.8-5.9: 2) $3 = nterm exp (5.10-5.11: 1) -> $$ = nterm exp (5.1-5.11: 1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (6.1-7.0: 1) Shifting token '\n' (6.1-7.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (5.1-5.11: 1) $2 = token '\n' (6.1-7.0: 1) -> $$ = nterm line (5.1-7.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-6.0: 7) $2 = nterm line (5.1-7.0: 1) -> $$ = nterm input (1.1-7.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (6.1-8.0: 1) Shifting token '\n' (6.1-8.0: 1) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (6.1-8.0: 1) -> $$ = nterm line (6.1-8.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-7.0: 7) $2 = nterm line (6.1-8.0: 1) -> $$ = nterm input (1.1-8.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '-' (7.1-7.2: 1) Shifting token '-' (7.1-7.2: 1) Entering state 2 Stack now 0 6 2 Reading a token Next token is token '-' (7.2-7.3: 1) Shifting token '-' (7.2-7.3: 1) Entering state 2 Stack now 0 6 2 2 Reading a token Next token is token '-' (7.3-7.4: 1) Shifting token '-' (7.3-7.4: 1) Entering state 2 Stack now 0 6 2 2 2 Reading a token Next token is token number (7.4-7.5: 1) Shifting token number (7.4-7.5: 1) Entering state 1 Stack now 0 6 2 2 2 1 Reducing stack by rule 5 (line 55): $1 = token number (7.4-7.5: 1) -> $$ = nterm exp (7.4-7.5: 1) Entering state 10 Stack now 0 6 2 2 2 10 Reading a token Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.3-7.4: 1) $2 = nterm exp (7.4-7.5: 1) -> $$ = nterm exp (7.3-7.5: -1) Entering state 10 Stack now 0 6 2 2 10 Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.2-7.3: 1) $2 = nterm exp (7.3-7.5: -1) -> $$ = nterm exp (7.2-7.5: 1) Entering state 10 Stack now 0 6 2 10 Next token is token '=' (7.6-7.7: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.1-7.2: 1) $2 = nterm exp (7.2-7.5: 1) -> $$ = nterm exp (7.1-7.5: -1) Entering state 8 Stack now 0 6 8 Next token is token '=' (7.6-7.7: 1) Shifting token '=' (7.6-7.7: 1) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (7.8-7.9: 1) Shifting token '-' (7.8-7.9: 1) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (7.9-7.10: 1) Shifting token number (7.9-7.10: 1) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (7.9-7.10: 1) -> $$ = nterm exp (7.9-7.10: 1) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (8.1-9.0: 1) Reducing stack by rule 11 (line 65): $1 = token '-' (7.8-7.9: 1) $2 = nterm exp (7.9-7.10: 1) -> $$ = nterm exp (7.8-7.10: -1) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (8.1-9.0: 1) Reducing stack by rule 6 (line 56): $1 = nterm exp (7.1-7.5: -1) $2 = token '=' (7.6-7.7: 1) $3 = nterm exp (7.8-7.10: -1) -> $$ = nterm exp (7.1-7.10: -1) Entering state 8 Stack now 0 6 8 Next token is token '\n' (8.1-9.0: 1) Shifting token '\n' (8.1-9.0: 1) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (7.1-7.10: -1) $2 = token '\n' (8.1-9.0: 1) -> $$ = nterm line (7.1-9.0: -1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-8.0: 7) $2 = nterm line (7.1-9.0: -1) -> $$ = nterm input (1.1-9.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (8.1-10.0: 1) Shifting token '\n' (8.1-10.0: 1) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (8.1-10.0: 1) -> $$ = nterm line (8.1-10.0: 1) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-9.0: 7) $2 = nterm line (8.1-10.0: 1) -> $$ = nterm input (1.1-10.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (9.1-9.2: 1) Shifting token number (9.1-9.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (9.1-9.2: 1) -> $$ = nterm exp (9.1-9.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '-' (9.3-9.4: 1) Shifting token '-' (9.3-9.4: 1) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token number (9.5-9.6: 2) Shifting token number (9.5-9.6: 2) Entering state 1 Stack now 0 6 8 16 1 Reducing stack by rule 5 (line 55): $1 = token number (9.5-9.6: 2) -> $$ = nterm exp (9.5-9.6: 2) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '-' (9.7-9.8: 2) Reducing stack by rule 8 (line 62): $1 = nterm exp (9.1-9.2: 1) $2 = token '-' (9.3-9.4: 1) $3 = nterm exp (9.5-9.6: 2) -> $$ = nterm exp (9.1-9.6: -1) Entering state 8 Stack now 0 6 8 Next token is token '-' (9.7-9.8: 2) Shifting token '-' (9.7-9.8: 2) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token number (9.9-9.10: 3) Shifting token number (9.9-9.10: 3) Entering state 1 Stack now 0 6 8 16 1 Reducing stack by rule 5 (line 55): $1 = token number (9.9-9.10: 3) -> $$ = nterm exp (9.9-9.10: 3) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '=' (9.11-9.12: 3) Reducing stack by rule 8 (line 62): $1 = nterm exp (9.1-9.6: -1) $2 = token '-' (9.7-9.8: 2) $3 = nterm exp (9.9-9.10: 3) -> $$ = nterm exp (9.1-9.10: -4) Entering state 8 Stack now 0 6 8 Next token is token '=' (9.11-9.12: 3) Shifting token '=' (9.11-9.12: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token '-' (9.13-9.14: 3) Shifting token '-' (9.13-9.14: 3) Entering state 2 Stack now 0 6 8 15 2 Reading a token Next token is token number (9.14-9.15: 4) Shifting token number (9.14-9.15: 4) Entering state 1 Stack now 0 6 8 15 2 1 Reducing stack by rule 5 (line 55): $1 = token number (9.14-9.15: 4) -> $$ = nterm exp (9.14-9.15: 4) Entering state 10 Stack now 0 6 8 15 2 10 Reading a token Next token is token '\n' (10.1-11.0: 4) Reducing stack by rule 11 (line 65): $1 = token '-' (9.13-9.14: 3) $2 = nterm exp (9.14-9.15: 4) -> $$ = nterm exp (9.13-9.15: -4) Entering state 24 Stack now 0 6 8 15 24 Next token is token '\n' (10.1-11.0: 4) Reducing stack by rule 6 (line 56): $1 = nterm exp (9.1-9.10: -4) $2 = token '=' (9.11-9.12: 3) $3 = nterm exp (9.13-9.15: -4) -> $$ = nterm exp (9.1-9.15: -4) Entering state 8 Stack now 0 6 8 Next token is token '\n' (10.1-11.0: 4) Shifting token '\n' (10.1-11.0: 4) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (9.1-9.15: -4) $2 = token '\n' (10.1-11.0: 4) -> $$ = nterm line (9.1-11.0: -4) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-10.0: 7) $2 = nterm line (9.1-11.0: -4) -> $$ = nterm input (1.1-11.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (10.1-10.2: 1) Shifting token number (10.1-10.2: 1) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (10.1-10.2: 1) -> $$ = nterm exp (10.1-10.2: 1) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '-' (10.3-10.4: 1) Shifting token '-' (10.3-10.4: 1) Entering state 16 Stack now 0 6 8 16 Reading a token Next token is token '(' (10.5-10.6: 1) Shifting token '(' (10.5-10.6: 1) Entering state 4 Stack now 0 6 8 16 4 Reading a token Next token is token number (10.6-10.7: 2) Shifting token number (10.6-10.7: 2) Entering state 1 Stack now 0 6 8 16 4 1 Reducing stack by rule 5 (line 55): $1 = token number (10.6-10.7: 2) -> $$ = nterm exp (10.6-10.7: 2) Entering state 12 Stack now 0 6 8 16 4 12 Reading a token Next token is token '-' (10.8-10.9: 2) Shifting token '-' (10.8-10.9: 2) Entering state 16 Stack now 0 6 8 16 4 12 16 Reading a token Next token is token number (10.10-10.11: 3) Shifting token number (10.10-10.11: 3) Entering state 1 Stack now 0 6 8 16 4 12 16 1 Reducing stack by rule 5 (line 55): $1 = token number (10.10-10.11: 3) -> $$ = nterm exp (10.10-10.11: 3) Entering state 25 Stack now 0 6 8 16 4 12 16 25 Reading a token Next token is token ')' (10.12: 3) Reducing stack by rule 8 (line 62): $1 = nterm exp (10.6-10.7: 2) $2 = token '-' (10.8-10.9: 2) $3 = nterm exp (10.10-10.11: 3) -> $$ = nterm exp (10.6-10.11: -1) Entering state 12 Stack now 0 6 8 16 4 12 Next token is token ')' (10.12: 3) Shifting token ')' (10.12: 3) Entering state 23 Stack now 0 6 8 16 4 12 23 Reducing stack by rule 13 (line 67): $1 = token '(' (10.5-10.6: 1) $2 = nterm exp (10.6-10.11: -1) $3 = token ')' (10.12: 3) -> $$ = nterm exp (10.5-10.12: -1) Entering state 25 Stack now 0 6 8 16 25 Reading a token Next token is token '=' (10.13-10.14: 3) Reducing stack by rule 8 (line 62): $1 = nterm exp (10.1-10.2: 1) $2 = token '-' (10.3-10.4: 1) $3 = nterm exp (10.5-10.12: -1) -> $$ = nterm exp (10.1-10.12: 2) Entering state 8 Stack now 0 6 8 Next token is token '=' (10.13-10.14: 3) Shifting token '=' (10.13-10.14: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (10.15-10.16: 2) Shifting token number (10.15-10.16: 2) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (10.15-10.16: 2) -> $$ = nterm exp (10.15-10.16: 2) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (11.1-12.0: 2) Reducing stack by rule 6 (line 56): $1 = nterm exp (10.1-10.12: 2) $2 = token '=' (10.13-10.14: 3) $3 = nterm exp (10.15-10.16: 2) -> $$ = nterm exp (10.1-10.16: 2) Entering state 8 Stack now 0 6 8 Next token is token '\n' (11.1-12.0: 2) Shifting token '\n' (11.1-12.0: 2) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (10.1-10.16: 2) $2 = token '\n' (11.1-12.0: 2) -> $$ = nterm line (10.1-12.0: 2) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-11.0: 7) $2 = nterm line (10.1-12.0: 2) -> $$ = nterm input (1.1-12.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '\n' (11.1-13.0: 2) Shifting token '\n' (11.1-13.0: 2) Entering state 3 Stack now 0 6 3 Reducing stack by rule 3 (line 50): $1 = token '\n' (11.1-13.0: 2) -> $$ = nterm line (11.1-13.0: 2) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-12.0: 7) $2 = nterm line (11.1-13.0: 2) -> $$ = nterm input (1.1-13.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token number (12.1-12.2: 2) Shifting token number (12.1-12.2: 2) Entering state 1 Stack now 0 6 1 Reducing stack by rule 5 (line 55): $1 = token number (12.1-12.2: 2) -> $$ = nterm exp (12.1-12.2: 2) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (12.3: 2) Shifting token '^' (12.3: 2) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (12.3-12.4: 2) Shifting token number (12.3-12.4: 2) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 55): $1 = token number (12.3-12.4: 2) -> $$ = nterm exp (12.3-12.4: 2) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '^' (12.5: 2) Shifting token '^' (12.5: 2) Entering state 20 Stack now 0 6 8 20 29 20 Reading a token Next token is token number (12.5-12.6: 3) Shifting token number (12.5-12.6: 3) Entering state 1 Stack now 0 6 8 20 29 20 1 Reducing stack by rule 5 (line 55): $1 = token number (12.5-12.6: 3) -> $$ = nterm exp (12.5-12.6: 3) Entering state 29 Stack now 0 6 8 20 29 20 29 Reading a token Next token is token '=' (12.7-12.8: 3) Reducing stack by rule 12 (line 66): $1 = nterm exp (12.3-12.4: 2) $2 = token '^' (12.5: 2) $3 = nterm exp (12.5-12.6: 3) -> $$ = nterm exp (12.3-12.6: 8) Entering state 29 Stack now 0 6 8 20 29 Next token is token '=' (12.7-12.8: 3) Reducing stack by rule 12 (line 66): $1 = nterm exp (12.1-12.2: 2) $2 = token '^' (12.3: 2) $3 = nterm exp (12.3-12.6: 8) -> $$ = nterm exp (12.1-12.6: 256) Entering state 8 Stack now 0 6 8 Next token is token '=' (12.7-12.8: 3) Shifting token '=' (12.7-12.8: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (12.9-12.12: 256) Shifting token number (12.9-12.12: 256) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (12.9-12.12: 256) -> $$ = nterm exp (12.9-12.12: 256) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (13.1-14.0: 256) Reducing stack by rule 6 (line 56): $1 = nterm exp (12.1-12.6: 256) $2 = token '=' (12.7-12.8: 3) $3 = nterm exp (12.9-12.12: 256) -> $$ = nterm exp (12.1-12.12: 256) Entering state 8 Stack now 0 6 8 Next token is token '\n' (13.1-14.0: 256) Shifting token '\n' (13.1-14.0: 256) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (12.1-12.12: 256) $2 = token '\n' (13.1-14.0: 256) -> $$ = nterm line (12.1-14.0: 256) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-13.0: 7) $2 = nterm line (12.1-14.0: 256) -> $$ = nterm input (1.1-14.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token '(' (13.1-13.2: 256) Shifting token '(' (13.1-13.2: 256) Entering state 4 Stack now 0 6 4 Reading a token Next token is token number (13.2-13.3: 2) Shifting token number (13.2-13.3: 2) Entering state 1 Stack now 0 6 4 1 Reducing stack by rule 5 (line 55): $1 = token number (13.2-13.3: 2) -> $$ = nterm exp (13.2-13.3: 2) Entering state 12 Stack now 0 6 4 12 Reading a token Next token is token '^' (13.4: 2) Shifting token '^' (13.4: 2) Entering state 20 Stack now 0 6 4 12 20 Reading a token Next token is token number (13.4-13.5: 2) Shifting token number (13.4-13.5: 2) Entering state 1 Stack now 0 6 4 12 20 1 Reducing stack by rule 5 (line 55): $1 = token number (13.4-13.5: 2) -> $$ = nterm exp (13.4-13.5: 2) Entering state 29 Stack now 0 6 4 12 20 29 Reading a token Next token is token ')' (13.6: 2) Reducing stack by rule 12 (line 66): $1 = nterm exp (13.2-13.3: 2) $2 = token '^' (13.4: 2) $3 = nterm exp (13.4-13.5: 2) -> $$ = nterm exp (13.2-13.5: 4) Entering state 12 Stack now 0 6 4 12 Next token is token ')' (13.6: 2) Shifting token ')' (13.6: 2) Entering state 23 Stack now 0 6 4 12 23 Reducing stack by rule 13 (line 67): $1 = token '(' (13.1-13.2: 256) $2 = nterm exp (13.2-13.5: 4) $3 = token ')' (13.6: 2) -> $$ = nterm exp (13.1-13.6: 4) Entering state 8 Stack now 0 6 8 Reading a token Next token is token '^' (13.6-13.7: 2) Shifting token '^' (13.6-13.7: 2) Entering state 20 Stack now 0 6 8 20 Reading a token Next token is token number (13.7-13.8: 3) Shifting token number (13.7-13.8: 3) Entering state 1 Stack now 0 6 8 20 1 Reducing stack by rule 5 (line 55): $1 = token number (13.7-13.8: 3) -> $$ = nterm exp (13.7-13.8: 3) Entering state 29 Stack now 0 6 8 20 29 Reading a token Next token is token '=' (13.9-13.10: 3) Reducing stack by rule 12 (line 66): $1 = nterm exp (13.1-13.6: 4) $2 = token '^' (13.6-13.7: 2) $3 = nterm exp (13.7-13.8: 3) -> $$ = nterm exp (13.1-13.8: 64) Entering state 8 Stack now 0 6 8 Next token is token '=' (13.9-13.10: 3) Shifting token '=' (13.9-13.10: 3) Entering state 15 Stack now 0 6 8 15 Reading a token Next token is token number (13.11-13.13: 64) Shifting token number (13.11-13.13: 64) Entering state 1 Stack now 0 6 8 15 1 Reducing stack by rule 5 (line 55): $1 = token number (13.11-13.13: 64) -> $$ = nterm exp (13.11-13.13: 64) Entering state 24 Stack now 0 6 8 15 24 Reading a token Next token is token '\n' (14.1-15.0: 64) Reducing stack by rule 6 (line 56): $1 = nterm exp (13.1-13.8: 64) $2 = token '=' (13.9-13.10: 3) $3 = nterm exp (13.11-13.13: 64) -> $$ = nterm exp (13.1-13.13: 64) Entering state 8 Stack now 0 6 8 Next token is token '\n' (14.1-15.0: 64) Shifting token '\n' (14.1-15.0: 64) Entering state 21 Stack now 0 6 8 21 Reducing stack by rule 4 (line 51): $1 = nterm exp (13.1-13.13: 64) $2 = token '\n' (14.1-15.0: 64) -> $$ = nterm line (13.1-15.0: 64) Entering state 14 Stack now 0 6 14 Reducing stack by rule 2 (line 46): $1 = nterm input (1.1-14.0: 7) $2 = nterm line (13.1-15.0: 64) -> $$ = nterm input (1.1-15.0: 7) Entering state 6 Stack now 0 6 Reading a token Next token is token end of input (14.1: 64) Shifting token end of input (14.1: 64) Entering state 13 Stack now 0 6 13 ../../../bison-3.7.3/tests/calc.at:1276: grep -c -v 'Return for a new token:' stderr ../../../bison-3.7.3/tests/calc.at:1276: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 55): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token number (1.3-1.4: 2) 1.3-1.4: syntax error, unexpected number Stack now 0 ../../../bison-3.7.3/tests/calc.at:1276: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1276: cat stderr ../../../bison-3.7.3/tests/calc.at:1276: $SHELL ../../../javaexec.sh Calc < input stderr: Starting parse Entering state 0 Stack now 0 Reading a token Next token is token number (1.1-1.2: 1) Shifting token number (1.1-1.2: 1) Entering state 1 Stack now 0 1 Reducing stack by rule 5 (line 55): $1 = token number (1.1-1.2: 1) -> $$ = nterm exp (1.1-1.2: 1) Entering state 8 Stack now 0 8 Reading a token Next token is token '/' (1.3-1.4: 1) Shifting token '/' (1.3-1.4: 1) Entering state 19 Stack now 0 8 19 Reading a token Next token is token '/' (1.4-1.5: 1) 1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' Stack now 0 8 Stack now 0 ../../../bison-3.7.3/tests/calc.at:1276: "$PERL" -pi -e 'use strict; s{syntax error on token \[(.*?)\] \(expected: (.*)\)} { my $unexp = $1; my @exps = $2 =~ /\[(.*?)\]/g; ($#exps && $#exps < 4) ? "syntax error, unexpected $unexp, expecting @{[join(\" or \", @exps)]}" : "syntax error, unexpected $unexp"; }eg ' expout || exit 77 ../../../bison-3.7.3/tests/calc.at:1276: cat stderr --- expout 2020-10-13 22:28:52.130484665 +0200 +++ /home/hv/ssd3/sources/builds/bison/tests/testsuite.dir/at-groups/538/stdout 2020-10-13 22:28:52.130484665 +0200 @@ -1 +1 @@ -1.3-1.4: syntax error, unexpected '/', expecting number or '-' or '(' or '!' +1.4-1.5: syntax error, unexpected '/', expecting number or '-' or '(' or '!' 538. calc.at:1276: 538. Calculator Java parse.trace parse.error=verbose %locations %lex-param {InputStream is} api.push-pull=both (calc.at:1276): FAILED (calc.at:1276) ## ------------- ## ## ../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 GNU Bison configure 3.7.3, which was | generated by GNU Autoconf 2.69b.24-e9bfc. Invocation command line was | | $ ../../bison-3.7.3/configure CC=gcc10 'CFLAGS=-march=znver1 -mtune=znver1 -O3' CXX=g++10 'CXXFLAGS=-march=znver1 -mtune=znver1 -O3' | | ## --------- ## | ## Platform. ## | ## --------- ## | | hostname = zendev1 | uname -m = x86_64 | uname -r = 5.9.0ryzen | uname -s = Linux | uname -v = #1 SMP Tue Oct 13 05:02:31 CEST 2020 | | /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/hv/bin/ | PATH: /usr/local/bin/ | PATH: /usr/bin/ | PATH: /bin/ | PATH: /home/hv/STM32Cube/STM32CubeProgrammer2.2/bin/ | PATH: /home/hv/ARM/gcc-arm-none-eabi-8-2019-q3-update/bin/ | PATH: /opt/SEGGER/JLink/ | | | ## ----------- ## | ## Core tests. ## | ## ----------- ## | | configure:4095: checking for a BSD-compatible install | configure:4168: result: /usr/bin/install -c | configure:4179: checking whether build environment is sane | configure:4234: result: yes | configure:4393: checking for a race-free mkdir -p | configure:4437: result: /bin/mkdir -p | configure:4444: checking for gawk | configure:4465: found /usr/local/bin/gawk | configure:4476: result: gawk | configure:4487: checking whether make sets $(MAKE) | configure:4510: result: yes | configure:4540: checking whether make supports nested variables | configure:4558: result: yes | configure:4692: checking whether make supports nested variables | configure:4710: result: yes | configure:4729: checking whether make supports the include directive | configure:4744: make -f confmf.GNU && cat confinc.out | this is the am__doit target | configure:4747: $? = 0 | configure:4766: result: yes (GNU style) | configure:4842: checking for gcc | configure:4874: result: gcc10 | configure:5227: checking for C compiler version | configure:5236: gcc10 --version >&5 | gcc10 (GCC) 10.2.0 | Copyright (C) 2020 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:5247: $? = 0 | configure:5236: gcc10 -v >&5 | Using built-in specs. | COLLECT_GCC=gcc10 | COLLECT_LTO_WRAPPER=/usr/local/gcc10/libexec/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper | Target: x86_64-pc-linux-gnu | Configured with: ./configure CC=gcc10 CXX=g++10 CFLAGS='-march=znver1 -mtune=znver1 -O3' CXXFLAGS='-march=znver1 -mtune=znver1 -O3' --prefix=/usr/local/gcc10 --enable-languages=c,c++,lto --with-cpu=znver1 --with-tune=znver1 --with-fpmath=avx --enable-nls --with-diagnostics-color=always --enable-linker-build-id --with-linker-hash-style=both --disable-multilib --enable-lto --enable-gold=yes --enable-ld=yes --enable-bootstrap | Thread model: posix | Supported LTO compression algorithms: zlib zstd | gcc version 10.2.0 (GCC) | configure:5247: $? = 0 | configure:5236: gcc10 -V >&5 | gcc10: error: unrecognized command-line option '-V' | gcc10: fatal error: no input files | compilation terminated. | configure:5247: $? = 1 | configure:5236: gcc10 -qversion >&5 | gcc10: error: unrecognized command-line option '-qversion'; did you mean '--version'? | gcc10: fatal error: no input files | compilation terminated. | configure:5247: $? = 1 | configure:5236: gcc10 -version >&5 | gcc10: error: unrecognized command-line option '-version' | gcc10: fatal error: no input files | compilation terminated. | configure:5247: $? = 1 | configure:5267: checking whether the C compiler works | configure:5289: gcc10 -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:5293: $? = 0 | configure:5343: result: yes | configure:5346: checking for C compiler default output file name | configure:5348: result: a.out | configure:5354: checking for suffix of executables | configure:5361: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:5365: $? = 0 | configure:5388: result: | configure:5410: checking whether we are cross compiling | configure:5418: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:5422: $? = 0 | configure:5429: ./conftest | configure:5433: $? = 0 | configure:5421: result: no | configure:5426: checking for suffix of object files | configure:5449: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:5453: $? = 0 | configure:5475: result: o | configure:5479: checking whether the compiler supports GNU C | configure:5499: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:5499: $? = 0 | configure:5509: result: yes | configure:5520: checking whether gcc10 accepts -g | configure:5541: gcc10 -c -g conftest.c >&5 | configure:5541: $? = 0 | configure:5585: result: yes | configure:5602: checking for gcc10 option to enable C11 features | configure:5806: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:5806: $? = 0 | configure:5821: result: none needed | configure:6130: checking whether the compiler is clang | configure:6152: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:6152: $? = 0 | configure:6161: result: no | configure:6165: checking for compiler option needed when checking for declarations | configure:6198: result: none | configure:6209: checking dependency style of gcc10 | configure:6321: result: gcc3 | configure:6459: checking for C++ compiler version | configure:6468: g++10 --version >&5 | g++10 (GCC) 10.2.0 | Copyright (C) 2020 Free Software Foundation, Inc. | This is free software; see the source for copying conditions. There is NO | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | | configure:6479: $? = 0 | configure:6468: g++10 -v >&5 | Using built-in specs. | COLLECT_GCC=g++10 | COLLECT_LTO_WRAPPER=/usr/local/gcc10/libexec/gcc/x86_64-pc-linux-gnu/10.2.0/lto-wrapper | Target: x86_64-pc-linux-gnu | Configured with: ./configure CC=gcc10 CXX=g++10 CFLAGS='-march=znver1 -mtune=znver1 -O3' CXXFLAGS='-march=znver1 -mtune=znver1 -O3' --prefix=/usr/local/gcc10 --enable-languages=c,c++,lto --with-cpu=znver1 --with-tune=znver1 --with-fpmath=avx --enable-nls --with-diagnostics-color=always --enable-linker-build-id --with-linker-hash-style=both --disable-multilib --enable-lto --enable-gold=yes --enable-ld=yes --enable-bootstrap | Thread model: posix | Supported LTO compression algorithms: zlib zstd | gcc version 10.2.0 (GCC) | configure:6479: $? = 0 | configure:6468: g++10 -V >&5 | g++10: error: unrecognized command-line option '-V' | g++10: fatal error: no input files | compilation terminated. | configure:6479: $? = 1 | configure:6468: g++10 -qversion >&5 | g++10: error: unrecognized command-line option '-qversion'; did you mean '--version'? | g++10: fatal error: no input files | compilation terminated. | configure:6479: $? = 1 | configure:6483: checking whether the compiler supports GNU C++ | configure:6503: g++10 -c -march=znver1 -mtune=znver1 -O3 conftest.cpp >&5 | configure:6503: $? = 0 | configure:6513: result: yes | configure:6524: checking whether g++10 accepts -g | configure:6545: g++10 -c -g conftest.cpp >&5 | configure:6545: $? = 0 | configure:6589: result: yes | configure:6606: checking for g++10 option to enable C++11 features | configure:6843: g++10 -c -march=znver1 -mtune=znver1 -O3 conftest.cpp >&5 | configure:6843: $? = 0 | configure:6858: result: none needed | configure:7035: checking dependency style of g++10 | configure:7147: result: gcc3 | configure:7169: checking for sys/types.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/stat.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for strings.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for inttypes.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for stdint.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for unistd.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for locale.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/param.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/socket.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for stdio_ext.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for features.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for getopt.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/cdefs.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/time.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for iconv.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for limits.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for wchar.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for crtdefs.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:51:10: fatal error: crtdefs.h: No such file or directory | 51 | #include  | | ^~~~~~~~~~~ | compilation terminated. | configure:7169: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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:7169: result: no | configure:7169: checking for wctype.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for threads.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:52:10: fatal error: threads.h: No such file or directory | 52 | #include  | | ^~~~~~~~~~~ | compilation terminated. | configure:7169: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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:7169: result: no | configure:7169: checking for math.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/mman.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for spawn.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/ioctl.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/resource.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/times.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for sys/wait.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for termios.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7169: checking for xlocale.h | configure:7169: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7169: $? = 0 | configure:7169: result: yes | configure:7193: checking for minix/config.h | configure:7193: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:64:10: fatal error: minix/config.h: No such file or directory | 64 | #include  | | ^~~~~~~~~~~~~~~~ | compilation terminated. | configure:7193: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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:7193: result: no | configure:7217: checking whether it is safe to define __EXTENSIONS__ | configure:7236: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7236: $? = 0 | configure:7244: result: yes | configure:7277: checking whether _XOPEN_SOURCE should be defined | configure:7297: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:7297: $? = 0 | configure:7323: result: no | configure:7339: checking how to run the C preprocessor | configure:7365: gcc10 -E conftest.c | configure:7365: $? = 0 | configure:7380: gcc10 -E conftest.c | conftest.c:58:10: fatal error: ac_nonexistent.h: No such file or directory | 58 | #include  | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:7380: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | /* end confdefs.h. */ | | #include | configure:7407: result: gcc10 -E | configure:7421: gcc10 -E conftest.c | configure:7421: $? = 0 | configure:7436: gcc10 -E conftest.c | conftest.c:58:10: fatal error: ac_nonexistent.h: No such file or directory | 58 | #include  | | ^~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:7436: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | /* end confdefs.h. */ | | #include | configure:7467: checking for grep that handles long lines and -e | configure:7531: result: /bin/grep | configure:7536: checking for egrep | configure:7604: result: /bin/grep -E | configure:7612: checking for Minix Amsterdam compiler | configure:7638: result: no | configure:7700: checking for ar | configure:7721: found /usr/local/bin/ar | configure:7732: result: ar | configure:7812: checking for ranlib | configure:7833: found /usr/local/bin/ranlib | configure:7844: result: ranlib | configure:7875: checking build system type | configure:7890: result: x86_64-pc-linux-gnu | configure:7910: checking host system type | configure:7924: result: x86_64-pc-linux-gnu | configure:7981: checking for special C compiler options needed for large files | configure:8029: result: no | configure:8035: checking for _FILE_OFFSET_BITS value needed for large files | configure:8061: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:8061: $? = 0 | configure:8095: result: no | configure:8583: checking for ld used by gcc10 | configure:8711: result: /usr/local/bin/ld | configure:8718: checking if the linker (/usr/local/bin/ld) is GNU ld | configure:8734: result: yes | configure:8741: checking for shared library run path origin | configure:8755: result: done | configure:8777: checking 32-bit host C ABI | configure:8844: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:8844: $? = 0 | configure:9040: result: no | configure:9049: checking for ELF binary format | configure:9073: result: yes | configure:9122: checking for the common suffixes of directories in the library search path | configure:9191: result: lib,lib,lib64 | configure:9730: checking for libtextstyle | configure:9753: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c /usr/local/lib/libtextstyle.so -lm -lncurses -Wl,-rpath -Wl,/usr/local/lib >&5 | conftest.c: In function 'main': | conftest.c:63:16: warning: implicit declaration of function 'ostream_printf'; did you mean 'ostream_free'? [-Wimplicit-function-declaration] | 63 | ostream_printf(s,"%d",42); | | ^~~~~~~~~~~~~~ | | ostream_free | /usr/local/bin/ld: /tmp/ccV2TkT0.o: in function `main': | conftest.c:(.text.startup+0x28): undefined reference to `ostream_printf' | collect2: error: ld returned 1 exit status | configure:9753: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | styled_ostream_t s = term_styled_ostream_create(1,"",TTYCTL_AUTO,""); | | ostream_printf(s,"%d",42); | | ; | | return 0; | | } | configure:9764: result: no | configure:9790: checking for inline | configure:9807: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9807: $? = 0 | configure:9816: result: inline | configure:9838: checking for tcdrain | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for canonicalize_file_name | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for readlink | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for realpath | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for readlinkat | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for _set_invalid_parameter_handler | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/cctRVbcg.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `_set_invalid_parameter_handler' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | /* end confdefs.h. */ | | /* Define _set_invalid_parameter_handler to an innocuous variant, in case declares _set_invalid_parameter_handler. | | For example, HP-UX 11i declares gettimeofday. */ | | #define _set_invalid_parameter_handler innocuous__set_invalid_parameter_handler | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char _set_invalid_parameter_handler (); below. */ | | | | #include | | #undef _set_invalid_parameter_handler | | | | /* 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 _set_invalid_parameter_handler (); | | /* 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__set_invalid_parameter_handler || defined __stub____set_invalid_parameter_handler | | choke me | | #endif | | | | int | | main (void) | | { | | return _set_invalid_parameter_handler (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for strerror_r | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for fcntl | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for symlink | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for vasnprintf | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/ccHq6ETp.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `vasnprintf' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | /* end confdefs.h. */ | | /* Define vasnprintf to an innocuous variant, in case declares vasnprintf. | | For example, HP-UX 11i declares gettimeofday. */ | | #define vasnprintf innocuous_vasnprintf | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char vasnprintf (); below. */ | | | | #include | | #undef vasnprintf | | | | /* 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 vasnprintf (); | | /* 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_vasnprintf || defined __stub___vasnprintf | | choke me | | #endif | | | | int | | main (void) | | { | | return vasnprintf (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for snprintf | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:82:6: warning: conflicting types for built-in function 'snprintf'; expected 'int(char *, long unsigned int, const char *, ...)' [-Wbuiltin-declaration-mismatch] | 82 | char snprintf (); | | ^~~~~~~~ | conftest.c:74:1: note: 'snprintf' is declared in header '' | 73 | #include | 74 | #undef snprintf | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for fsync | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for microuptime | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/cc7nCzOx.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `microuptime' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define microuptime to an innocuous variant, in case declares microuptime. | | For example, HP-UX 11i declares gettimeofday. */ | | #define microuptime innocuous_microuptime | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char microuptime (); below. */ | | | | #include | | #undef microuptime | | | | /* 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 microuptime (); | | /* 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_microuptime || defined __stub___microuptime | | choke me | | #endif | | | | int | | main (void) | | { | | return microuptime (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for nanouptime | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/ccnkJpvA.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `nanouptime' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define nanouptime to an innocuous variant, in case declares nanouptime. | | For example, HP-UX 11i declares gettimeofday. */ | | #define nanouptime innocuous_nanouptime | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char nanouptime (); below. */ | | | | #include | | #undef nanouptime | | | | /* 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 nanouptime (); | | /* 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_nanouptime || defined __stub___nanouptime | | choke me | | #endif | | | | int | | main (void) | | { | | return nanouptime (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for getprogname | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/ccDrraEz.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `getprogname' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | /* end confdefs.h. */ | | /* Define getprogname to an innocuous variant, in case declares getprogname. | | For example, HP-UX 11i declares gettimeofday. */ | | #define getprogname innocuous_getprogname | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char getprogname (); below. */ | | | | #include | | #undef getprogname | | | | /* 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 getprogname (); | | /* 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_getprogname || defined __stub___getprogname | | choke me | | #endif | | | | int | | main (void) | | { | | return getprogname (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for getexecname | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/ccZi1ClC.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `getexecname' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 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. */ | | | | #include | | #undef getexecname | | | | /* Override any GCC internal prototype to avoid an error. | | Use char because int might match the return type of a GCC | | builtin and then its argument prototype would still apply. */ | | #ifdef __cplusplus | | extern "C" | | #endif | | char getexecname (); | | /* The GNU C library defines this for functions which it implements | | to always fail with ENOSYS. Some functions are actually named | | something starting with __ and the normal name is an alias. */ | | #if defined __stub_getexecname || defined __stub___getexecname | | choke me | | #endif | | | | int | | main (void) | | { | | return getexecname (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for getrusage | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for gettimeofday | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for iswcntrl | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:86:6: warning: conflicting types for built-in function 'iswcntrl'; expected 'int(unsigned int)' [-Wbuiltin-declaration-mismatch] | 86 | char iswcntrl (); | | ^~~~~~~~ | conftest.c:78:1: note: 'iswcntrl' is declared in header '' | 77 | #include | 78 | #undef iswcntrl | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for iswblank | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:87:6: warning: conflicting types for built-in function 'iswblank'; expected 'int(unsigned int)' [-Wbuiltin-declaration-mismatch] | 87 | char iswblank (); | | ^~~~~~~~ | conftest.c:79:1: note: 'iswblank' is declared in header '' | 78 | #include | 79 | #undef iswblank | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for mbsinit | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for mbrtowc | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for isascii | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:90:6: warning: conflicting types for built-in function 'isascii'; expected 'int(int)' [-Wbuiltin-declaration-mismatch] | 90 | char isascii (); | | ^~~~~~~ | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for mprotect | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for obstack_printf | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for lstat | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for __xpg_strerror_r | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for pipe2 | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for setenv | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for link | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for sigaction | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for sigaltstack | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for siginterrupt | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for stpncpy | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:101:6: warning: conflicting types for built-in function 'stpncpy'; expected 'char *(char *, const char *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 101 | char stpncpy (); | | ^~~~~~~ | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for strndup | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:102:6: warning: conflicting types for built-in function 'strndup'; expected 'char *(const char *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 102 | char strndup (); | | ^~~~~~~ | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for pipe | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for wcwidth | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for __fseterr | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/cc4zRswj.o: in function `main': | conftest.c:(.text.startup+0x7): undefined reference to `__fseterr' | collect2: error: ld returned 1 exit status | configure:9838: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | /* end confdefs.h. */ | | /* Define __fseterr to an innocuous variant, in case declares __fseterr. | | For example, HP-UX 11i declares gettimeofday. */ | | #define __fseterr innocuous___fseterr | | | | /* System header to define __stub macros and hopefully few prototypes, | | which can conflict with char __fseterr (); below. */ | | | | #include | | #undef __fseterr | | | | /* 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 __fseterr (); | | /* 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___fseterr || defined __stub_____fseterr | | choke me | | #endif | | | | int | | main (void) | | { | | return __fseterr (); | | ; | | return 0; | | } | configure:9838: result: no | configure:9838: checking for getdelim | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for getdtablesize | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for catgets | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9838: checking for setlocale | configure:9838: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:9838: $? = 0 | configure:9838: result: yes | configure:9876: checking whether pragma GCC diagnostic push works | configure:9899: gcc10 -c -Wunknown-pragmas -Werror conftest.c >&5 | configure:9899: $? = 0 | configure:9908: result: yes | configure:9926: checking whether C++ compiler handles -Werror -Wunknown-warning-option | configure:9946: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -Werror -Wunknown-warning-option conftest.cpp >&5 | g++10: error: unrecognized command-line option '-Wunknown-warning-option' | configure:9946: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | /* end confdefs.h. */ | | | | int | | main (void) | | { | | | | ; | | return 0; | | } | configure:9957: result: no | configure:9975: checking whether C++ compiler handles -fno-exceptions | configure:9995: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -fno-exceptions conftest.cpp >&5 | configure:9995: $? = 0 | configure:10006: result: yes | configure:10024: checking whether C++ compiler accepts -std=c++98 | configure:10049: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -std=c++98 conftest.cpp >&5 | configure:10049: $? = 0 | configure:10060: result: yes | configure:10086: checking whether C++ compiler accepts -std=c++03 | configure:10112: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -std=c++03 conftest.cpp >&5 | configure:10112: $? = 0 | configure:10123: result: yes | configure:10149: checking whether C++ compiler accepts -std=c++11 | configure:10226: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -std=c++11 conftest.cpp >&5 | configure:10226: $? = 0 | configure:10237: result: yes | configure:10263: checking whether C++ compiler accepts -std=c++14 | configure:10350: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -std=c++14 conftest.cpp >&5 | configure:10350: $? = 0 | configure:10361: result: yes | configure:10387: checking whether C++ compiler accepts -std=c++17 | configure:10481: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -std=c++17 conftest.cpp >&5 | configure:10481: $? = 0 | configure:10492: result: yes | configure:10518: checking whether C++ compiler accepts -std=c++2a | configure:10614: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 -std=c++2a conftest.cpp >&5 | configure:10614: $? = 0 | configure:10625: result: yes | configure:11484: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:11484: $? = 0 | configure:11503: checking whether gcc10 supports POSIXLY_CORRECT=1 | configure:11528: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:11528: $? = 0 | configure:11543: result: yes | configure:11560: checking whether g++10 builds executables that work | configure:11596: g++10 -c -march=znver1 -mtune=znver1 -O3 conftest.cpp >&5 | configure:11596: $? = 0 | configure:11599: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.o >&5 | configure:11602: $? = 0 | configure:11610: ./conftest | configure:11613: $? = 0 | configure:11630: result: yes | configure:11654: checking whether g++10 supports POSIXLY_CORRECT=1 | configure:11679: g++10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.cpp >&5 | configure:11679: $? = 0 | configure:11694: result: yes | configure:11716: checking for dmd | configure:11751: result: no | configure:11763: checking for -g | configure:11798: result: no | configure:11888: checking for Java compiler | configure:12144: found /usr/bin/javac | configure:12328: javac -d . conftest.java | configure:12357: javac -target 1.7 -d . conftest.java | javac: target release 1.7 conflicts with default source release 1.8 | configure:12386: javac -target 1.7 -source 1.7 -d . conftest.java | warning: [options] bootstrap class path not set in conjunction with -source 1.7 | 1 warning | configure:12390: result: javac -target 1.7 -source 1.7 | configure:12401: checking for Java virtual machine | configure:12453: found /usr/bin/gij | configure:12492: found /usr/bin/java | configure:12625: result: gij | configure:12673: checking for flex | configure:12694: found /usr/bin/flex | configure:12705: result: flex | configure:12718: checking whether lex is flex | configure:12735: flex conftest.l | conftest.l:5: warning, -s option given but default rule can be matched | configure:12739: $? = 0 | configure:12747: result: yes | configure:12751: checking whether flex supports --header=FILE | configure:12762: flex --header=conftest.h conftest.l | conftest.l:5: warning, -s option given but default rule can be matched | configure:12766: $? = 0 | configure:12774: result: yes | configure:12808: flex conftest.l | configure:12812: $? = 0 | configure:12814: checking lex output file root | configure:12829: result: lex.yy | configure:12834: checking lex library | configure:12849: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/cclu7ozt.o: in function `yylex': | conftest.c:(.text+0xce9): undefined reference to `yywrap' | /usr/local/bin/ld: conftest.c:(.text+0x1231): undefined reference to `yywrap' | /usr/local/bin/ld: /tmp/cclu7ozt.o: in function `main': | conftest.c:(.text.startup+0x9): undefined reference to `yywrap' | collect2: error: ld returned 1 exit status | configure:12849: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | /* 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:12849: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -lfl >&5 | configure:12849: $? = 0 | configure:12860: result: -lfl | configure:12866: checking whether yytext is a pointer | configure:12884: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -lfl >&5 | configure:12884: $? = 0 | configure:12893: result: yes | configure:12838: checking for bison | configure:12859: found /usr/local/bin/bison | configure:12870: result: bison -y | configure:12930: checking for ranlib | configure:12962: result: ranlib | configure:12985: checking for GNU M4 that supports accurate traces | configure:13040: result: /usr/bin/m4 | configure:13043: checking whether /usr/bin/m4 accepts --gnu | configure:13054: result: yes | configure:13071: checking how m4 supports trace files | configure:13082: result: --debugfile | configure:13095: checking for perl | configure:13118: found /usr/bin/perl | configure:13130: result: /usr/bin/perl | configure:13143: checking for xsltproc | configure:13166: found /usr/bin/xsltproc | configure:13178: result: /usr/bin/xsltproc | configure:13193: checking for inline | configure:13219: result: inline | configure:13272: checking for size_t | configure:13272: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:13272: $? = 0 | configure:13272: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:121:21: error: expected expression before ')' token | 121 | if (sizeof ((size_t))) | | ^ | configure:13272: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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 (void) | | { | | if (sizeof ((size_t))) | | return 0; | | ; | | return 0; | | } | configure:13272: result: yes | configure:13284: checking for working alloca.h | configure:13302: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:13302: $? = 0 | configure:13311: result: yes | configure:13319: checking for alloca | configure:13364: result: yes | configure:13530: checking whether malloc, realloc, calloc are POSIX compliant | configure:13551: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:13551: $? = 0 | configure:13560: result: yes | configure:13567: checking whether // is distinct from / | configure:13597: result: no | configure:13608: checking whether realpath works | configure:13791: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:13791: $? = 0 | configure:13791: ./conftest | configure:13791: $? = 0 | configure:13804: result: yes | configure:13822: checking for getcwd | configure:13822: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:13822: $? = 0 | configure:13822: result: yes | configure:13835: checking for C/C++ restrict keyword | configure:13863: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:13863: $? = 0 | configure:13872: result: __restrict | configure:14108: checking if environ is properly declared | configure:14131: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:107:40: error: conflicting types for 'environ' | 107 | extern struct { int foo; } environ; | | ^~~~~~~ | In file included from conftest.c:102: | /usr/include/unistd.h:548:15: note: previous declaration of 'environ' was here | 548 | extern char **environ; | | ^~~~~~~ | configure:14131: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | /* end confdefs.h. */ | | #if HAVE_UNISTD_H | | #include | | #endif | | /* mingw, BeOS, Haiku declare environ in , not in . */ | | #include | | | | extern struct { int foo; } environ; | | int | | main (void) | | { | | environ.foo = 1; | | ; | | return 0; | | } | configure:14139: result: yes | configure:14154: checking whether the preprocessor supports include_next | configure:14193: gcc10 -c -march=znver1 -mtune=znver1 -O3 -Iconftestd1b -Iconftestd2 conftest.c >&5 | configure:14193: $? = 0 | configure:14216: result: yes | configure:14238: checking whether source code line length is unlimited | configure:14263: result: yes | configure:14274: checking for complete errno.h | configure:14349: result: yes | configure:14672: checking how gcc10 reports undeclared, standard C functions | configure:14689: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:106:8: error: 'strchr' undeclared (first use in this function) | 106 | (void) strchr; | | ^~~~~~ | conftest.c:1:1: note: 'strchr' is defined in header ''; did you forget to '#include '? | 1 | /* confdefs.h */ | conftest.c:106:8: note: each undeclared identifier is reported only once for each function it appears in | 106 | (void) strchr; | | ^~~~~~ | configure:14689: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | /* end confdefs.h. */ | | | | int | | main (void) | | { | | (void) strchr; | | ; | | return 0; | | } | configure:14748: result: error | configure:14756: checking whether strerror_r is declared | configure:14756: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:14756: $? = 0 | configure:14756: result: yes | configure:14769: checking whether strerror_r returns char * | configure:14794: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:14794: $? = 0 | configure:14835: result: yes | configure:14850: checking for sig_atomic_t | configure:14850: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:14850: $? = 0 | configure:14850: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:109:27: error: expected expression before ')' token | 109 | if (sizeof ((sig_atomic_t))) | | ^ | configure:14850: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | if (sizeof ((sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:14850: result: yes | configure:14885: checking for working fcntl.h | configure:14999: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:14999: $? = 0 | configure:14999: ./conftest | configure:14999: $? = 0 | configure:15016: result: yes | configure:15036: checking for pid_t | configure:15036: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15036: $? = 0 | configure:15036: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:133:20: error: expected expression before ')' token | 133 | if (sizeof ((pid_t))) | | ^ | configure:15036: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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 (void) | | { | | if (sizeof ((pid_t))) | | return 0; | | ; | | return 0; | | } | configure:15036: result: yes | configure:15072: checking for mode_t | configure:15072: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15072: $? = 0 | configure:15072: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:132:21: error: expected expression before ')' token | 132 | if (sizeof ((mode_t))) | | ^ | configure:15072: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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 (void) | | { | | if (sizeof ((mode_t))) | | return 0; | | ; | | return 0; | | } | configure:15072: result: yes | configure:15187: checking for stdint.h | configure:15205: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15205: $? = 0 | configure:15213: result: yes | configure:15222: checking for inttypes.h | configure:15242: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15242: $? = 0 | configure:15250: result: yes | configure:15262: checking whether printf supports size specifiers as in C99 | configure:15360: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15360: $? = 0 | configure:15360: ./conftest | configure:15360: $? = 0 | configure:15372: result: yes | configure:15377: checking whether printf supports 'long double' arguments | configure:15438: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15438: $? = 0 | configure:15438: ./conftest | configure:15438: $? = 0 | configure:15450: result: yes | configure:15455: checking whether printf supports infinite 'double' arguments | configure:15584: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15584: $? = 0 | configure:15584: ./conftest | configure:15584: $? = 0 | configure:15596: result: yes | configure:15600: checking whether byte ordering is bigendian | configure:15616: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:110:9: error: unknown type name 'not' | 110 | not a universal capable compiler | | ^~~ | conftest.c:110:15: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | 110 | not a universal capable compiler | | ^~~~~~~~~ | conftest.c:110:15: error: unknown type name 'universal' | configure:15616: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:15662: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:15662: $? = 0 | configure:15681: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:116:4: error: unknown type name 'not'; did you mean 'ino_t'? | 116 | not big endian | | ^~~ | | ino_t | conftest.c:116:12: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'endian' | 116 | not big endian | | ^~~~~~ | configure:15681: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main (void) | | { | | #if BYTE_ORDER != BIG_ENDIAN | | not big endian | | #endif | | | | ; | | return 0; | | } | configure:15815: result: no | configure:15835: checking whether long double and double are the same | configure:15857: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:113:13: error: size of array 'check' is negative | 113 | typedef int check[sizeof (long double) == sizeof (double) | | ^~~~~ | configure:15857: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | typedef int check[sizeof (long double) == sizeof (double) | | && LDBL_MANT_DIG == DBL_MANT_DIG | | && LDBL_MAX_EXP == DBL_MAX_EXP | | && LDBL_MIN_EXP == DBL_MIN_EXP | | ? 1 : -1]; | | | | ; | | return 0; | | } | configure:15866: result: no | configure:15890: checking whether printf supports infinite 'long double' arguments | configure:16210: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16210: $? = 0 | configure:16210: ./conftest | configure:16210: $? = 0 | configure:16222: result: yes | configure:16232: checking whether printf supports the 'a' and 'A' directives | configure:16336: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16336: $? = 0 | configure:16336: ./conftest | configure:16336: $? = 0 | configure:16348: result: yes | configure:16353: checking whether printf supports the 'F' directive | configure:16429: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16429: $? = 0 | configure:16429: ./conftest | configure:16429: $? = 0 | configure:16441: result: yes | configure:16446: checking whether printf supports the 'n' directive | configure:16519: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16519: $? = 0 | configure:16519: ./conftest | configure:16519: $? = 0 | configure:16531: result: yes | configure:16536: checking whether printf supports the 'ls' directive | configure:16615: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16615: $? = 0 | configure:16615: ./conftest | configure:16615: $? = 0 | configure:16627: result: yes | configure:16632: checking whether printf supports POSIX/XSI format strings with positions | configure:16669: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16669: $? = 0 | configure:16669: ./conftest | configure:16669: $? = 0 | configure:16681: result: yes | configure:16686: checking whether printf supports the grouping flag | configure:16721: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16721: $? = 0 | configure:16721: ./conftest | configure:16721: $? = 0 | configure:16733: result: yes | configure:16738: checking whether printf supports the left-adjust flag correctly | configure:16777: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16777: $? = 0 | configure:16777: ./conftest | configure:16777: $? = 0 | configure:16789: result: yes | configure:16794: checking whether printf supports the zero flag correctly | configure:16836: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16836: $? = 0 | configure:16836: ./conftest | configure:16836: $? = 0 | configure:16848: result: yes | configure:16853: checking whether printf supports large precisions | configure:16900: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:16900: $? = 0 | configure:16900: ./conftest | configure:16900: $? = 0 | configure:16912: result: yes | configure:16916: checking whether the compiler produces multi-arch binaries | configure:16931: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:111:13: error: unknown type name 'not' | 111 | not a universal capable compiler | | ^~~ | conftest.c:111:19: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'universal' | 111 | not a universal capable compiler | | ^~~~~~~~~ | conftest.c:111:19: error: unknown type name 'universal' | configure:16931: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | /* end confdefs.h. */ | | #ifndef __APPLE_CC__ | | not a universal capable compiler | | #endif | | typedef int dummy; | | | configure:16959: result: no | configure:16971: checking whether printf survives out-of-memory conditions | configure:17144: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17147: $? = 0 | configure:17151: $? = 0 | configure:17155: result: yes | configure:17172: checking for wchar_t | configure:17190: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17190: $? = 0 | configure:17198: result: yes | configure:17207: checking for wint_t | configure:17233: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17233: $? = 0 | configure:17241: result: yes | configure:17248: checking whether wint_t is large enough | configure:17277: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17277: $? = 0 | configure:17285: result: yes | configure:17310: checking for intmax_t | configure:17336: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17336: $? = 0 | configure:17344: result: yes | configure:17357: checking where to find the exponent in a 'double' | configure:17683: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17683: $? = 0 | configure:17683: ./conftest | configure:17683: $? = 0 | configure:17696: result: word 1 bit 20 | configure:17718: checking whether snprintf returns a byte count as in C99 | configure:17812: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17812: $? = 0 | configure:17812: ./conftest | configure:17812: $? = 0 | configure:17824: result: yes | configure:17830: checking whether snprintf truncates the result as in C99 | configure:17914: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17914: $? = 0 | configure:17914: ./conftest | configure:17914: $? = 0 | configure:17926: result: yes | configure:17933: checking for snprintf | configure:17933: result: yes | configure:17939: checking for strnlen | configure:17939: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:132:6: warning: conflicting types for built-in function 'strnlen'; expected 'long unsigned int(const char *, long unsigned int)' [-Wbuiltin-declaration-mismatch] | 132 | char strnlen (); | | ^~~~~~~ | configure:17939: $? = 0 | configure:17939: result: yes | configure:17945: checking for wcslen | configure:17945: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17945: $? = 0 | configure:17945: result: yes | configure:17951: checking for wcsnlen | configure:17951: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17951: $? = 0 | configure:17951: result: yes | configure:17957: checking for mbrtowc | configure:17957: result: yes | configure:17963: checking for wcrtomb | configure:17963: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:17963: $? = 0 | configure:17963: result: yes | configure:17970: checking whether _snprintf is declared | configure:17970: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:130:10: error: '_snprintf' undeclared (first use in this function); did you mean 'vsnprintf'? | 130 | (void) _snprintf; | | ^~~~~~~~~ | | vsnprintf | conftest.c:130:10: note: each undeclared identifier is reported only once for each function it appears in | configure:17970: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | #ifndef _snprintf | | #ifdef __cplusplus | | (void) _snprintf; | | #else | | (void) _snprintf; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:17970: result: no | configure:18272: checking whether frexp() can be used without linking with libm | configure:18291: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18291: $? = 0 | configure:18301: result: yes | configure:18304: checking whether alarm is declared | configure:18304: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18304: $? = 0 | configure:18304: result: yes | configure:18317: checking for arithmetic hrtime_t | configure:18334: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:129:1: error: unknown type name 'hrtime_t'; did you mean 'time_t'? | 129 | hrtime_t x = 0; return x/x; | | ^~~~~~~~ | | time_t | configure:18334: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | hrtime_t x = 0; return x/x; | | ; | | return 0; | | } | configure:18342: result: no | configure:18451: checking for getopt.h | configure:18451: result: yes | configure:18467: checking for getopt_long_only | configure:18467: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18467: $? = 0 | configure:18467: result: yes | configure:18480: checking whether getopt is POSIX compatible | configure:18524: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18524: $? = 0 | configure:18524: ./conftest | configure:18524: $? = 0 | configure:18585: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18585: $? = 0 | configure:18585: ./conftest | configure:18585: $? = 0 | configure:18629: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18629: $? = 0 | configure:18629: ./conftest | program: option requires an argument -- 'b' | configure:18629: $? = 0 | configure:18648: result: yes | configure:18656: checking for working GNU getopt function | configure:18880: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18880: $? = 0 | configure:18880: ./conftest | configure:18880: $? = 0 | configure:18897: result: yes | configure:18902: checking for working GNU getopt_long function | configure:18949: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:18949: $? = 0 | configure:18949: ./conftest | configure:18949: $? = 0 | configure:18961: result: yes | configure:19099: checking for struct timeval | configure:19123: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:19123: $? = 0 | configure:19132: result: yes | configure:19137: checking for wide-enough struct timeval.tv_sec member | configure:19165: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:19165: $? = 0 | configure:19174: result: yes | configure:19735: checking for iconv | configure:19760: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:19760: $? = 0 | configure:19796: result: yes | configure:19799: checking for working iconv | configure:19942: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:19942: $? = 0 | configure:19942: ./conftest | configure:19942: $? = 0 | configure:19955: result: yes | configure:19983: checking whether iconv is compatible with its POSIX signature | configure:20008: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:20008: $? = 0 | configure:20017: result: yes | configure:20119: checking whether limits.h has LLONG_MAX, WORD_BIT, ULLONG_WIDTH etc. | configure:20143: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:20143: $? = 0 | configure:20151: result: yes | configure:20290: checking whether stdint.h conforms to C99 | configure:20471: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:20471: $? = 0 | configure:20560: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:20560: $? = 0 | configure:20560: ./conftest | configure:20560: $? = 0 | configure:20573: result: yes | configure:20584: checking whether stdint.h works without ISO C predefines | configure:20621: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:20621: $? = 0 | configure:20628: result: yes | configure:20639: checking whether stdint.h has UINTMAX_WIDTH etc. | configure:20676: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:149:24: error: 'UINTMAX_WIDTH' undeclared here (not in a function); did you mean 'UINTMAX_MAX'? | 149 | int iw = UINTMAX_WIDTH; | | ^~~~~~~~~~~~~ | | UINTMAX_MAX | configure:20676: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | /* end confdefs.h. */ | | | | /* Work if build is not clean. */ | | #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 | | #ifndef __STDC_WANT_IEC_60559_BFP_EXT__ | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #endif | | #include | | | | /* BSD/OS 4.0.1 has a bug: , and must be | | included before . */ | | #include | | #include | | #if HAVE_WCHAR_H | | # include | | # include | | # include | | #endif | | | | int iw = UINTMAX_WIDTH; | | | | int | | main (void) | | { | | | | ; | | return 0; | | } | configure:20682: result: no | configure:21148: checking where to find the exponent in a 'float' | configure:21227: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:21227: $? = 0 | configure:21227: ./conftest | configure:21227: $? = 0 | configure:21240: result: word 0 bit 23 | configure:21259: checking whether isnan(float) can be used without linking with libm | configure:21285: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:21285: $? = 0 | configure:21295: result: yes | configure:21353: checking whether isnan(float) works | configure:21442: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:21442: $? = 0 | configure:21442: ./conftest | configure:21442: $? = 0 | configure:21454: result: yes | configure:21474: checking whether isnan(double) can be used without linking with libm | configure:21500: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:21500: $? = 0 | configure:21510: result: yes | configure:21574: checking whether isnan(long double) can be used without linking with libm | configure:21600: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:21600: $? = 0 | configure:21610: result: yes | configure:21669: checking whether isnanl works | configure:21815: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:21815: $? = 0 | configure:21815: ./conftest | configure:21815: $? = 0 | configure:21827: result: yes | configure:21973: checking whether iswcntrl works | configure:22020: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22020: $? = 0 | configure:22020: ./conftest | configure:22020: $? = 0 | configure:22032: result: yes | configure:22058: checking for towlower | configure:22058: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:149:6: warning: conflicting types for built-in function 'towlower'; expected 'unsigned int(unsigned int)' [-Wbuiltin-declaration-mismatch] | 149 | char towlower (); | | ^~~~~~~~ | conftest.c:141:1: note: 'towlower' is declared in header '' | 140 | #include | 141 | #undef towlower | configure:22058: $? = 0 | configure:22058: result: yes | configure:22103: checking for wctype_t | configure:22132: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22132: $? = 0 | configure:22141: result: yes | configure:22147: checking for wctrans_t | configure:22174: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22174: $? = 0 | configure:22183: result: yes | configure:22195: checking for nl_langinfo and CODESET | configure:22212: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22212: $? = 0 | configure:22222: result: yes | configure:22233: checking for a traditional french locale | configure:22309: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22312: $? = 0 | configure:22368: result: none | configure:22376: checking for a traditional japanese locale | configure:22456: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22459: $? = 0 | configure:22517: result: none | configure:22524: checking for a french Unicode locale | configure:22597: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22600: $? = 0 | configure:22646: result: fr_FR.UTF-8 | configure:22654: checking for a transitional chinese locale | configure:22735: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22738: $? = 0 | configure:22789: result: none | configure:22877: checking whether ldexp() can be used without linking with libm | configure:22900: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22900: $? = 0 | configure:22910: result: yes | configure:22972: checking whether imported symbols can be declared weak | configure:22991: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:22991: $? = 0 | configure:23028: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:23028: $? = 0 | configure:23028: ./conftest | configure:23028: $? = 0 | configure:23065: result: yes | configure:23094: checking for pthread.h | configure:23094: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:23094: $? = 0 | configure:23094: result: yes | configure:23131: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | /usr/local/bin/ld: /tmp/cc3ArpVA.o: in function `main': | conftest.c:(.text.startup+0x14): undefined reference to `pthread_mutexattr_init' | collect2: error: ld returned 1 exit status | configure:23131: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | /* end confdefs.h. */ | | #include | | pthread_mutex_t m; | | pthread_mutexattr_t ma; | | | | int | | main (void) | | { | | pthread_mutex_lock (&m); | | pthread_mutexattr_init (&ma); | | ; | | return 0; | | } | configure:23131: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -pthread >&5 | configure:23131: $? = 0 | configure:23301: checking whether POSIX threads API is available | configure:23303: result: yes | configure:23324: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:23324: $? = 0 | configure:23902: checking for multithread API to use | configure:23904: result: posix | configure:23915: checking for a sed that does not truncate output | configure:23985: result: /bin/sed | configure:23993: checking for mbstate_t | configure:24018: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24018: $? = 0 | configure:24026: result: yes | configure:24575: checking for mmap | configure:24575: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24575: $? = 0 | configure:24575: result: yes | configure:24587: checking for MAP_ANONYMOUS | configure:24626: result: yes | configure:24648: checking whether memchr works | configure:24730: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24730: $? = 0 | configure:24730: ./conftest | configure:24730: $? = 0 | configure:24742: result: yes | configure:24753: checking whether defines MIN and MAX | configure:24771: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:142:21: warning: implicit declaration of function 'MIN' [-Wimplicit-function-declaration] | 142 | int x = MIN (42, 17); | | ^~~ | conftest.c:142:21: error: initializer element is not constant | configure:24771: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | /* end confdefs.h. */ | | #include | | int x = MIN (42, 17); | | int | | main (void) | | { | | | | ; | | return 0; | | } | configure:24779: result: no | configure:24792: checking whether defines MIN and MAX | configure:24810: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24810: $? = 0 | configure:24818: result: yes | configure:24833: checking whether obstack_printf is declared | configure:24833: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24833: $? = 0 | configure:24833: result: yes | configure:24844: checking for O_CLOEXEC | configure:24865: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24865: $? = 0 | configure:24873: result: yes | configure:24879: checking for promoted mode_t type | configure:24897: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:147:13: error: size of array 'array' is negative | 147 | typedef int array[2 * (sizeof (mode_t) < sizeof (int)) - 1]; | | ^~~~~ | configure:24897: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | typedef int array[2 * (sizeof (mode_t) < sizeof (int)) - 1]; | | ; | | return 0; | | } | configure:24906: result: mode_t | configure:24914: checking whether strerror(0) succeeds | configure:24955: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:24955: $? = 0 | configure:24955: ./conftest | configure:24955: $? = 0 | configure:24967: result: yes | configure:24987: checking for strerror_r with POSIX signature | configure:25006: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:145:21: error: conflicting types for 'strerror_r' | 145 | int strerror_r (int, char *, size_t); | | ^~~~~~~~~~ | In file included from conftest.c:144: | /usr/include/string.h:433:14: note: previous declaration of 'strerror_r' was here | 433 | extern char *strerror_r (int __errnum, char *__buf, size_t __buflen) | | ^~~~~~~~~~ | configure:25006: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | /* end confdefs.h. */ | | #include | | int strerror_r (int, char *, size_t); | | | | int | | main (void) | | { | | | | ; | | return 0; | | } | configure:25015: result: no | configure:25092: checking whether __xpg_strerror_r works | configure:25134: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:25134: $? = 0 | configure:25134: ./conftest | configure:25134: $? = 0 | configure:25146: result: yes | configure:25229: checking for library containing posix_spawn | configure:25262: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:25262: $? = 0 | configure:25282: result: none required | configure:25292: checking for posix_spawn | configure:25292: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:25292: $? = 0 | configure:25292: result: yes | configure:25314: checking whether posix_spawn works | configure:25459: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:25459: $? = 0 | configure:25640: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:25640: $? = 0 | configure:25640: ./conftest | configure:25640: $? = 0 | configure:25659: result: yes | configure:25664: checking whether posix_spawnattr_setschedpolicy is supported | configure:25690: result: yes | configure:25692: checking whether posix_spawnattr_setschedparam is supported | configure:25718: result: yes | configure:26085: checking whether C symbols are prefixed with underscore at the linker level | configure:26099: gcc10 -march=znver1 -mtune=znver1 -O3 -S conftest.c | configure:26102: $? = 0 | configure:26101: result: no | configure:26135: checking for sigset_t | configure:26135: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26135: $? = 0 | configure:26135: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:155:23: error: expected expression before ')' token | 155 | if (sizeof ((sigset_t))) | | ^ | configure:26135: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | /* end confdefs.h. */ | | | | #include | | /* Mingw defines sigset_t not in , but in . */ | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((sigset_t))) | | return 0; | | ; | | return 0; | | } | configure:26135: result: yes | configure:26156: checking for shared library path variable | configure:26170: result: LD_LIBRARY_PATH | configure:26175: checking whether to activate relocatable installation | configure:26191: result: no | configure:26338: checking for GNU libc compatible malloc | configure:26372: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26372: $? = 0 | configure:26372: ./conftest | configure:26372: $? = 0 | configure:26384: result: yes | configure:26399: checking whether setenv is declared | configure:26399: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26399: $? = 0 | configure:26399: result: yes | configure:26417: checking for uid_t in sys/types.h | configure:26438: result: yes | configure:26451: checking whether snprintf is declared | configure:26451: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26451: $? = 0 | configure:26451: result: yes | configure:26462: checking for stdbool.h that conforms to C99 | configure:26538: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26538: $? = 0 | configure:26546: result: yes | configure:26548: checking for _Bool | configure:26548: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26548: $? = 0 | configure:26548: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:176:20: error: expected expression before ')' token | 176 | if (sizeof ((_Bool))) | | ^ | configure:26548: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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 (void) | | { | | if (sizeof ((_Bool))) | | return 0; | | ; | | return 0; | | } | configure:26548: result: yes | configure:26563: checking whether stpncpy is declared | configure:26563: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26563: $? = 0 | configure:26563: result: yes | configure:26574: checking whether strdup is declared | configure:26574: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26574: $? = 0 | configure:26574: result: yes | configure:26665: checking whether strndup is declared | configure:26665: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26665: $? = 0 | configure:26665: result: yes | configure:26822: checking for struct timespec in | configure:26840: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:26840: $? = 0 | configure:26848: result: yes | configure:27076: checking whether clearerr_unlocked is declared | configure:27076: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27076: $? = 0 | configure:27076: result: yes | configure:27086: checking whether feof_unlocked is declared | configure:27086: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27086: $? = 0 | configure:27086: result: yes | configure:27096: checking whether ferror_unlocked is declared | configure:27096: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27096: $? = 0 | configure:27096: result: yes | configure:27106: checking whether fflush_unlocked is declared | configure:27106: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27106: $? = 0 | configure:27106: result: yes | configure:27116: checking whether fgets_unlocked is declared | configure:27116: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27116: $? = 0 | configure:27116: result: yes | configure:27126: checking whether fputc_unlocked is declared | configure:27126: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27126: $? = 0 | configure:27126: result: yes | configure:27136: checking whether fputs_unlocked is declared | configure:27136: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27136: $? = 0 | configure:27136: result: yes | configure:27146: checking whether fread_unlocked is declared | configure:27146: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27146: $? = 0 | configure:27146: result: yes | configure:27156: checking whether fwrite_unlocked is declared | configure:27156: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27156: $? = 0 | configure:27156: result: yes | configure:27166: checking whether getc_unlocked is declared | configure:27166: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27166: $? = 0 | configure:27166: result: yes | configure:27176: checking whether getchar_unlocked is declared | configure:27176: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27176: $? = 0 | configure:27176: result: yes | configure:27186: checking whether putc_unlocked is declared | configure:27186: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27186: $? = 0 | configure:27186: result: yes | configure:27196: checking whether putchar_unlocked is declared | configure:27196: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27196: $? = 0 | configure:27196: result: yes | configure:27206: checking whether unsetenv is declared | configure:27206: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27206: $? = 0 | configure:27206: result: yes | configure:27216: checking whether vsnprintf is declared | configure:27216: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27216: $? = 0 | configure:27216: result: yes | configure:27227: checking whether uses 'inline' correctly | configure:27253: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest1.c >&5 | configure:27256: $? = 0 | configure:27275: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest2.c >&5 | configure:27278: $? = 0 | configure:27291: result: yes | configure:27306: checking POSIX termios | configure:27327: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27327: $? = 0 | configure:27336: result: yes | configure:27340: checking whether use of TIOCGWINSZ requires termios.h | configure:27368: result: no | configure:27411: checking whether stat file-mode macros are broken | configure:27439: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27439: $? = 0 | configure:27447: result: no | configure:27552: checking for nlink_t | configure:27552: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27552: $? = 0 | configure:27552: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:177:22: error: expected expression before ')' token | 177 | if (sizeof ((nlink_t))) | | ^ | configure:27552: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | /* end confdefs.h. */ | | #include | | #include | | | | int | | main (void) | | { | | if (sizeof ((nlink_t))) | | return 0; | | ; | | return 0; | | } | configure:27552: result: yes | configure:27585: checking whether getdelim is declared | configure:27585: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27585: $? = 0 | configure:27585: result: yes | configure:27597: checking whether getdtablesize is declared | configure:27597: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27597: $? = 0 | configure:27597: result: yes | configure:27607: checking whether getline is declared | configure:27607: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27607: $? = 0 | configure:27607: result: yes | configure:27622: checking whether setlocale (LC_ALL, NULL) is multithread-safe | configure:27641: result: yes | configure:27659: checking whether setlocale (category, NULL) is multithread-safe | configure:27678: result: yes | configure:27836: checking whether locale.h defines locale_t | configure:27854: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27854: $? = 0 | configure:27863: result: yes | configure:27887: checking whether lstat correctly handles trailing slash | configure:27931: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27931: $? = 0 | configure:27931: ./conftest | configure:27931: $? = 0 | configure:27944: result: yes | configure:27955: checking whether strnlen is declared | configure:27955: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:27955: $? = 0 | configure:27955: result: yes | configure:27997: checking for alloca as a compiler built-in | configure:28023: result: yes | configure:28054: checking whether to enable assertions | configure:28074: result: yes | configure:28079: checking for __builtin_expect | configure:28095: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28095: $? = 0 | configure:28122: result: yes | configure:28256: checking for library containing clock_gettime | configure:28289: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28289: $? = 0 | configure:28309: result: none required | configure:28319: checking for clock_gettime | configure:28319: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28319: $? = 0 | configure:28319: result: yes | configure:28325: checking for clock_settime | configure:28325: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28325: $? = 0 | configure:28325: result: yes | configure:28429: checking whether // is distinct from / | configure:28459: result: no | configure:28470: checking whether dup2 works | configure:28563: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28563: $? = 0 | configure:28563: ./conftest | configure:28563: $? = 0 | configure:28575: result: yes | configure:28638: checking for error_at_line | configure:28655: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28655: $? = 0 | configure:28664: result: yes | configure:28713: checking whether fcntl handles F_DUPFD correctly | configure:28777: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28777: $? = 0 | configure:28777: ./conftest | configure:28777: $? = 0 | configure:28788: result: yes | configure:28806: checking whether fcntl understands F_DUPFD_CLOEXEC | configure:28828: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:28828: $? = 0 | configure:28847: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:197:1: error: unknown type name 'choke' | 197 | choke me | | ^~~~~ | conftest.c:197:9: error: expected ';' before 'int' | 197 | choke me | | ^ | | ; | ...... | 200 | int | | ~~~ | configure:28847: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | /* end confdefs.h. */ | | | | #ifdef __linux__ | | /* The Linux kernel only added F_DUPFD_CLOEXEC in 2.6.24, so we always replace | | it to support the semantics on older kernels that failed with EINVAL. */ | | choke me | | #endif | | | | int | | main (void) | | { | | | | ; | | return 0; | | } | configure:28859: result: needs runtime check | configure:29044: checking whether conversion from 'int' to 'long double' works | configure:29091: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:29091: $? = 0 | configure:29091: ./conftest | configure:29091: $? = 0 | configure:29103: result: yes | configure:29230: checking whether fopen recognizes a trailing slash | configure:29262: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:29262: $? = 0 | configure:29262: ./conftest | configure:29262: $? = 0 | configure:29275: result: yes | configure:29318: checking whether fopen supports the mode character 'x' | configure:29358: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:29358: $? = 0 | configure:29358: ./conftest | configure:29358: $? = 0 | configure:29371: result: yes | configure:29373: checking whether fopen supports the mode character 'e' | configure:29421: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:29421: $? = 0 | configure:29421: ./conftest | configure:29421: $? = 0 | configure:29434: result: yes | configure:29474: checking for __fpending | configure:29492: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:29492: $? = 0 | configure:29502: result: yes | configure:29505: checking whether __fpending is declared | configure:29505: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:29505: $? = 0 | configure:29505: result: yes | configure:29866: checking whether frexp works | configure:29967: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:259:21: warning: passing argument 2 of 'memcmp' discards 'volatile' qualifier from pointer target type [-Wdiscarded-qualifiers] | 259 | if (memcmp (&y, &x, sizeof x)) | | ^~ | In file included from conftest.c:203: | /usr/include/string.h:65:50: note: expected 'const void *' but argument is of type 'volatile double *' | 65 | extern int memcmp (const void *__s1, const void *__s2, size_t __n) | | ~~~~~~~~~~~~^~~~ | configure:29967: $? = 0 | configure:29967: ./conftest | configure:29967: $? = 0 | configure:29979: result: yes | configure:30026: checking whether frexpl is declared | configure:30026: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30026: $? = 0 | configure:30026: result: yes | configure:30037: checking whether frexpl() can be used without linking with libm | configure:30056: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30056: $? = 0 | configure:30066: result: yes | configure:30072: checking whether frexpl works | configure:30187: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30187: $? = 0 | configure:30187: ./conftest | configure:30187: $? = 0 | configure:30199: result: yes | configure:30283: checking whether gethrtime is declared | configure:30283: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:214:10: error: 'gethrtime' undeclared (first use in this function) | 214 | (void) gethrtime; | | ^~~~~~~~~ | conftest.c:214:10: note: each undeclared identifier is reported only once for each function it appears in | configure:30283: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | #ifndef gethrtime | | #ifdef __cplusplus | | (void) gethrtime; | | #else | | (void) gethrtime; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:30283: result: no | configure:30303: checking whether CLOCK_MONOTONIC or CLOCK_REALTIME is defined | configure:30328: result: yes | configure:30414: checking whether program_invocation_name is declared | configure:30414: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30414: $? = 0 | configure:30414: result: yes | configure:30429: checking whether program_invocation_short_name is declared | configure:30429: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30429: $? = 0 | configure:30429: result: yes | configure:30444: checking whether __argv is declared | configure:30444: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:218:10: error: '__argv' undeclared (first use in this function) | 218 | (void) __argv; | | ^~~~~~ | conftest.c:218:10: note: each undeclared identifier is reported only once for each function it appears in | configure:30444: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | #ifndef __argv | | #ifdef __cplusplus | | (void) __argv; | | #else | | (void) __argv; | | #endif | | #endif | | | | ; | | return 0; | | } | configure:30444: result: no | configure:30555: checking for gettimeofday with POSIX signature | configure:30584: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:213:19: error: conflicting types for 'gettimeofday' | 213 | int gettimeofday (struct timeval *restrict, void *restrict); | | ^~~~~~~~~~~~ | In file included from conftest.c:211: | /usr/include/x86_64-linux-gnu/sys/time.h:71:12: note: previous declaration of 'gettimeofday' was here | 71 | extern int gettimeofday (struct timeval *__restrict __tv, | | ^~~~~~~~~~~~ | configure:30584: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | /* end confdefs.h. */ | | #include | | struct timeval c; | | int gettimeofday (struct timeval *restrict, void *restrict); | | | | int | | main (void) | | { | | /* glibc uses struct timezone * rather than the POSIX void * | | if _GNU_SOURCE is defined. However, since the only portable | | use of gettimeofday uses NULL as the second parameter, and | | since the glibc definition is actually more typesafe, it is | | not worth wrapping this to get a compliant signature. */ | | int (*f) (struct timeval *restrict, void *restrict) | | = gettimeofday; | | int x = f (&c, 0); | | return !(x | c.tv_sec | c.tv_usec); | | | | ; | | return 0; | | } | configure:30601: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30601: $? = 0 | configure:30611: result: almost | configure:30871: checking whether the compiler generally respects inline | configure:30893: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30893: $? = 0 | configure:30903: result: yes | configure:30932: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:30932: $? = 0 | configure:30971: checking whether INT32_MAX < INTMAX_MAX | configure:31004: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:31004: $? = 0 | configure:31012: result: yes | configure:31023: checking whether INT64_MAX == LONG_MAX | configure:31056: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:31056: $? = 0 | configure:31064: result: yes | configure:31077: checking whether UINT32_MAX < UINTMAX_MAX | configure:31110: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:31110: $? = 0 | configure:31118: result: yes | configure:31129: checking whether UINT64_MAX == ULONG_MAX | configure:31162: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:31162: $? = 0 | configure:31170: result: yes | configure:31193: checking whether isnan macro works | configure:31198: result: yes | configure:31240: checking whether isnan(double) can be used without linking with libm | configure:31276: result: yes | configure:31371: checking whether isnan(double) can be used without linking with libm | configure:31407: result: yes | configure:31436: checking whether isnan(float) can be used without linking with libm | configure:31472: result: yes | configure:31530: checking whether isnan(float) works | configure:31631: result: yes | configure:31791: checking whether isnan(long double) can be used without linking with libm | configure:31827: result: yes | configure:31886: checking whether isnanl works | configure:32044: result: yes | configure:32240: checking whether isnan(long double) can be used without linking with libm | configure:32276: result: yes | configure:32285: checking whether isnanl works | configure:32443: result: yes | configure:32622: checking whether iswblank is declared | configure:32622: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:32622: $? = 0 | configure:32622: result: yes | configure:32700: checking whether iswdigit is ISO C compliant | configure:32798: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:32798: $? = 0 | configure:32798: ./conftest | configure:32798: $? = 0 | configure:32811: result: yes | configure:32860: checking whether iswxdigit is ISO C compliant | configure:32950: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:32950: $? = 0 | configure:32950: ./conftest | configure:32950: $? = 0 | configure:32963: result: yes | configure:33015: checking whether ldexpl is declared | configure:33015: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33015: $? = 0 | configure:33015: result: yes | configure:33028: checking whether ldexpl() can be used without linking with libm | configure:33047: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33047: $? = 0 | configure:33057: result: yes | configure:33105: checking whether ldexpl works | configure:33150: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33150: $? = 0 | configure:33150: ./conftest | configure:33150: $? = 0 | configure:33162: result: yes | configure:33230: checking for pthread_rwlock_t | configure:33230: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33230: $? = 0 | configure:33230: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:231:31: error: expected expression before ')' token | 231 | if (sizeof ((pthread_rwlock_t))) | | ^ | configure:33230: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | /* end confdefs.h. */ | | #include | | | | int | | main (void) | | { | | if (sizeof ((pthread_rwlock_t))) | | return 0; | | ; | | return 0; | | } | configure:33230: result: yes | configure:33243: checking whether pthread_rwlock_rdlock prefers a writer to a reader | configure:33388: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -pthread >&5 | configure:33388: $? = 0 | configure:33388: ./conftest | configure:33388: $? = 1 | configure: program exited with status 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | /* end confdefs.h. */ | | | | #include | | #include | | #include | | #include | | | | #define SUCCEED() exit (0) | | #define FAILURE() exit (1) | | #define UNEXPECTED(n) (exit (10 + (n))) | | | | /* The main thread creates the waiting writer and the requesting reader threads | | in the default way; this guarantees that they have the same priority. | | We can reuse the main thread as first reader thread. */ | | | | static pthread_rwlock_t lock; | | static pthread_t reader1; | | static pthread_t writer; | | static pthread_t reader2; | | static pthread_t timer; | | /* Used to pass control from writer to reader2 and from reader2 to timer, | | as in a relay race. | | Passing control from one running thread to another running thread | | is most likely faster than to create the second thread. */ | | static pthread_mutex_t baton; | | | | static void * | | timer_func (void *ignored) | | { | | /* Step 13 (can be before or after step 12): | | The timer thread takes the baton, then waits a moment to make sure | | it can tell whether the second reader thread is blocked at step 12. */ | | if (pthread_mutex_lock (&baton)) | | UNEXPECTED (13); | | usleep (100000); | | /* By the time we get here, it's clear that the second reader thread is | | blocked at step 12. This is the desired behaviour. */ | | SUCCEED (); | | } | | | | static void * | | reader2_func (void *ignored) | | { | | int err; | | | | /* Step 8 (can be before or after step 7): | | The second reader thread takes the baton, then waits a moment to make sure | | the writer thread has reached step 7. */ | | if (pthread_mutex_lock (&baton)) | | UNEXPECTED (8); | | usleep (100000); | | /* Step 9: The second reader thread requests the lock. */ | | err = pthread_rwlock_tryrdlock (&lock); | | if (err == 0) | | FAILURE (); | | else if (err != EBUSY) | | UNEXPECTED (9); | | /* Step 10: Launch a timer, to test whether the next call blocks. */ | | if (pthread_create (&timer, NULL, timer_func, NULL)) | | UNEXPECTED (10); | | /* Step 11: Release the baton. */ | | if (pthread_mutex_unlock (&baton)) | | UNEXPECTED (11); | | /* Step 12: The second reader thread requests the lock. */ | | err = pthread_rwlock_rdlock (&lock); | | if (err == 0) | | FAILURE (); | | else | | UNEXPECTED (12); | | } | | | | static void * | | writer_func (void *ignored) | | { | | /* Step 4: Take the baton, so that the second reader thread does not go ahead | | too early. */ | | if (pthread_mutex_lock (&baton)) | | UNEXPECTED (4); | | /* Step 5: Create the second reader thread. */ | | if (pthread_create (&reader2, NULL, reader2_func, NULL)) | | UNEXPECTED (5); | | /* Step 6: Release the baton. */ | | if (pthread_mutex_unlock (&baton)) | | UNEXPECTED (6); | | /* Step 7: The writer thread requests the lock. */ | | if (pthread_rwlock_wrlock (&lock)) | | UNEXPECTED (7); | | return NULL; | | } | | | | int | | main () | | { | | reader1 = pthread_self (); | | | | /* Step 1: The main thread initializes the lock and the baton. */ | | if (pthread_rwlock_init (&lock, NULL)) | | UNEXPECTED (1); | | if (pthread_mutex_init (&baton, NULL)) | | UNEXPECTED (1); | | /* Step 2: The main thread acquires the lock as a reader. */ | | if (pthread_rwlock_rdlock (&lock)) | | UNEXPECTED (2); | | /* Step 3: Create the writer thread. */ | | if (pthread_create (&writer, NULL, writer_func, NULL)) | | UNEXPECTED (3); | | /* Job done. Go to sleep. */ | | for (;;) | | { | | sleep (1); | | } | | } | | | configure:33401: result: no | configure:33435: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33435: $? = 0 | configure:33456: checking for GNU libc compatible malloc | configure:33502: result: yes | configure:33656: checking whether NAN macro works | configure:33680: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33680: $? = 0 | configure:33688: result: yes | configure:33693: checking whether HUGE_VAL works | configure:33712: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33712: $? = 0 | configure:33720: result: yes | configure:33759: checking whether mbrtowc handles incomplete characters | configure:33851: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:33851: $? = 0 | configure:33851: ./conftest | configure:33851: $? = 0 | configure:33865: result: yes | configure:33871: checking whether mbrtowc works as well as mbtowc | configure:33935: result: guessing yes | configure:33985: checking whether mbrtowc handles a NULL pwc argument | configure:34046: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:34046: $? = 0 | configure:34046: ./conftest | configure:34046: $? = 0 | configure:34059: result: yes | configure:34065: checking whether mbrtowc handles a NULL string argument | configure:34114: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:34114: $? = 0 | configure:34114: ./conftest | configure:34114: $? = 0 | configure:34127: result: yes | configure:34135: checking whether mbrtowc has a correct return value | configure:34252: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:34252: $? = 0 | configure:34252: ./conftest | configure:34252: $? = 0 | configure:34268: result: yes | configure:34274: checking whether mbrtowc returns 0 when parsing a NUL character | configure:34333: result: guessing yes | configure:34338: checking whether mbrtowc stores incomplete characters | configure:34461: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:34461: $? = 0 | configure:34461: ./conftest | configure:34461: $? = 0 | configure:34476: result: no | configure:34481: checking whether mbrtowc works on empty input | configure:34511: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:34511: $? = 0 | configure:34511: ./conftest | configure:34511: $? = 0 | configure:34523: result: yes | configure:34527: checking whether the C locale is free of encoding errors | configure:34573: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:34573: $? = 0 | configure:34573: ./conftest | configure:34573: $? = 3 | configure: program exited with status 3 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | | | int | | main (void) | | { | | | | int i; | | char *locale = setlocale (LC_ALL, "C"); | | if (! locale) | | return 2; | | for (i = CHAR_MIN; i <= CHAR_MAX; i++) | | { | | char c = i; | | wchar_t wc; | | mbstate_t mbs = { 0, }; | | size_t ss = mbrtowc (&wc, &c, 1, &mbs); | | if (1 < ss) | | return 3; | | } | | return 0; | | | | ; | | return 0; | | } | configure:34585: result: no | configure:34928: checking whether mbrtowc handles incomplete characters | configure:35034: result: yes | configure:35040: checking whether mbrtowc works as well as mbtowc | configure:35104: result: guessing yes | configure:35191: checking whether mbswidth is declared in | configure:35220: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:250:22: error: 'mbswidth' undeclared (first use in this function); did you mean 'wcswidth'? | 250 | char *p = (char *) mbswidth; | | ^~~~~~~~ | | wcswidth | conftest.c:250:22: note: each undeclared identifier is reported only once for each function it appears in | configure:35220: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | /* end confdefs.h. */ | | | | /* Tru64 with Desktop Toolkit C has a bug: must be included before | | . | | BSD/OS 4.0.1 has a bug: , and must be included | | before . */ | | #include | | #include | | #include | | #include | | | | int | | main (void) | | { | | | | char *p = (char *) mbswidth; | | return !p; | | | | ; | | return 0; | | } | configure:35228: result: no | configure:35241: checking for mbstate_t | configure:35274: result: yes | configure:35372: checking for obstacks that work with any size object | configure:35397: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:244:21: error: conflicting types for '_obstack_memory_used' | 244 | size_t _obstack_memory_used (struct obstack *); | | ^~~~~~~~~~~~~~~~~~~~ | In file included from conftest.c:240: | /usr/include/obstack.h:190:12: note: previous declaration of '_obstack_memory_used' was here | 190 | extern int _obstack_memory_used (struct obstack *) __attribute_pure__; | | ^~~~~~~~~~~~~~~~~~~~ | configure:35397: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | /* end confdefs.h. */ | | #include "obstack.h" | | void *obstack_chunk_alloc (size_t n) { return 0; } | | void obstack_chunk_free (void *p) { } | | /* Check that an internal function returns size_t, not int. */ | | size_t _obstack_memory_used (struct obstack *); | | | | int | | main (void) | | { | | struct obstack mem; | | obstack_init (&mem); | | obstack_free (&mem, 0); | | | | ; | | return 0; | | } | configure:35406: result: no | configure:35487: checking whether open recognizes a trailing slash | configure:35532: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:35532: $? = 0 | configure:35532: ./conftest | configure:35532: $? = 0 | configure:35545: result: yes | configure:35609: checking whether perror matches strerror | configure:35649: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:35649: $? = 0 | configure:35649: ./conftest | configure:35649: $? = 0 | configure:35667: result: yes | configure:35745: checking whether posix_spawn_file_actions_addclose works | configure:35777: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:35777: $? = 0 | configure:35777: ./conftest | configure:35777: $? = 0 | configure:35789: result: yes | configure:35833: checking whether posix_spawn_file_actions_adddup2 works | configure:35865: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:35865: $? = 0 | configure:35865: ./conftest | configure:35865: $? = 0 | configure:35877: result: yes | configure:35921: checking whether posix_spawn_file_actions_addopen works | configure:35955: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:35955: $? = 0 | configure:35955: ./conftest | configure:35955: $? = 0 | configure:35967: result: yes | configure:36218: checking whether frexp works | configure:36331: result: yes | configure:36343: checking whether ldexp can be used without linking with libm | configure:36373: result: yes | configure:36386: checking whether frexpl() can be used without linking with libm | configure:36415: result: yes | configure:36421: checking whether frexpl works | configure:36548: result: yes | configure:36563: checking whether frexpl is declared | configure:36563: result: yes | configure:36575: checking whether ldexpl() can be used without linking with libm | configure:36604: result: yes | configure:36610: checking whether ldexpl works | configure:36667: result: yes | configure:36675: checking whether ldexpl is declared | configure:36675: result: yes | configure:36728: checking whether program_invocation_name is declared | configure:36728: result: yes | configure:36739: checking whether program_invocation_short_name is declared | configure:36739: result: yes | configure:36760: checking for raise | configure:36760: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:36760: $? = 0 | configure:36760: result: yes | configure:36782: checking for sigprocmask | configure:36782: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:36782: $? = 0 | configure:36782: result: yes | configure:37346: checking for readline | configure:37372: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -lreadline >&5 | configure:37372: $? = 0 | configure:37390: result: yes | configure:37402: checking how to link with libreadline | configure:37404: result: -lreadline | configure:37414: checking for readline/readline.h | configure:37414: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37414: $? = 0 | configure:37414: result: yes | configure:37420: checking for readline/history.h | configure:37420: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37420: $? = 0 | configure:37420: result: yes | configure:37449: checking whether readlink signature is correct | configure:37468: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37468: $? = 0 | configure:37476: result: yes | configure:37478: checking whether readlink handles trailing slash correctly | configure:37512: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37512: $? = 0 | configure:37512: ./conftest | configure:37512: $? = 0 | configure:37524: result: yes | configure:37654: checking for getcwd | configure:37654: result: yes | configure:37684: checking for search.h | configure:37684: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37684: $? = 0 | configure:37684: result: yes | configure:37691: checking for tsearch | configure:37691: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37691: $? = 0 | configure:37691: result: yes | configure:37708: checking whether rename honors trailing slash on destination | configure:37759: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37759: $? = 0 | configure:37759: ./conftest | configure:37759: $? = 0 | configure:37772: result: yes | configure:37784: checking whether rename honors trailing slash on source | configure:37835: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37835: $? = 0 | configure:37835: ./conftest | configure:37835: $? = 0 | configure:37848: result: yes | configure:37861: checking whether rename manages hard links correctly | configure:37914: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:37914: $? = 0 | configure:37914: ./conftest | configure:37914: $? = 0 | configure:37945: result: yes | configure:37957: checking whether rename manages existing destinations correctly | configure:38000: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38000: $? = 0 | configure:38000: ./conftest | configure:38000: $? = 0 | configure:38013: result: yes | configure:38058: checking for sched.h | configure:38058: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38058: $? = 0 | configure:38058: result: yes | configure:38150: checking for struct sched_param | configure:38150: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38150: $? = 0 | configure:38150: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:284:33: error: expected expression before ')' token | 284 | if (sizeof ((struct sched_param))) | | ^ | configure:38150: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | /* end confdefs.h. */ | | #if HAVE_SYS_CDEFS_H | | #include | | #endif | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((struct sched_param))) | | return 0; | | ; | | return 0; | | } | configure:38150: result: yes | configure:38205: checking for struct sigaction.sa_sigaction | configure:38205: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38205: $? = 0 | configure:38205: result: yes | configure:38349: checking for volatile sig_atomic_t | configure:38349: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38349: $? = 0 | configure:38349: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:284:36: error: expected expression before ')' token | 284 | if (sizeof ((volatile sig_atomic_t))) | | ^ | configure:38349: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((volatile sig_atomic_t))) | | return 0; | | ; | | return 0; | | } | configure:38349: result: yes | configure:38366: checking for sighandler_t | configure:38366: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38366: $? = 0 | configure:38366: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:284:27: error: expected expression before ')' token | 284 | if (sizeof ((sighandler_t))) | | ^ | configure:38366: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((sighandler_t))) | | return 0; | | ; | | return 0; | | } | configure:38366: result: yes | configure:38387: checking for signbit macro | configure:38498: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38498: $? = 0 | configure:38498: ./conftest | configure:38498: $? = 0 | configure:38510: result: yes | configure:38512: checking for signbit compiler built-ins | configure:38625: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:38625: $? = 0 | configure:38625: ./conftest | configure:38625: $? = 0 | configure:38637: result: yes | configure:39183: checking for sigprocmask | configure:39183: result: yes | configure:39220: checking for stdint.h | configure:39220: result: yes | configure:39227: checking for SIZE_MAX | configure:39303: result: yes | configure:39315: checking for snprintf | configure:39315: result: yes | configure:39326: checking whether snprintf respects a size of 1 | configure:39369: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:39369: $? = 0 | configure:39369: ./conftest | configure:39369: $? = 0 | configure:39381: result: yes | configure:39391: checking whether printf supports POSIX/XSI format strings with positions | configure:39440: result: yes | configure:39518: checking for snprintf | configure:39518: result: yes | configure:39531: checking whether snprintf fully supports the 'n' directive | configure:39627: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:39627: $? = 0 | configure:39627: ./conftest | configure:39627: $? = 0 | configure:39639: result: yes | configure:39645: checking whether snprintf respects a size of 1 | configure:39700: result: yes | configure:39705: checking whether vsnprintf respects a zero size as in C99 | configure:39773: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:39773: $? = 0 | configure:39773: ./conftest | configure:39773: $? = 0 | configure:39785: result: yes | configure:40196: checking for posix_spawnattr_t | configure:40196: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:40196: $? = 0 | configure:40196: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:291:32: error: expected expression before ')' token | 291 | if (sizeof ((posix_spawnattr_t))) | | ^ | configure:40196: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((posix_spawnattr_t))) | | return 0; | | ; | | return 0; | | } | configure:40196: result: yes | configure:40210: checking for posix_spawn_file_actions_t | configure:40210: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:40210: $? = 0 | configure:40210: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:292:41: error: expected expression before ')' token | 292 | if (sizeof ((posix_spawn_file_actions_t))) | | ^ | configure:40210: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((posix_spawn_file_actions_t))) | | return 0; | | ; | | return 0; | | } | configure:40210: result: yes | configure:40573: checking for ssize_t | configure:40591: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:40591: $? = 0 | configure:40599: result: yes | configure:40649: checking for good max_align_t | configure:40672: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:40672: $? = 0 | configure:40681: result: yes | configure:40693: checking whether NULL can be used in arbitrary expressions | configure:40712: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:40712: $? = 0 | configure:40720: result: yes | configure:40890: checking which flavor of printf attribute matches inttypes macros | configure:40918: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:40918: $? = 0 | configure:40926: result: system | configure:41059: checking for stpcpy | configure:41059: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:306:6: warning: conflicting types for built-in function 'stpcpy'; expected 'char *(char *, const char *)' [-Wbuiltin-declaration-mismatch] | 306 | char stpcpy (); | | ^~~~~~ | configure:41059: $? = 0 | configure:41059: result: yes | configure:41112: checking for working stpncpy | configure:41185: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:41185: $? = 0 | configure:41185: ./conftest | configure:41185: $? = 0 | configure:41197: result: yes | configure:41290: checking for working strerror function | configure:41320: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:41320: $? = 0 | configure:41320: ./conftest | configure:41320: $? = 0 | configure:41332: result: yes | configure:41397: checking for working strndup | configure:41440: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:41440: $? = 0 | configure:41440: ./conftest | configure:41440: $? = 0 | configure:41451: result: yes | configure:41491: checking for strverscmp | configure:41491: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:41491: $? = 0 | configure:41491: result: yes | configure:41538: checking whether declares ioctl | configure:41555: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:41555: $? = 0 | configure:41564: result: yes | configure:41836: checking for struct tms | configure:41836: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:41836: $? = 0 | configure:41836: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:307:25: error: expected expression before ')' token | 307 | if (sizeof ((struct tms))) | | ^ | configure:41836: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | /* end confdefs.h. */ | | | | #include | | | | | | int | | main (void) | | { | | if (sizeof ((struct tms))) | | return 0; | | ; | | return 0; | | } | configure:41836: result: yes | configure:42045: checking for sys/single_threaded.h | configure:42045: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:323:10: fatal error: sys/single_threaded.h: No such file or directory | 323 | #include  | | ^~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:42045: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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:42045: result: no | configure:42348: checking whether unlink honors trailing slashes | configure:42405: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:42405: $? = 0 | configure:42405: ./conftest | configure:42405: $? = 0 | configure:42417: result: yes | configure:42425: checking whether unlink of a parent directory fails as it should | configure:42504: result: guessing yes | configure:42569: checking for unsetenv | configure:42569: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:42569: $? = 0 | configure:42569: result: yes | configure:42580: checking for unsetenv() return type | configure:42606: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:42606: $? = 0 | configure:42614: result: int | configure:42623: checking whether unsetenv obeys POSIX | configure:42673: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:42673: $? = 0 | configure:42673: ./conftest | configure:42673: $? = 0 | configure:42685: result: yes | configure:42786: checking for ptrdiff_t | configure:42786: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:42786: $? = 0 | configure:42786: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:332:24: error: expected expression before ')' token | 332 | if (sizeof ((ptrdiff_t))) | | ^ | configure:42786: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_UNISTR_U8_MBTOUCR 1 | | #define GNULIB_UNISTR_U8_UCTOMB 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | /* end confdefs.h. */ | | #include | | #include | | #include | | #include | | #ifdef HAVE_SYS_TYPES_H | | # include | | #endif | | #ifdef HAVE_SYS_STAT_H | | # 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 (void) | | { | | if (sizeof ((ptrdiff_t))) | | return 0; | | ; | | return 0; | | } | configure:42786: result: yes | configure:42806: checking for vasprintf | configure:42806: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:42806: $? = 0 | configure:42806: result: yes | configure:42890: checking for vasprintf | configure:42890: result: yes | configure:43217: checking for vsnprintf | configure:43217: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:326:6: warning: conflicting types for built-in function 'vsnprintf'; expected 'int(char *, long unsigned int, const char *, __va_list_tag *)' [-Wbuiltin-declaration-mismatch] | 326 | char vsnprintf (); | | ^~~~~~~~~ | conftest.c:318:1: note: 'vsnprintf' is declared in header '' | 317 | #include | 318 | #undef vsnprintf | configure:43217: $? = 0 | configure:43217: result: yes | configure:43228: checking whether snprintf respects a size of 1 | configure:43283: result: yes | configure:43293: checking whether printf supports POSIX/XSI format strings with positions | configure:43342: result: yes | configure:43415: checking for vsnprintf | configure:43415: result: yes | configure:43428: checking whether snprintf fully supports the 'n' directive | configure:43536: result: yes | configure:43542: checking whether snprintf respects a size of 1 | configure:43597: result: yes | configure:43602: checking whether vsnprintf respects a zero size as in C99 | configure:43682: result: yes | configure:44336: checking for waitid | configure:44336: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:44336: $? = 0 | configure:44336: result: yes | configure:44588: checking whether iswcntrl works | configure:44647: result: yes | configure:44673: checking for towlower | configure:44673: result: yes | configure:44718: checking for wctype_t | configure:44756: result: yes | configure:44762: checking for wctrans_t | configure:44798: result: yes | configure:44819: checking whether wcwidth is declared | configure:44819: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:44819: $? = 0 | configure:44819: result: yes | configure:44877: checking whether wcwidth works reasonably in UTF-8 locales | configure:44938: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:44938: $? = 0 | configure:44938: ./conftest | configure:44938: $? = 0 | configure:44950: result: yes | configure:44992: checking whether use of TIOCGWINSZ requires sys/ioctl.h | configure:45020: result: yes | configure:45029: checking whether use of TIOCGWINSZ requires termios.h | configure:45057: result: no | configure:45062: checking whether use of struct winsize requires sys/ptem.h | configure:45082: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c: In function 'main': | conftest.c:324:16: error: storage size of 'x' isn't known | 324 | struct winsize x; | | ^ | configure:45082: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_UNISTR_U8_MBTOUCR 1 | | #define GNULIB_UNISTR_U8_UCTOMB 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define HAVE_VASPRINTF 1 | | #define GNULIB_TEST_VASPRINTF 1 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSNPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSPRINTF_POSIX 1 | | #define HAVE_WAITID 1 | | #define GNULIB_TEST_WAITPID 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define GWINSZ_IN_SYS_IOCTL 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | struct winsize x; | | if (sizeof x > 0) return 0; | | ; | | return 0; | | } | configure:45101: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | conftest.c:320:10: fatal error: sys/ptem.h: No such file or directory | 320 | #include  | | ^~~~~~~~~~~~ | compilation terminated. | configure:45101: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_UNISTR_U8_MBTOUCR 1 | | #define GNULIB_UNISTR_U8_UCTOMB 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define HAVE_VASPRINTF 1 | | #define GNULIB_TEST_VASPRINTF 1 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSNPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSPRINTF_POSIX 1 | | #define HAVE_WAITID 1 | | #define GNULIB_TEST_WAITPID 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define GWINSZ_IN_SYS_IOCTL 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | struct winsize x; | | if (sizeof x > 0) return 0; | | ; | | return 0; | | } | configure:45110: result: no | configure:45121: checking for stdint.h | configure:45121: result: yes | configure:45460: checking whether getdtablesize works | configure:45500: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:45500: $? = 0 | configure:45500: ./conftest | configure:45500: $? = 0 | configure:45514: result: yes | configure:46600: checking whether setlocale (LC_ALL, NULL) is multithread-safe | configure:46619: result: yes | configure:46637: checking whether setlocale (category, NULL) is multithread-safe | configure:46656: result: yes | configure:46126: checking whether locale.h conforms to POSIX:2001 | configure:46145: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:46145: $? = 0 | configure:46153: result: yes | configure:46156: checking whether struct lconv is properly defined | configure:46176: gcc10 -c -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:46176: $? = 0 | configure:46185: result: yes | configure:48524: checking whether NLS is requested | configure:48534: result: yes | configure:48574: checking for msgfmt | configure: trying /usr/local/bin/msgfmt... | 0 translated messages. | configure:48607: result: /usr/local/bin/msgfmt | configure:48616: checking for gmsgfmt | configure:48652: result: /usr/local/bin/msgfmt | configure:48702: checking for xgettext | configure: trying /usr/local/bin/xgettext... | /usr/local/bin/xgettext: warning: file '/dev/null' extension '' is unknown; will try C | configure:48735: result: /usr/local/bin/xgettext | configure:48780: checking for msgmerge | configure: trying /usr/local/bin/msgmerge... | configure:48812: result: /usr/local/bin/msgmerge | configure:48853: checking for CFPreferencesCopyAppValue | configure:48872: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:325:10: fatal error: CoreFoundation/CFPreferences.h: No such file or directory | 325 | #include  | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:48872: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_UNISTR_U8_MBTOUCR 1 | | #define GNULIB_UNISTR_U8_UCTOMB 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define HAVE_VASPRINTF 1 | | #define GNULIB_TEST_VASPRINTF 1 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSNPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSPRINTF_POSIX 1 | | #define HAVE_WAITID 1 | | #define GNULIB_TEST_WAITPID 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define GWINSZ_IN_SYS_IOCTL 1 | | #define HAVE_STDINT_H 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define GNULIB_TEST_SETLOCALE_NULL 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | CFPreferencesCopyAppValue(NULL, NULL) | | ; | | return 0; | | } | configure:48882: result: no | configure:48889: checking for CFLocaleCopyCurrent | configure:48908: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c -Wl,-framework -Wl,CoreFoundation >&5 | conftest.c:325:10: fatal error: CoreFoundation/CFLocale.h: No such file or directory | 325 | #include  | | ^~~~~~~~~~~~~~~~~~~~~~~~~~~ | compilation terminated. | configure:48908: $? = 1 | configure: failed program was: | | /* confdefs.h */ | | #define PACKAGE_NAME "GNU Bison" | | #define PACKAGE_TARNAME "bison" | | #define PACKAGE_VERSION "3.7.3" | | #define PACKAGE_STRING "GNU Bison 3.7.3" | | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | | #define PACKAGE_COPYRIGHT_YEAR 2020 | | #define PACKAGE "bison" | | #define VERSION "3.7.3" | | #define HAVE_SYS_TYPES_H 1 | | #define HAVE_SYS_STAT_H 1 | | #define HAVE_STRINGS_H 1 | | #define HAVE_INTTYPES_H 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_UNISTD_H 1 | | #define HAVE_LOCALE_H 1 | | #define HAVE_SYS_PARAM_H 1 | | #define HAVE_SYS_SOCKET_H 1 | | #define HAVE_STDIO_EXT_H 1 | | #define HAVE_FEATURES_H 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_SYS_CDEFS_H 1 | | #define HAVE_SYS_TIME_H 1 | | #define HAVE_ICONV_H 1 | | #define HAVE_LIMITS_H 1 | | #define HAVE_WCHAR_H 1 | | #define HAVE_WCTYPE_H 1 | | #define HAVE_MATH_H 1 | | #define HAVE_SYS_MMAN_H 1 | | #define HAVE_SPAWN_H 1 | | #define HAVE_SYS_IOCTL_H 1 | | #define HAVE_SYS_RESOURCE_H 1 | | #define HAVE_SYS_TIMES_H 1 | | #define HAVE_SYS_WAIT_H 1 | | #define HAVE_TERMIOS_H 1 | | #define HAVE_XLOCALE_H 1 | | #define HAVE_STDLIB_H 1 | | #define HAVE_STRING_H 1 | | #define STDC_HEADERS 1 | | #define __EXTENSIONS__ 1 | | #define _ALL_SOURCE 1 | | #define _DARWIN_C_SOURCE 1 | | #define _GNU_SOURCE 1 | | #define _NETBSD_SOURCE 1 | | #define _OPENBSD_SOURCE 1 | | #define _POSIX_PTHREAD_SEMANTICS 1 | | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | | #define __STDC_WANT_LIB_EXT2__ 1 | | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | | #define _TANDEM_SOURCE 1 | | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | | #define HAVE_TCDRAIN 1 | | #define HAVE_CANONICALIZE_FILE_NAME 1 | | #define HAVE_READLINK 1 | | #define HAVE_REALPATH 1 | | #define HAVE_READLINKAT 1 | | #define HAVE_STRERROR_R 1 | | #define HAVE_FCNTL 1 | | #define HAVE_SYMLINK 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_FSYNC 1 | | #define HAVE_GETRUSAGE 1 | | #define HAVE_GETTIMEOFDAY 1 | | #define HAVE_ISWCNTRL 1 | | #define HAVE_ISWBLANK 1 | | #define HAVE_MBSINIT 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_ISASCII 1 | | #define HAVE_MPROTECT 1 | | #define HAVE_OBSTACK_PRINTF 1 | | #define HAVE_LSTAT 1 | | #define HAVE___XPG_STRERROR_R 1 | | #define HAVE_PIPE2 1 | | #define HAVE_SETENV 1 | | #define HAVE_LINK 1 | | #define HAVE_SIGACTION 1 | | #define HAVE_SIGALTSTACK 1 | | #define HAVE_SIGINTERRUPT 1 | | #define HAVE_STPNCPY 1 | | #define HAVE_STRNDUP 1 | | #define HAVE_PIPE 1 | | #define HAVE_WCWIDTH 1 | | #define HAVE_GETDELIM 1 | | #define HAVE_GETDTABLESIZE 1 | | #define HAVE_CATGETS 1 | | #define HAVE_SETLOCALE 1 | | #define YYTEXT_POINTER 1 | | #define M4 "/usr/bin/m4" | | #define M4_GNU_OPTION "--gnu" | | #define HAVE_ALLOCA_H 1 | | #define HAVE_ALLOCA 1 | | #define FUNC_REALPATH_WORKS 1 | | #define HAVE_GETCWD 1 | | #define restrict __restrict | | #define HAVE_ENVIRON_DECL 1 | | #define HAVE_DECL_STRERROR_R 1 | | #define STRERROR_R_CHAR_P 1 | | #define HAVE_SIG_ATOMIC_T 1 | | #define HAVE_WORKING_O_NOATIME 1 | | #define HAVE_WORKING_O_NOFOLLOW 1 | | #define HAVE_STDINT_H_WITH_UINTMAX 1 | | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | | #define CHECK_PRINTF_SAFE 1 | | #define HAVE_WCHAR_T 1 | | #define HAVE_WINT_T 1 | | #define HAVE_INTMAX_T 1 | | #define DBL_EXPBIT0_WORD 1 | | #define DBL_EXPBIT0_BIT 20 | | #define HAVE_SNPRINTF 1 | | #define HAVE_STRNLEN 1 | | #define HAVE_WCSLEN 1 | | #define HAVE_WCSNLEN 1 | | #define HAVE_MBRTOWC 1 | | #define HAVE_WCRTOMB 1 | | #define HAVE_DECL__SNPRINTF 0 | | #define HAVE_SNPRINTF_RETVAL_C99 1 | | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | | #define HAVE_DECL_ALARM 1 | | #define HAVE_GETOPT_H 1 | | #define HAVE_GETOPT_LONG_ONLY 1 | | #define HAVE_ICONV 1 | | #define ICONV_CONST | | #define HAVE_LONG_LONG_INT 1 | | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | | #define FLT_EXPBIT0_WORD 0 | | #define FLT_EXPBIT0_BIT 23 | | #define HAVE_TOWLOWER 1 | | #define HAVE_LANGINFO_CODESET 1 | | #define HAVE_WEAK_SYMBOLS 1 | | #define HAVE_PTHREAD_API 1 | | #define USE_POSIX_THREADS 1 | | #define USE_POSIX_THREADS_WEAK 1 | | #define HAVE_MBSTATE_T 1 | | #define HAVE_MAP_ANONYMOUS 1 | | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | | #define HAVE_DECL_OBSTACK_PRINTF 1 | | #define PROMOTED_MODE_T mode_t | | #define HAVE_POSIX_SPAWN 1 | | #define USER_LABEL_PREFIX | | #define HAVE_SIGSET_T 1 | | #define INSTALLPREFIX "/usr/local" | | #define MALLOC_0_IS_NONNULL 1 | | #define HAVE_DECL_SETENV 1 | | #define HAVE_DECL_SNPRINTF 1 | | #define HAVE__BOOL 1 | | #define HAVE_DECL_STPNCPY 1 | | #define HAVE_DECL_STRDUP 1 | | #define HAVE_DECL_STRNDUP 1 | | #define _USE_STD_STAT 1 | | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | | #define HAVE_DECL_FEOF_UNLOCKED 1 | | #define HAVE_DECL_FERROR_UNLOCKED 1 | | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | | #define HAVE_DECL_FGETS_UNLOCKED 1 | | #define HAVE_DECL_FPUTC_UNLOCKED 1 | | #define HAVE_DECL_FPUTS_UNLOCKED 1 | | #define HAVE_DECL_FREAD_UNLOCKED 1 | | #define HAVE_DECL_FWRITE_UNLOCKED 1 | | #define HAVE_DECL_GETC_UNLOCKED 1 | | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | | #define HAVE_DECL_PUTC_UNLOCKED 1 | | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | | #define HAVE_DECL_UNSETENV 1 | | #define HAVE_DECL_VSNPRINTF 1 | | #define HAVE_DECL_GETDELIM 1 | | #define HAVE_DECL_GETDTABLESIZE 1 | | #define HAVE_DECL_GETLINE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | | #define HAVE_DECL_STRNLEN 1 | | #define HAVE_ALLOCA 1 | | #define HAVE___BUILTIN_EXPECT 1 | | #define HAVE_CALLOC_POSIX 1 | | #define GNULIB_TEST_CALLOC_POSIX 1 | | #define GNULIB_CANONICALIZE_LGPL 1 | | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | | #define GNULIB_TEST_REALPATH 1 | | #define HAVE_CLOCK_GETTIME 1 | | #define HAVE_CLOCK_SETTIME 1 | | #define GNULIB_TEST_CLOEXEC 1 | | #define GNULIB_TEST_CLOSE 1 | | #define GNULIB_CLOSE_STREAM 1 | | #define GNULIB_DIRNAME 1 | | #define GNULIB_TEST_DUP2 1 | | #define GNULIB_TEST_ENVIRON 1 | | #define GNULIB_TEST_FCNTL 1 | | #define GNULIB_FD_SAFER_FLAG 1 | | #define GNULIB_TEST_FOPEN 1 | | #define GNULIB_FOPEN_GNU 1 | | #define GNULIB_FOPEN_SAFER 1 | | #define HAVE_DECL___FPENDING 1 | | #define GNULIB_TEST_FPRINTF_POSIX 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define GNULIB_TEST_FREXP 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define GNULIB_TEST_FREXPL 1 | | #define GNULIB_TEST_FSYNC 1 | | #define HAVE_DECL_GETHRTIME 0 | | #define GNULIB_TEST_GETOPT_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_DECL___ARGV 0 | | #define GNULIB_TEST_GETRUSAGE 1 | | #define GETTIMEOFDAY_TIMEZONE struct timezone | | #define GNULIB_TEST_GETTIMEOFDAY 1 | | #define HAVE_INLINE 1 | | #define GNULIB_TEST_ISNAN 1 | | #define GNULIB_TEST_ISNAND 1 | | #define HAVE_ISNAND_IN_LIBC 1 | | #define GNULIB_TEST_ISNANF 1 | | #define GNULIB_TEST_ISNANL 1 | | #define HAVE_ISNANL_IN_LIBC 1 | | #define HAVE_DECL_ISWBLANK 1 | | #define GNULIB_TEST_ISWBLANK 1 | | #define GNULIB_TEST_ISWDIGIT 1 | | #define GNULIB_TEST_ISWXDIGIT 1 | | #define HAVE_LDEXPL 1 | | #define GNULIB_TEST_LDEXPL 1 | | #define HAVE_PTHREAD_RWLOCK 1 | | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | | #define GNULIB_LOCK 1 | | #define HAVE_MALLOC_GNU 1 | | #define GNULIB_MALLOC_GNU 1 | | #define HAVE_MALLOC_POSIX 1 | | #define GNULIB_TEST_MALLOC_POSIX 1 | | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | | #define GNULIB_TEST_MBRTOWC 1 | | #define GNULIB_TEST_MBSINIT 1 | | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | | #define HAVE_MBSTATE_T 1 | | #define GNULIB_TEST_MEMCHR 1 | | #define GNULIB_MSVC_NOTHROW 1 | | #define GNULIB_TEST_OBSTACK_PRINTF 1 | | #define GNULIB_TEST_OPEN 1 | | #define GNULIB_TEST_PERROR 1 | | #define GNULIB_TEST_PIPE2 1 | | #define GNULIB_PIPE2_SAFER 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | | #define GNULIB_TEST_POSIX_SPAWNP 1 | | #define HAVE_FREXP_IN_LIBC 1 | | #define HAVE_LDEXP_IN_LIBC 1 | | #define HAVE_FREXPL_IN_LIBC 1 | | #define HAVE_LDEXPL_IN_LIBC 1 | | #define GNULIB_TEST_PRINTF_POSIX 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | | #define HAVE_RAISE 1 | | #define GNULIB_TEST_RAISE 1 | | #define HAVE_READLINE 1 | | #define HAVE_READLINE_READLINE_H 1 | | #define HAVE_READLINE_HISTORY_H 1 | | #define GNULIB_TEST_READLINK 1 | | #define HAVE_REALLOC_POSIX 1 | | #define GNULIB_TEST_REALLOC_POSIX 1 | | #define HAVE_GETCWD 1 | | #define HAVE_SEARCH_H 1 | | #define HAVE_TSEARCH 1 | | #define GNULIB_TEST_RENAME 1 | | #define HAVE_SCHED_H 1 | | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | | #define GNULIB_TEST_SIGACTION 1 | | #define GNULIB_TEST_SIGNBIT 1 | | #define GNULIB_TEST_SIGPROCMASK 1 | | #define HAVE_STDINT_H 1 | | #define HAVE_SNPRINTF 1 | | #define GNULIB_TEST_SNPRINTF 1 | | #define GNULIB_SNPRINTF 1 | | #define HAVE_SNPRINTF 1 | | #define HAVE_POSIX_SPAWNATTR_T 1 | | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | | #define GNULIB_TEST_SPRINTF_POSIX 1 | | #define __USE_MINGW_ANSI_STDIO 1 | | #define GNULIB_FSCANF 1 | | #define GNULIB_SCANF 1 | | #define HAVE_STPCPY 1 | | #define GNULIB_TEST_STPCPY 1 | | #define HAVE_STPNCPY 1 | | #define GNULIB_TEST_STPNCPY 1 | | #define GNULIB_TEST_STRDUP 1 | | #define GNULIB_STRERROR 1 | | #define GNULIB_TEST_STRERROR 1 | | #define GNULIB_TEST_STRNDUP 1 | | #define HAVE_STRVERSCMP 1 | | #define GNULIB_TEST_STRVERSCMP 1 | | #define HAVE_STRUCT_TMS 1 | | #define GNULIB_UNISTR_U8_MBTOUCR 1 | | #define GNULIB_UNISTR_U8_UCTOMB 1 | | #define GNULIB_TEST_UNLINK 1 | | #define USE_UNLOCKED_IO 1 | | #define HAVE_UNSETENV 1 | | #define GNULIB_TEST_UNSETENV 1 | | #define HAVE_VASPRINTF 1 | | #define GNULIB_TEST_VASPRINTF 1 | | #define HAVE_VASPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSNPRINTF 1 | | #define HAVE_VSNPRINTF 1 | | #define GNULIB_TEST_VSPRINTF_POSIX 1 | | #define HAVE_WAITID 1 | | #define GNULIB_TEST_WAITPID 1 | | #define HAVE_TOWLOWER 1 | | #define HAVE_DECL_WCWIDTH 1 | | #define GNULIB_TEST_WCWIDTH 1 | | #define GWINSZ_IN_SYS_IOCTL 1 | | #define HAVE_STDINT_H 1 | | #define GNULIB_TEST_GETDTABLESIZE 1 | | #define SETLOCALE_NULL_ALL_MTSAFE 1 | | #define SETLOCALE_NULL_ONE_MTSAFE 1 | | #define GNULIB_TEST_SETLOCALE_NULL 1 | | /* end confdefs.h. */ | | #include | | int | | main (void) | | { | | CFLocaleCopyCurrent(); | | ; | | return 0; | | } | configure:48918: result: no | configure:48967: checking for GNU gettext in libc | configure:48992: gcc10 -o conftest -march=znver1 -mtune=znver1 -O3 conftest.c >&5 | configure:48992: $? = 0 | configure:49002: result: yes | configure:49890: checking whether to use NLS | configure:49892: result: yes | configure:49895: checking where the gettext function comes from | configure:49906: result: libc | configure:50015: checking for valgrind | configure:50050: result: no | configure:50073: checking Valgrind suppression file | configure:50075: result: | configure:50216: checking that generated files are newer than configure | configure:50222: result: done | configure:50565: creating ./config.status | | ## ---------------------- ## | ## Running config.status. ## | ## ---------------------- ## | | This file was extended by GNU Bison config.status 3.7.3, which was | generated by GNU Autoconf 2.69b.24-e9bfc. Invocation command line was | | CONFIG_FILES = | CONFIG_HEADERS = | CONFIG_LINKS = | CONFIG_COMMANDS = | $ ./config.status | | on zendev1 | | config.status:2573: creating src/yacc | config.status:2573: creating javacomp.sh | config.status:2573: creating javaexec.sh | config.status:2573: creating gnulib-po/Makefile.in | config.status:2573: creating runtime-po/Makefile.in | config.status:2573: creating etc/bench.pl | config.status:2573: creating tests/atlocal | config.status:2573: creating tests/bison | config.status:2573: creating Makefile | config.status:2573: creating po/Makefile.in | config.status:2573: creating doc/yacc.1 | config.status:2573: creating lib/config.h | config.status:2804: linking ../../bison-3.7.3/GNUmakefile to GNUmakefile | config.status:2823: executing depfiles commands | config.status:2900: cd . && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles | config.status:2905: $? = 0 | config.status:2823: executing po-directories commands | config.status:2823: executing tests/atconfig commands | | ## ---------------- ## | ## Cache variables. ## | ## ---------------- ## | | ac_cv_build=x86_64-pc-linux-gnu | ac_cv_c_bigendian=no | ac_cv_c_compiler_gnu=yes | ac_cv_c_decl_report=error | ac_cv_c_inline=inline | ac_cv_c_restrict=__restrict | ac_cv_cxx_compiler_gnu=yes | ac_cv_env_CCC_set= | ac_cv_env_CCC_value= | ac_cv_env_CC_set=set | ac_cv_env_CC_value=gcc10 | ac_cv_env_CFLAGS_set=set | ac_cv_env_CFLAGS_value='-march=znver1 -mtune=znver1 -O3' | ac_cv_env_CPPFLAGS_set= | ac_cv_env_CPPFLAGS_value= | ac_cv_env_CPP_set= | ac_cv_env_CPP_value= | ac_cv_env_CXXFLAGS_set=set | ac_cv_env_CXXFLAGS_value='-march=znver1 -mtune=znver1 -O3' | ac_cv_env_CXX_set=set | ac_cv_env_CXX_value=g++10 | ac_cv_env_LDFLAGS_set= | ac_cv_env_LDFLAGS_value= | ac_cv_env_LIBS_set= | ac_cv_env_LIBS_value= | ac_cv_env_M4_set= | ac_cv_env_M4_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___fseterr=no | ac_cv_func___xpg_strerror_r=yes | ac_cv_func__set_invalid_parameter_handler=no | ac_cv_func_alloca_works=yes | ac_cv_func_canonicalize_file_name=yes | ac_cv_func_catgets=yes | ac_cv_func_clock_gettime=yes | ac_cv_func_clock_settime=yes | ac_cv_func_fcntl=yes | ac_cv_func_fsync=yes | ac_cv_func_getcwd=yes | ac_cv_func_getdelim=yes | ac_cv_func_getdtablesize=yes | ac_cv_func_getexecname=no | ac_cv_func_getopt_long_only=yes | ac_cv_func_getprogname=no | ac_cv_func_getrusage=yes | ac_cv_func_gettimeofday=yes | ac_cv_func_isascii=yes | ac_cv_func_iswblank=yes | ac_cv_func_iswcntrl=yes | ac_cv_func_link=yes | ac_cv_func_lstat=yes | ac_cv_func_malloc_0_nonnull=yes | ac_cv_func_mbrtowc=yes | ac_cv_func_mbsinit=yes | ac_cv_func_microuptime=no | ac_cv_func_mmap=yes | ac_cv_func_mprotect=yes | ac_cv_func_nanouptime=no | ac_cv_func_obstack=no | ac_cv_func_obstack_printf=yes | ac_cv_func_pipe2=yes | ac_cv_func_pipe=yes | ac_cv_func_posix_spawn=yes | ac_cv_func_raise=yes | ac_cv_func_readlink=yes | ac_cv_func_readlinkat=yes | ac_cv_func_realpath=yes | ac_cv_func_setenv=yes | ac_cv_func_setlocale=yes | ac_cv_func_sigaction=yes | ac_cv_func_sigaltstack=yes | ac_cv_func_siginterrupt=yes | ac_cv_func_sigprocmask=yes | ac_cv_func_snprintf=yes | ac_cv_func_stpcpy=yes | ac_cv_func_stpncpy=yes | ac_cv_func_strerror_r=yes | ac_cv_func_strerror_r_char_p=yes | ac_cv_func_strndup=yes | ac_cv_func_strnlen=yes | ac_cv_func_strverscmp=yes | ac_cv_func_symlink=yes | ac_cv_func_tcdrain=yes | ac_cv_func_towlower=yes | ac_cv_func_tsearch=yes | ac_cv_func_unsetenv=yes | ac_cv_func_vasnprintf=no | ac_cv_func_vasprintf=yes | ac_cv_func_vsnprintf=yes | ac_cv_func_waitid=yes | ac_cv_func_wcrtomb=yes | ac_cv_func_wcslen=yes | ac_cv_func_wcsnlen=yes | ac_cv_func_wcwidth=yes | ac_cv_have_decl___argv=no | ac_cv_have_decl___fpending=yes | ac_cv_have_decl__snprintf=no | ac_cv_have_decl_alarm=yes | ac_cv_have_decl_clearerr_unlocked=yes | ac_cv_have_decl_feof_unlocked=yes | ac_cv_have_decl_ferror_unlocked=yes | ac_cv_have_decl_fflush_unlocked=yes | ac_cv_have_decl_fgets_unlocked=yes | ac_cv_have_decl_fputc_unlocked=yes | ac_cv_have_decl_fputs_unlocked=yes | ac_cv_have_decl_fread_unlocked=yes | ac_cv_have_decl_frexpl=yes | ac_cv_have_decl_fwrite_unlocked=yes | ac_cv_have_decl_getc_unlocked=yes | ac_cv_have_decl_getchar_unlocked=yes | ac_cv_have_decl_getdelim=yes | ac_cv_have_decl_getdtablesize=yes | ac_cv_have_decl_gethrtime=no | ac_cv_have_decl_getline=yes | ac_cv_have_decl_iswblank=yes | ac_cv_have_decl_ldexpl=yes | ac_cv_have_decl_mbswidth=no | ac_cv_have_decl_obstack_printf=yes | ac_cv_have_decl_program_invocation_name=yes | ac_cv_have_decl_program_invocation_short_name=yes | ac_cv_have_decl_putc_unlocked=yes | ac_cv_have_decl_putchar_unlocked=yes | ac_cv_have_decl_setenv=yes | ac_cv_have_decl_snprintf=yes | ac_cv_have_decl_stpncpy=yes | ac_cv_have_decl_strdup=yes | ac_cv_have_decl_strerror_r=yes | ac_cv_have_decl_strndup=yes | ac_cv_have_decl_strnlen=yes | ac_cv_have_decl_unsetenv=yes | ac_cv_have_decl_vsnprintf=yes | ac_cv_have_decl_wcwidth=yes | ac_cv_header_crtdefs_h=no | ac_cv_header_features_h=yes | ac_cv_header_getopt_h=yes | ac_cv_header_iconv_h=yes | ac_cv_header_inttypes_h=yes | ac_cv_header_limits_h=yes | ac_cv_header_locale_h=yes | ac_cv_header_math_h=yes | ac_cv_header_minix_config_h=no | ac_cv_header_pthread_h=yes | ac_cv_header_readline_history_h=yes | ac_cv_header_readline_readline_h=yes | ac_cv_header_sched_h=yes | ac_cv_header_search_h=yes | ac_cv_header_spawn_h=yes | ac_cv_header_stat_broken=no | ac_cv_header_stdbool_h=yes | ac_cv_header_stdint_h=yes | ac_cv_header_stdio_ext_h=yes | ac_cv_header_strings_h=yes | ac_cv_header_sys_cdefs_h=yes | ac_cv_header_sys_ioctl_h=yes | ac_cv_header_sys_mman_h=yes | ac_cv_header_sys_param_h=yes | ac_cv_header_sys_resource_h=yes | ac_cv_header_sys_single_threaded_h=no | ac_cv_header_sys_socket_h=yes | ac_cv_header_sys_stat_h=yes | ac_cv_header_sys_time_h=yes | ac_cv_header_sys_times_h=yes | ac_cv_header_sys_types_h=yes | ac_cv_header_sys_wait_h=yes | ac_cv_header_termios_h=yes | ac_cv_header_threads_h=no | ac_cv_header_unistd_h=yes | ac_cv_header_wchar_h=yes | ac_cv_header_wctype_h=yes | ac_cv_header_xlocale_h=yes | ac_cv_host=x86_64-pc-linux-gnu | ac_cv_lib_error_at_line=yes | ac_cv_lib_lex=-lfl | ac_cv_libtextstyle=no | ac_cv_member_struct_sigaction_sa_sigaction=yes | ac_cv_objext=o | ac_cv_path_EGREP='/bin/grep -E' | ac_cv_path_GMSGFMT=/usr/local/bin/msgfmt | ac_cv_path_GREP=/bin/grep | ac_cv_path_M4=/usr/bin/m4 | ac_cv_path_MSGFMT=/usr/local/bin/msgfmt | ac_cv_path_MSGMERGE=/usr/local/bin/msgmerge | ac_cv_path_PERL=/usr/bin/perl | ac_cv_path_SED=/bin/sed | ac_cv_path_XGETTEXT=/usr/local/bin/xgettext | ac_cv_path_XSLTPROC=/usr/bin/xsltproc | ac_cv_path_install='/usr/bin/install -c' | ac_cv_path_mkdir=/bin/mkdir | ac_cv_prog_AWK=gawk | ac_cv_prog_CPP='gcc10 -E' | ac_cv_prog_HAVE_GIJ_IN_PATH=yes | ac_cv_prog_HAVE_JAVAC_IN_PATH=yes | ac_cv_prog_HAVE_JAVA_IN_PATH=yes | ac_cv_prog_LEX=flex | ac_cv_prog_YACC='bison -y' | ac_cv_prog_ac_ct_AR=ar | ac_cv_prog_ac_ct_CC=gcc10 | ac_cv_prog_ac_ct_RANLIB=ranlib | ac_cv_prog_cc_c11= | ac_cv_prog_cc_g=yes | ac_cv_prog_cc_stdc= | ac_cv_prog_cxx_cxx11= | ac_cv_prog_cxx_cxx98= | ac_cv_prog_cxx_g=yes | ac_cv_prog_cxx_stdcxx= | ac_cv_prog_gnu_m4_debugfile=--debugfile | ac_cv_prog_gnu_m4_gnu=yes | ac_cv_prog_lex_is_flex=yes | ac_cv_prog_lex_root=lex.yy | ac_cv_prog_lex_supports_header_opt=yes | ac_cv_prog_lex_yytext_pointer=yes | ac_cv_prog_make_make_set=yes | ac_cv_safe_to_define___extensions__=yes | ac_cv_search_clock_gettime='none required' | ac_cv_search_posix_spawn='none required' | ac_cv_should_define__xopen_source=no | ac_cv_sys_file_offset_bits=no | ac_cv_sys_largefile_CC=no | ac_cv_sys_posix_termios=yes | ac_cv_type__Bool=yes | ac_cv_type_mbstate_t=yes | ac_cv_type_mode_t=yes | ac_cv_type_nlink_t=yes | ac_cv_type_pid_t=yes | ac_cv_type_posix_spawn_file_actions_t=yes | ac_cv_type_posix_spawnattr_t=yes | ac_cv_type_pthread_rwlock_t=yes | ac_cv_type_ptrdiff_t=yes | ac_cv_type_sig_atomic_t=yes | ac_cv_type_sighandler_t=yes | ac_cv_type_sigset_t=yes | ac_cv_type_size_t=yes | ac_cv_type_struct_sched_param=yes | ac_cv_type_struct_tms=yes | ac_cv_type_uid_t=yes | ac_cv_type_volatile_sig_atomic_t=yes | ac_cv_working_alloca_h=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_libdirstems=lib,lib,lib64 | acl_cv_libext=a | acl_cv_libname_spec='lib$name' | acl_cv_libpath=LD_LIBRARY_PATH | acl_cv_library_names_spec='$libname$shrext' | acl_cv_path_LD=/usr/local/bin/ld | acl_cv_prog_gnu_ld=yes | acl_cv_rpath=done | acl_cv_shlibext=so | acl_cv_shlibpath_var=LD_LIBRARY_PATH | acl_cv_wl=-Wl, | am_cv_CC_dependencies_compiler_type=gcc3 | am_cv_CXX_dependencies_compiler_type=gcc3 | am_cv_func_iconv=yes | am_cv_func_iconv_works=yes | am_cv_langinfo_codeset=yes | am_cv_lib_iconv=no | am_cv_make_support_nested_variables=yes | ax_cv_check_cxxflags___std_cpp03=yes | ax_cv_check_cxxflags___std_cpp11=yes | ax_cv_check_cxxflags___std_cpp14=yes | ax_cv_check_cxxflags___std_cpp17=yes | ax_cv_check_cxxflags___std_cpp2a=yes | ax_cv_check_cxxflags___std_cpp98=yes | bison_cv_c_supports_posixly_correct=yes | bison_cv_cxx_supports_posixly_correct=yes | bison_cv_cxx_works=yes | gl_cv___builtin_expect=yes | gl_cv_arithmetic_hrtime_t=no | gl_cv_c_amsterdam_compiler=no | gl_cv_c_inline_effective=yes | gl_cv_c_multiarch=no | gl_cv_cc_double_expbit0='word 1 bit 20' | gl_cv_cc_float_expbit0='word 0 bit 23' | gl_cv_compiler_check_decl_option=none | gl_cv_compiler_clang=no | gl_cv_decl_ioctl_in_sys_ioctl_h=yes | gl_cv_decl_null_works=yes | gl_cv_decl_readlink_works=yes | gl_cv_double_slash_root=no | gl_cv_elf=yes | gl_cv_func___fpending=yes | gl_cv_func_dup2_works=yes | gl_cv_func_fcntl_f_dupfd_cloexec='needs runtime check' | gl_cv_func_fcntl_f_dupfd_works=yes | gl_cv_func_fopen_mode_e=yes | gl_cv_func_fopen_mode_x=yes | gl_cv_func_fopen_slash=yes | gl_cv_func_fprintf_posix=yes | gl_cv_func_frexp_no_libm=yes | gl_cv_func_frexp_works=yes | gl_cv_func_frexpl_no_libm=yes | gl_cv_func_frexpl_works=yes | gl_cv_func_getdtablesize_works=yes | gl_cv_func_getopt_gnu=yes | gl_cv_func_getopt_long_gnu=yes | gl_cv_func_getopt_posix=yes | gl_cv_func_gettimeofday_posix_signature=almost | gl_cv_func_isnand_no_libm=yes | gl_cv_func_isnanf_no_libm=yes | gl_cv_func_isnanf_works=yes | gl_cv_func_isnanl_no_libm=yes | gl_cv_func_isnanl_works=yes | gl_cv_func_iswcntrl_works=yes | gl_cv_func_iswdigit_works=yes | gl_cv_func_iswxdigit_works=yes | gl_cv_func_itold_works=yes | gl_cv_func_ldexp_no_libm=yes | gl_cv_func_ldexpl_no_libm=yes | gl_cv_func_ldexpl_works=yes | gl_cv_func_lstat_dereferences_slashed_symlink=yes | gl_cv_func_malloc_0_nonnull=1 | gl_cv_func_malloc_posix=yes | gl_cv_func_mbrtowc_C_locale_sans_EILSEQ=no | gl_cv_func_mbrtowc_empty_input=yes | gl_cv_func_mbrtowc_incomplete_state=yes | gl_cv_func_mbrtowc_nul_retval='guessing yes' | gl_cv_func_mbrtowc_null_arg1=yes | gl_cv_func_mbrtowc_null_arg2=yes | gl_cv_func_mbrtowc_retval=yes | gl_cv_func_mbrtowc_sanitycheck='guessing yes' | gl_cv_func_mbrtowc_stores_incomplete=no | gl_cv_func_memchr_works=yes | gl_cv_func_open_slash=yes | gl_cv_func_perror_works=yes | gl_cv_func_posix_spawn_file_actions_addclose_works=yes | gl_cv_func_posix_spawn_file_actions_adddup2_works=yes | gl_cv_func_posix_spawn_file_actions_addopen_works=yes | gl_cv_func_posix_spawn_works=yes | gl_cv_func_printf_attribute_flavor=system | gl_cv_func_printf_directive_a=yes | gl_cv_func_printf_directive_f=yes | gl_cv_func_printf_directive_ls=yes | gl_cv_func_printf_directive_n=yes | gl_cv_func_printf_enomem=yes | gl_cv_func_printf_flag_grouping=yes | gl_cv_func_printf_flag_leftadjust=yes | gl_cv_func_printf_flag_zero=yes | gl_cv_func_printf_infinite=yes | gl_cv_func_printf_infinite_long_double=yes | gl_cv_func_printf_long_double=yes | gl_cv_func_printf_positions=yes | gl_cv_func_printf_precision=yes | gl_cv_func_printf_sizes_c99=yes | gl_cv_func_readlink_works=yes | gl_cv_func_realpath_works=yes | gl_cv_func_rename_dest_works=yes | gl_cv_func_rename_link_works=yes | gl_cv_func_rename_slash_dst_works=yes | gl_cv_func_rename_slash_src_works=yes | gl_cv_func_setlocale_null_all_mtsafe=yes | gl_cv_func_setlocale_null_one_mtsafe=yes | gl_cv_func_signbit=yes | gl_cv_func_signbit_builtins=yes | gl_cv_func_snprintf_directive_n=yes | gl_cv_func_snprintf_posix=yes | gl_cv_func_snprintf_retval_c99=yes | gl_cv_func_snprintf_size1=yes | gl_cv_func_snprintf_truncation_c99=yes | gl_cv_func_snprintf_usable=yes | gl_cv_func_spawnattr_setschedparam=yes | gl_cv_func_spawnattr_setschedpolicy=yes | gl_cv_func_sprintf_posix=yes | gl_cv_func_stpncpy=yes | gl_cv_func_strerror_0_works=yes | gl_cv_func_strerror_r_posix_signature=no | gl_cv_func_strerror_r_works=yes | gl_cv_func_strndup_works=yes | gl_cv_func_unlink_honors_slashes=yes | gl_cv_func_unlink_parent_fails='guessing yes' | gl_cv_func_unsetenv_works=yes | gl_cv_func_vasprintf_posix=yes | gl_cv_func_vfprintf_posix=yes | gl_cv_func_vsnprintf_posix=yes | gl_cv_func_vsnprintf_usable=yes | gl_cv_func_vsnprintf_zerosize_c99=yes | gl_cv_func_vsprintf_posix=yes | gl_cv_func_wcwidth_works=yes | gl_cv_func_working_strerror=yes | gl_cv_have_clock_gettime_macro=yes | gl_cv_have_include_next=yes | gl_cv_have_weak=yes | gl_cv_header_errno_h_complete=yes | gl_cv_header_inttypes_h=yes | gl_cv_header_limits_width=yes | gl_cv_header_locale_h_needs_xlocale_h=no | gl_cv_header_locale_h_posix2001=yes | gl_cv_header_locale_has_locale_t=yes | gl_cv_header_math_huge_val_works=yes | gl_cv_header_math_nan_works=yes | gl_cv_header_stdint_h=yes | gl_cv_header_stdint_width=no | gl_cv_header_stdint_without_STDC_macros=yes | gl_cv_header_wchar_h_correct_inline=yes | gl_cv_header_working_fcntl_h=yes | gl_cv_header_working_stdint_h=yes | gl_cv_host_cpu_c_abi_32bit=no | gl_cv_iconv_nonconst=yes | gl_cv_lib_readline=yes | gl_cv_long_double_equals_double=no | gl_cv_macro_O_CLOEXEC=yes | gl_cv_minmax_in_limits_h=no | gl_cv_minmax_in_sys_param_h=yes | gl_cv_next_fcntl_h='' | gl_cv_next_getopt_h='' | gl_cv_next_iconv_h='' | gl_cv_next_inttypes_h='' | gl_cv_next_limits_h='' | gl_cv_next_locale_h='' | gl_cv_next_math_h='' | gl_cv_next_sched_h='' | gl_cv_next_signal_h='' | gl_cv_next_spawn_h='' | gl_cv_next_stdint_h='' | gl_cv_next_stdio_h='' | gl_cv_next_stdlib_h='' | gl_cv_next_string_h='' | gl_cv_next_sys_ioctl_h='' | gl_cv_next_sys_resource_h='' | gl_cv_next_sys_stat_h='' | gl_cv_next_sys_time_h='' | gl_cv_next_sys_times_h='' | gl_cv_next_sys_types_h='' | gl_cv_next_sys_wait_h='' | gl_cv_next_termios_h='' | gl_cv_next_time_h='' | gl_cv_next_unistd_h='' | gl_cv_next_wchar_h='' | gl_cv_next_wctype_h='' | gl_cv_prog_as_underscore=no | gl_cv_promoted_mode_t=mode_t | gl_cv_pthread_rwlock_rdlock_prefer_writer=no | gl_cv_rpl_alloca=yes | gl_cv_size_max=yes | gl_cv_source_line_length_unlimited=yes | gl_cv_sys_struct_lconv_ok=yes | gl_cv_sys_struct_timespec_in_time_h=yes | gl_cv_sys_struct_timeval=yes | gl_cv_sys_struct_timeval_tv_sec=yes | gl_cv_sys_struct_winsize_needs_sys_ptem_h=no | gl_cv_sys_tiocgwinsz_needs_sys_ioctl_h=yes | gl_cv_sys_tiocgwinsz_needs_termios_h=no | gl_cv_test_INT32_MAX_LT_INTMAX_MAX=yes | gl_cv_test_INT64_MAX_EQ_LONG_MAX=yes | gl_cv_test_UINT32_MAX_LT_UINTMAX_MAX=yes | gl_cv_test_UINT64_MAX_EQ_ULONG_MAX=yes | gl_cv_type_max_align_t=yes | gl_cv_type_sigset_t=yes | gl_cv_type_wctrans_t=yes | gl_cv_type_wctype_t=yes | gl_cv_type_wint_t_large_enough=yes | gl_cv_warn_cxx__Werror__Wunknown_warning_option=no | gl_cv_warn_cxx__fno_exceptions=yes | gt_cv_c_intmax_t=yes | gt_cv_c_wchar_t=yes | gt_cv_c_wint_t=yes | gt_cv_func_CFLocaleCopyCurrent=no | gt_cv_func_CFPreferencesCopyAppValue=no | gt_cv_func_gnugettext2_libc=yes | gt_cv_func_unsetenv_ret=int | gt_cv_locale_fr=none | gt_cv_locale_fr_utf8=fr_FR.UTF-8 | gt_cv_locale_ja=none | gt_cv_locale_zh_CN=none | gt_cv_ssize_t=yes | gt_cv_var_environ_declaration=yes | lv_cv_gcc_pragma_push_works=yes | | ## ----------------- ## | ## Output variables. ## | ## ----------------- ## | | ACLOCAL='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing aclocal-1.16' | ALLOCA='' | ALLOCA_H='lib/alloca.h' | AMDEPBACKSLASH='\' | AMDEP_FALSE='#' | AMDEP_TRUE='' | AMTAR='$${TAR-tar}' | AM_BACKSLASH='\' | AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' | AM_DEFAULT_VERBOSITY='0' | AM_V='$(V)' | APPLE_UNIVERSAL_BUILD='0' | AR='ar' | ARFLAGS='cr' | ASM_SYMBOL_PREFIX='""' | AUTOCONF='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing autoconf' | AUTOHEADER='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing autoheader' | AUTOM4TE='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing autom4te' | AUTOMAKE='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing automake-1.16' | AWK='gawk' | BISON_CXX_WORKS=':' | BISON_C_WORKS=':' | BISON_LOCALEDIR='/usr/local/share/locale' | BITSIZEOF_PTRDIFF_T='' | BITSIZEOF_SIG_ATOMIC_T='' | BITSIZEOF_SIZE_T='' | BITSIZEOF_WCHAR_T='' | BITSIZEOF_WINT_T='' | CC='gcc10' | CCDEPMODE='depmode=gcc3' | CFLAGS='-march=znver1 -mtune=znver1 -O3' | CFLAG_VISIBILITY='' | CLASSPATH='' | CLASSPATH_SEPARATOR=':' | CONFIG_INCLUDE='lib/config.h' | CONF_JAVA='gij' | CONF_JAVAC='javac -target 1.7 -source 1.7' | CPP='gcc10 -E' | CPPFLAGS='' | CROSS_COMPILING_FALSE='' | CROSS_COMPILING_TRUE='#' | CXX03_CXXFLAGS='-std=c++03' | CXX11_CXXFLAGS='-std=c++11' | CXX14_CXXFLAGS='-std=c++14' | CXX17_CXXFLAGS='-std=c++17' | CXX2A_CXXFLAGS='-std=c++2a' | CXX98_CXXFLAGS='-std=c++98' | CXX='g++10' | CXXDEPMODE='depmode=gcc3' | CXXFLAGS='-march=znver1 -mtune=znver1 -O3' | CXX_COMPILER_POSIXLY_CORRECT='true' | CYGPATH_W='echo' | C_COMPILER_POSIXLY_CORRECT='true' | DC='' | DCFLAGS='' | DEFS='' | DEPDIR='.deps' | DOT='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing dot' | ECHO_C='' | ECHO_N='-n' | ECHO_T='' | EGREP='/bin/grep -E' | EMULTIHOP_HIDDEN='' | EMULTIHOP_VALUE='' | ENABLE_BISTROMATHIC_FALSE='#' | ENABLE_BISTROMATHIC_TRUE='' | ENABLE_CXX11_FALSE='#' | ENABLE_CXX11_TRUE='' | ENABLE_CXX14_FALSE='#' | ENABLE_CXX14_TRUE='' | ENABLE_CXX_FALSE='#' | ENABLE_CXX_TRUE='' | ENABLE_D_FALSE='' | ENABLE_D_TRUE='#' | ENABLE_GCC_WARNINGS_FALSE='' | ENABLE_GCC_WARNINGS_TRUE='#' | ENABLE_JAVA_FALSE='#' | ENABLE_JAVA_TRUE='' | ENABLE_YACC_FALSE='#' | ENABLE_YACC_TRUE='' | ENOLINK_HIDDEN='' | ENOLINK_VALUE='' | EOVERFLOW_HIDDEN='' | EOVERFLOW_VALUE='' | ERRNO_H='' | EXEEXT='' | FLEX_CXX_WORKS_FALSE='#' | FLEX_CXX_WORKS_TRUE='' | FLEX_SCANNER_CXXFLAGS='' | FLEX_WORKS_FALSE='#' | FLEX_WORKS_TRUE='' | FLOAT_H='' | GCC='yes' | GETOPT_CDEFS_H='' | GETOPT_H='' | GETTEXT_MACRO_VERSION='0.19' | GL_COND_LIBTOOL_FALSE='' | GL_COND_LIBTOOL_TRUE='#' | GL_GENERATE_ALLOCA_H_FALSE='#' | GL_GENERATE_ALLOCA_H_TRUE='' | GL_GENERATE_ERRNO_H_FALSE='' | GL_GENERATE_ERRNO_H_TRUE='#' | GL_GENERATE_FLOAT_H_FALSE='' | GL_GENERATE_FLOAT_H_TRUE='#' | GL_GENERATE_ICONV_H_FALSE='#' | GL_GENERATE_ICONV_H_TRUE='' | GL_GENERATE_LIMITS_H_FALSE='#' | GL_GENERATE_LIMITS_H_TRUE='' | GL_GENERATE_STDBOOL_H_FALSE='' | GL_GENERATE_STDBOOL_H_TRUE='#' | GL_GENERATE_STDDEF_H_FALSE='' | GL_GENERATE_STDDEF_H_TRUE='#' | GL_GENERATE_STDINT_H_FALSE='#' | GL_GENERATE_STDINT_H_TRUE='' | GL_GENERATE_TEXTSTYLE_H_FALSE='#' | GL_GENERATE_TEXTSTYLE_H_TRUE='' | GMSGFMT='/usr/local/bin/msgfmt' | GMSGFMT_015='/usr/local/bin/msgfmt' | GNULIB_ACCESS='0' | GNULIB_ACOSF='0' | GNULIB_ACOSL='0' | GNULIB_ASINF='0' | GNULIB_ASINL='0' | GNULIB_ATAN2F='0' | GNULIB_ATANF='0' | GNULIB_ATANL='0' | GNULIB_ATOLL='0' | GNULIB_BTOWC='0' | GNULIB_CALLOC_POSIX='1' | GNULIB_CANONICALIZE_FILE_NAME='1' | GNULIB_CBRT='0' | GNULIB_CBRTF='0' | GNULIB_CBRTL='0' | GNULIB_CEIL='0' | GNULIB_CEILF='0' | GNULIB_CEILL='0' | GNULIB_CHDIR='0' | GNULIB_CHOWN='0' | GNULIB_CLOSE='1' | GNULIB_COPYSIGN='0' | GNULIB_COPYSIGNF='0' | GNULIB_COPYSIGNL='0' | GNULIB_COPY_FILE_RANGE='0' | GNULIB_COSF='0' | GNULIB_COSHF='0' | GNULIB_COSL='0' | GNULIB_CREAT='0' | GNULIB_CTIME='0' | GNULIB_DPRINTF='0' | GNULIB_DUP2='1' | GNULIB_DUP3='0' | GNULIB_DUP='0' | GNULIB_DUPLOCALE='0' | GNULIB_ENVIRON='1' | GNULIB_EUIDACCESS='0' | GNULIB_EXP2='0' | GNULIB_EXP2F='0' | GNULIB_EXP2L='0' | GNULIB_EXPF='0' | GNULIB_EXPL='0' | GNULIB_EXPLICIT_BZERO='0' | GNULIB_EXPM1='0' | GNULIB_EXPM1F='0' | GNULIB_EXPM1L='0' | GNULIB_FABSF='0' | GNULIB_FABSL='0' | GNULIB_FACCESSAT='0' | GNULIB_FCHDIR='0' | GNULIB_FCHMODAT='0' | GNULIB_FCHOWNAT='0' | GNULIB_FCLOSE='0' | GNULIB_FCNTL='1' | GNULIB_FDATASYNC='0' | GNULIB_FDOPEN='0' | GNULIB_FFLUSH='0' | GNULIB_FFSL='0' | GNULIB_FFSLL='0' | GNULIB_FGETC='1' | GNULIB_FGETS='1' | GNULIB_FLOOR='0' | GNULIB_FLOORF='0' | GNULIB_FLOORL='0' | GNULIB_FMA='0' | GNULIB_FMAF='0' | GNULIB_FMAL='0' | GNULIB_FMOD='0' | GNULIB_FMODF='0' | GNULIB_FMODL='0' | GNULIB_FOPEN='1' | GNULIB_FPRINTF='1' | GNULIB_FPRINTF_POSIX='1' | GNULIB_FPURGE='0' | GNULIB_FPUTC='1' | GNULIB_FPUTS='1' | GNULIB_FREAD='1' | GNULIB_FREOPEN='0' | GNULIB_FREXP='1' | GNULIB_FREXPF='0' | GNULIB_FREXPL='1' | GNULIB_FSCANF='1' | GNULIB_FSEEK='0' | GNULIB_FSEEKO='0' | GNULIB_FSTAT='0' | GNULIB_FSTATAT='0' | GNULIB_FSYNC='1' | GNULIB_FTELL='0' | GNULIB_FTELLO='0' | GNULIB_FTRUNCATE='0' | GNULIB_FUTIMENS='0' | GNULIB_FWRITE='1' | GNULIB_GETC='1' | GNULIB_GETCHAR='1' | GNULIB_GETCWD='0' | GNULIB_GETDELIM='0' | GNULIB_GETDOMAINNAME='0' | GNULIB_GETDTABLESIZE='1' | GNULIB_GETENTROPY='0' | GNULIB_GETGROUPS='0' | GNULIB_GETHOSTNAME='0' | GNULIB_GETLINE='0' | GNULIB_GETLOADAVG='0' | GNULIB_GETLOGIN='0' | GNULIB_GETLOGIN_R='0' | GNULIB_GETOPT_POSIX='1' | GNULIB_GETPAGESIZE='0' | GNULIB_GETPASS='0' | GNULIB_GETRUSAGE='1' | GNULIB_GETSUBOPT='0' | GNULIB_GETTIMEOFDAY='1' | GNULIB_GETUMASK='0' | GNULIB_GETUSERSHELL='0' | GNULIB_GL_UNISTD_H_GETOPT='' | GNULIB_GRANTPT='0' | GNULIB_GROUP_MEMBER='0' | GNULIB_HYPOT='0' | GNULIB_HYPOTF='0' | GNULIB_HYPOTL='0' | GNULIB_ICONV='1' | GNULIB_ILOGB='0' | GNULIB_ILOGBF='0' | GNULIB_ILOGBL='0' | GNULIB_IMAXABS='0' | GNULIB_IMAXDIV='0' | GNULIB_IOCTL='0' | GNULIB_ISATTY='0' | GNULIB_ISFINITE='0' | GNULIB_ISINF='0' | GNULIB_ISNAN='1' | GNULIB_ISNAND='1' | GNULIB_ISNANF='1' | GNULIB_ISNANL='1' | GNULIB_ISWBLANK='1' | GNULIB_ISWCTYPE='0' | GNULIB_ISWDIGIT='1' | GNULIB_ISWXDIGIT='1' | GNULIB_LCHMOD='0' | GNULIB_LCHOWN='0' | GNULIB_LDEXPF='0' | GNULIB_LDEXPL='1' | GNULIB_LINK='0' | GNULIB_LINKAT='0' | GNULIB_LOCALECONV='0' | GNULIB_LOCALENAME='0' | GNULIB_LOCALTIME='0' | GNULIB_LOG10='0' | GNULIB_LOG10F='0' | GNULIB_LOG10L='0' | GNULIB_LOG1P='0' | GNULIB_LOG1PF='0' | GNULIB_LOG1PL='0' | GNULIB_LOG2='0' | GNULIB_LOG2F='0' | GNULIB_LOG2L='0' | GNULIB_LOG='0' | GNULIB_LOGB='0' | GNULIB_LOGBF='0' | GNULIB_LOGBL='0' | GNULIB_LOGF='0' | GNULIB_LOGL='0' | GNULIB_LSEEK='0' | GNULIB_LSTAT='0' | GNULIB_MALLOC_POSIX='1' | GNULIB_MBRLEN='0' | GNULIB_MBRTOWC='1' | GNULIB_MBSCASECMP='0' | GNULIB_MBSCASESTR='0' | GNULIB_MBSCHR='0' | GNULIB_MBSCSPN='0' | GNULIB_MBSINIT='1' | GNULIB_MBSLEN='0' | GNULIB_MBSNCASECMP='0' | GNULIB_MBSNLEN='0' | GNULIB_MBSNRTOWCS='0' | GNULIB_MBSPBRK='0' | GNULIB_MBSPCASECMP='0' | GNULIB_MBSRCHR='0' | GNULIB_MBSRTOWCS='0' | GNULIB_MBSSEP='0' | GNULIB_MBSSPN='0' | GNULIB_MBSSTR='0' | GNULIB_MBSTOK_R='0' | GNULIB_MBTOWC='0' | GNULIB_MEMCHR='1' | GNULIB_MEMMEM='0' | GNULIB_MEMPCPY='0' | GNULIB_MEMRCHR='0' | GNULIB_MKDIRAT='0' | GNULIB_MKDTEMP='0' | GNULIB_MKFIFO='0' | GNULIB_MKFIFOAT='0' | GNULIB_MKNOD='0' | GNULIB_MKNODAT='0' | GNULIB_MKOSTEMP='0' | GNULIB_MKOSTEMPS='0' | GNULIB_MKSTEMP='0' | GNULIB_MKSTEMPS='0' | GNULIB_MKTIME='0' | GNULIB_MODF='0' | GNULIB_MODFF='0' | GNULIB_MODFL='0' | GNULIB_NANOSLEEP='0' | GNULIB_NONBLOCKING='0' | GNULIB_OBSTACK_PRINTF='1' | GNULIB_OBSTACK_PRINTF_POSIX='0' | GNULIB_OPEN='1' | GNULIB_OPENAT='0' | GNULIB_OVERRIDES_STRUCT_STAT='0' | GNULIB_OVERRIDES_WINT_T='0' | GNULIB_PCLOSE='0' | GNULIB_PERROR='1' | GNULIB_PIPE2='1' | GNULIB_PIPE='0' | GNULIB_POPEN='0' | GNULIB_POSIX_OPENPT='0' | GNULIB_POSIX_SPAWN='0' | GNULIB_POSIX_SPAWNATTR_DESTROY='1' | GNULIB_POSIX_SPAWNATTR_GETFLAGS='0' | GNULIB_POSIX_SPAWNATTR_GETPGROUP='0' | GNULIB_POSIX_SPAWNATTR_GETSCHEDPARAM='0' | GNULIB_POSIX_SPAWNATTR_GETSCHEDPOLICY='0' | GNULIB_POSIX_SPAWNATTR_GETSIGDEFAULT='0' | GNULIB_POSIX_SPAWNATTR_GETSIGMASK='0' | GNULIB_POSIX_SPAWNATTR_INIT='1' | GNULIB_POSIX_SPAWNATTR_SETFLAGS='1' | GNULIB_POSIX_SPAWNATTR_SETPGROUP='0' | GNULIB_POSIX_SPAWNATTR_SETSCHEDPARAM='0' | GNULIB_POSIX_SPAWNATTR_SETSCHEDPOLICY='0' | GNULIB_POSIX_SPAWNATTR_SETSIGDEFAULT='0' | GNULIB_POSIX_SPAWNATTR_SETSIGMASK='1' | GNULIB_POSIX_SPAWNP='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR='0' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDFCHDIR='0' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_DESTROY='1' | GNULIB_POSIX_SPAWN_FILE_ACTIONS_INIT='1' | GNULIB_POWF='0' | GNULIB_PREAD='0' | GNULIB_PRINTF='1' | GNULIB_PRINTF_POSIX='1' | GNULIB_PTHREAD_SIGMASK='0' | GNULIB_PTSNAME='0' | GNULIB_PTSNAME_R='0' | GNULIB_PUTC='1' | GNULIB_PUTCHAR='1' | GNULIB_PUTENV='0' | GNULIB_PUTS='1' | GNULIB_PWRITE='0' | GNULIB_QSORT_R='0' | GNULIB_RAISE='1' | GNULIB_RANDOM='0' | GNULIB_RANDOM_R='0' | GNULIB_RAWMEMCHR='0' | GNULIB_READ='0' | GNULIB_READLINK='1' | GNULIB_READLINKAT='0' | GNULIB_REALLOCARRAY='0' | GNULIB_REALLOC_POSIX='1' | GNULIB_REALPATH='1' | GNULIB_REMAINDER='0' | GNULIB_REMAINDERF='0' | GNULIB_REMAINDERL='0' | GNULIB_REMOVE='0' | GNULIB_RENAME='1' | GNULIB_RENAMEAT='0' | GNULIB_RINT='0' | GNULIB_RINTF='0' | GNULIB_RINTL='0' | GNULIB_RMDIR='0' | GNULIB_ROUND='0' | GNULIB_ROUNDF='0' | GNULIB_ROUNDL='0' | GNULIB_RPMATCH='0' | GNULIB_SCANF='1' | GNULIB_SCHED_YIELD='0' | GNULIB_SECURE_GETENV='0' | GNULIB_SETENV='0' | GNULIB_SETHOSTNAME='0' | GNULIB_SETLOCALE='0' | GNULIB_SETLOCALE_NULL='1' | GNULIB_SIGABBREV_NP='0' | GNULIB_SIGACTION='1' | GNULIB_SIGDESCR_NP='0' | GNULIB_SIGNAL_H_SIGPIPE='0' | GNULIB_SIGNBIT='1' | GNULIB_SIGPROCMASK='1' | GNULIB_SINF='0' | GNULIB_SINHF='0' | GNULIB_SINL='0' | GNULIB_SLEEP='0' | GNULIB_SNPRINTF='1' | GNULIB_SPRINTF_POSIX='1' | GNULIB_SQRTF='0' | GNULIB_SQRTL='0' | GNULIB_STAT='0' | GNULIB_STDIO_H_NONBLOCKING='0' | GNULIB_STDIO_H_SIGPIPE='0' | GNULIB_STPCPY='1' | GNULIB_STPNCPY='1' | GNULIB_STRCASESTR='0' | GNULIB_STRCHRNUL='0' | GNULIB_STRDUP='1' | GNULIB_STRERROR='1' | GNULIB_STRERRORNAME_NP='0' | GNULIB_STRERROR_R='0' | GNULIB_STRFTIME='0' | GNULIB_STRNCAT='0' | GNULIB_STRNDUP='1' | GNULIB_STRNLEN='0' | GNULIB_STRPBRK='0' | GNULIB_STRPTIME='0' | GNULIB_STRSEP='0' | GNULIB_STRSIGNAL='0' | GNULIB_STRSTR='0' | GNULIB_STRTOD='0' | GNULIB_STRTOIMAX='0' | GNULIB_STRTOK_R='0' | GNULIB_STRTOLD='0' | GNULIB_STRTOLL='0' | GNULIB_STRTOULL='0' | GNULIB_STRTOUMAX='0' | GNULIB_STRVERSCMP='1' | GNULIB_SYMLINK='0' | GNULIB_SYMLINKAT='0' | GNULIB_SYSTEM_POSIX='0' | GNULIB_TANF='0' | GNULIB_TANHF='0' | GNULIB_TANL='0' | GNULIB_TCGETSID='0' | GNULIB_TIMEGM='0' | GNULIB_TIMES='0' | GNULIB_TIME_R='0' | GNULIB_TIME_RZ='0' | GNULIB_TMPFILE='0' | GNULIB_TOWCTRANS='0' | GNULIB_TRUNC='0' | GNULIB_TRUNCATE='0' | GNULIB_TRUNCF='0' | GNULIB_TRUNCL='0' | GNULIB_TTYNAME_R='0' | GNULIB_TZSET='0' | GNULIB_UNISTD_H_NONBLOCKING='0' | GNULIB_UNISTD_H_SIGPIPE='0' | GNULIB_UNLINK='1' | GNULIB_UNLINKAT='0' | GNULIB_UNLOCKPT='0' | GNULIB_UNSETENV='1' | GNULIB_USLEEP='0' | GNULIB_UTIMENSAT='0' | GNULIB_VASPRINTF='1' | GNULIB_VDPRINTF='0' | GNULIB_VFPRINTF='1' | GNULIB_VFPRINTF_POSIX='0' | GNULIB_VFSCANF='0' | GNULIB_VPRINTF='1' | GNULIB_VPRINTF_POSIX='0' | GNULIB_VSCANF='0' | GNULIB_VSNPRINTF='1' | GNULIB_VSPRINTF_POSIX='1' | GNULIB_WAITPID='1' | GNULIB_WCPCPY='0' | GNULIB_WCPNCPY='0' | GNULIB_WCRTOMB='0' | GNULIB_WCSCASECMP='0' | GNULIB_WCSCAT='0' | GNULIB_WCSCHR='0' | GNULIB_WCSCMP='0' | GNULIB_WCSCOLL='0' | GNULIB_WCSCPY='0' | GNULIB_WCSCSPN='0' | GNULIB_WCSDUP='0' | GNULIB_WCSFTIME='0' | GNULIB_WCSLEN='0' | GNULIB_WCSNCASECMP='0' | GNULIB_WCSNCAT='0' | GNULIB_WCSNCMP='0' | GNULIB_WCSNCPY='0' | GNULIB_WCSNLEN='0' | GNULIB_WCSNRTOMBS='0' | GNULIB_WCSPBRK='0' | GNULIB_WCSRCHR='0' | GNULIB_WCSRTOMBS='0' | GNULIB_WCSSPN='0' | GNULIB_WCSSTR='0' | GNULIB_WCSTOK='0' | GNULIB_WCSWIDTH='0' | GNULIB_WCSXFRM='0' | GNULIB_WCTOB='0' | GNULIB_WCTOMB='0' | GNULIB_WCTRANS='0' | GNULIB_WCTYPE='0' | GNULIB_WCWIDTH='1' | GNULIB_WMEMCHR='0' | GNULIB_WMEMCMP='0' | GNULIB_WMEMCPY='0' | GNULIB_WMEMMOVE='0' | GNULIB_WMEMPCPY='0' | GNULIB_WMEMSET='0' | GNULIB_WRITE='0' | GNULIB__EXIT='0' | GREP='/bin/grep' | HAVE_ACOSF='1' | HAVE_ACOSL='1' | HAVE_ALLOCA_H='1' | HAVE_ASINF='1' | HAVE_ASINL='1' | HAVE_ATAN2F='1' | HAVE_ATANF='1' | HAVE_ATANL='1' | HAVE_ATOLL='1' | HAVE_BTOWC='1' | HAVE_C99_STDINT_H='1' | HAVE_CANONICALIZE_FILE_NAME='1' | HAVE_CBRT='1' | HAVE_CBRTF='1' | HAVE_CBRTL='1' | HAVE_CHOWN='1' | HAVE_COPYSIGN='1' | HAVE_COPYSIGNL='1' | HAVE_COPY_FILE_RANGE='1' | HAVE_COSF='1' | HAVE_COSHF='1' | HAVE_COSL='1' | HAVE_CRTDEFS_H='0' | HAVE_DECL_ACOSL='1' | HAVE_DECL_ASINL='1' | HAVE_DECL_ATANL='1' | HAVE_DECL_CBRTF='1' | HAVE_DECL_CBRTL='1' | HAVE_DECL_CEILF='1' | HAVE_DECL_CEILL='1' | HAVE_DECL_COPYSIGNF='1' | HAVE_DECL_COSL='1' | HAVE_DECL_ENVIRON='1' | HAVE_DECL_EXP2='1' | HAVE_DECL_EXP2F='1' | HAVE_DECL_EXP2L='1' | HAVE_DECL_EXPL='1' | HAVE_DECL_EXPM1L='1' | HAVE_DECL_FCHDIR='1' | HAVE_DECL_FDATASYNC='1' | HAVE_DECL_FLOORF='1' | HAVE_DECL_FLOORL='1' | HAVE_DECL_FPURGE='1' | HAVE_DECL_FREXPL='1' | HAVE_DECL_FSEEKO='1' | HAVE_DECL_FTELLO='1' | HAVE_DECL_GETDELIM='1' | HAVE_DECL_GETDOMAINNAME='1' | HAVE_DECL_GETLINE='1' | HAVE_DECL_GETLOADAVG='1' | HAVE_DECL_GETLOGIN='1' | HAVE_DECL_GETLOGIN_R='1' | HAVE_DECL_GETPAGESIZE='1' | HAVE_DECL_GETUSERSHELL='1' | HAVE_DECL_IMAXABS='1' | HAVE_DECL_IMAXDIV='1' | HAVE_DECL_INITSTATE='1' | HAVE_DECL_LDEXPL='1' | HAVE_DECL_LOCALTIME_R='1' | HAVE_DECL_LOG10L='1' | HAVE_DECL_LOG2='1' | HAVE_DECL_LOG2F='1' | HAVE_DECL_LOG2L='1' | HAVE_DECL_LOGB='1' | HAVE_DECL_LOGL='1' | HAVE_DECL_MEMMEM='1' | HAVE_DECL_MEMRCHR='1' | HAVE_DECL_OBSTACK_PRINTF='1' | HAVE_DECL_REMAINDER='1' | HAVE_DECL_REMAINDERL='1' | HAVE_DECL_RINTF='1' | HAVE_DECL_ROUND='1' | HAVE_DECL_ROUNDF='1' | HAVE_DECL_ROUNDL='1' | HAVE_DECL_SETENV='1' | HAVE_DECL_SETHOSTNAME='1' | HAVE_DECL_SETSTATE='1' | HAVE_DECL_SINL='1' | HAVE_DECL_SNPRINTF='1' | HAVE_DECL_SQRTL='1' | HAVE_DECL_STRDUP='1' | HAVE_DECL_STRERROR_R='1' | HAVE_DECL_STRNDUP='1' | HAVE_DECL_STRNLEN='1' | HAVE_DECL_STRSIGNAL='1' | HAVE_DECL_STRTOIMAX='1' | HAVE_DECL_STRTOK_R='1' | HAVE_DECL_STRTOUMAX='1' | HAVE_DECL_TANL='1' | HAVE_DECL_TCGETSID='1' | HAVE_DECL_TRUNC='1' | HAVE_DECL_TRUNCATE='1' | HAVE_DECL_TRUNCF='1' | HAVE_DECL_TRUNCL='1' | HAVE_DECL_TTYNAME_R='1' | HAVE_DECL_UNSETENV='1' | HAVE_DECL_VSNPRINTF='1' | HAVE_DECL_WCTOB='1' | HAVE_DECL_WCWIDTH='1' | HAVE_DPRINTF='1' | HAVE_DUP3='1' | HAVE_DUPLOCALE='1' | HAVE_EUIDACCESS='1' | HAVE_EXPF='1' | HAVE_EXPL='1' | HAVE_EXPLICIT_BZERO='1' | HAVE_EXPM1='1' | HAVE_EXPM1F='1' | HAVE_FABSF='1' | HAVE_FABSL='1' | HAVE_FACCESSAT='1' | HAVE_FCHDIR='1' | HAVE_FCHMODAT='1' | HAVE_FCHOWNAT='1' | HAVE_FCNTL='1' | HAVE_FDATASYNC='1' | HAVE_FEATURES_H='1' | HAVE_FFSL='1' | HAVE_FFSLL='1' | HAVE_FMA='1' | HAVE_FMAF='1' | HAVE_FMAL='1' | HAVE_FMODF='1' | HAVE_FMODL='1' | HAVE_FREELOCALE='1' | HAVE_FREXPF='1' | HAVE_FSEEKO='1' | HAVE_FSTATAT='1' | HAVE_FSYNC='1' | HAVE_FTELLO='1' | HAVE_FTRUNCATE='1' | HAVE_FUTIMENS='1' | HAVE_GCJ_C='' | HAVE_GCJ_IN_PATH='' | HAVE_GETDTABLESIZE='1' | HAVE_GETENTROPY='1' | HAVE_GETGROUPS='1' | HAVE_GETHOSTNAME='1' | HAVE_GETLOGIN='1' | HAVE_GETOPT_H='1' | HAVE_GETPAGESIZE='1' | HAVE_GETPASS='1' | HAVE_GETRUSAGE='1' | HAVE_GETSUBOPT='1' | HAVE_GETTIMEOFDAY='1' | HAVE_GETUMASK='1' | HAVE_GIJ='1' | HAVE_GIJ_IN_PATH='yes' | HAVE_GRANTPT='1' | HAVE_GROUP_MEMBER='1' | HAVE_HYPOTF='1' | HAVE_HYPOTL='1' | HAVE_ILOGB='1' | HAVE_ILOGBF='1' | HAVE_ILOGBL='1' | HAVE_IMAXDIV_T='1' | HAVE_INITSTATE='1' | HAVE_INTTYPES_H='1' | HAVE_ISNAND='1' | HAVE_ISNANF='1' | HAVE_ISNANL='1' | HAVE_ISWBLANK='1' | HAVE_ISWCNTRL='1' | HAVE_JAVA='' | HAVE_JAVAC='1' | HAVE_JAVAC_ENVVAR='' | HAVE_JAVAC_IN_PATH='yes' | HAVE_JAVA_ENVVAR='' | HAVE_JAVA_IN_PATH='yes' | HAVE_JIKES='' | HAVE_JIKES_IN_PATH='' | HAVE_JRE='' | HAVE_JRE_IN_PATH='' | HAVE_JVIEW='' | HAVE_JVIEW_IN_PATH='' | HAVE_LCHMOD='1' | HAVE_LCHOWN='1' | HAVE_LDEXPF='1' | HAVE_LIBTEXTSTYLE='no' | HAVE_LINK='1' | HAVE_LINKAT='1' | HAVE_LOG10F='1' | HAVE_LOG10L='1' | HAVE_LOG1P='1' | HAVE_LOG1PF='1' | HAVE_LOG1PL='1' | HAVE_LOGBF='1' | HAVE_LOGBL='1' | HAVE_LOGF='1' | HAVE_LOGL='1' | HAVE_LSTAT='1' | HAVE_MAX_ALIGN_T='1' | HAVE_MBRLEN='1' | HAVE_MBRTOWC='1' | HAVE_MBSINIT='1' | HAVE_MBSLEN='0' | HAVE_MBSNRTOWCS='1' | HAVE_MBSRTOWCS='1' | HAVE_MBTOWC='1' | HAVE_MEMPCPY='1' | HAVE_MKDIRAT='1' | HAVE_MKDTEMP='1' | HAVE_MKFIFO='1' | HAVE_MKFIFOAT='1' | HAVE_MKNOD='1' | HAVE_MKNODAT='1' | HAVE_MKOSTEMP='1' | HAVE_MKOSTEMPS='1' | HAVE_MKSTEMP='1' | HAVE_MKSTEMPS='1' | HAVE_MODFF='1' | HAVE_MODFL='1' | HAVE_MSVC_INVALID_PARAMETER_HANDLER='0' | HAVE_NANOSLEEP='1' | HAVE_NEWLOCALE='1' | HAVE_OPENAT='1' | HAVE_OS_H='0' | HAVE_PCLOSE='1' | HAVE_PIPE2='1' | HAVE_PIPE='1' | HAVE_POPEN='1' | HAVE_POSIX_OPENPT='1' | HAVE_POSIX_SIGNALBLOCKING='1' | HAVE_POSIX_SPAWN='1' | HAVE_POSIX_SPAWNATTR_T='1' | HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR='1' | HAVE_POSIX_SPAWN_FILE_ACTIONS_ADDFCHDIR='1' | HAVE_POSIX_SPAWN_FILE_ACTIONS_T='1' | HAVE_POWF='1' | HAVE_PREAD='1' | HAVE_PTHREAD_SIGMASK='1' | HAVE_PTSNAME='1' | HAVE_PTSNAME_R='1' | HAVE_PWRITE='1' | HAVE_QSORT_R='1' | HAVE_RAISE='1' | HAVE_RANDOM='1' | HAVE_RANDOM_H='1' | HAVE_RANDOM_R='1' | HAVE_RAWMEMCHR='1' | HAVE_READLINK='1' | HAVE_READLINKAT='1' | HAVE_REALLOCARRAY='1' | HAVE_REALPATH='1' | HAVE_REMAINDER='1' | HAVE_REMAINDERF='1' | HAVE_RENAMEAT='1' | HAVE_RINT='1' | HAVE_RINTL='1' | HAVE_RPMATCH='1' | HAVE_SAME_LONG_DOUBLE_AS_DOUBLE='0' | HAVE_SCHED_H='1' | HAVE_SCHED_YIELD='1' | HAVE_SECURE_GETENV='1' | HAVE_SETENV='1' | HAVE_SETHOSTNAME='1' | HAVE_SETSTATE='1' | HAVE_SIGABBREV_NP='1' | HAVE_SIGACTION='1' | HAVE_SIGDESCR_NP='1' | HAVE_SIGHANDLER_T='1' | HAVE_SIGINFO_T='1' | HAVE_SIGNED_SIG_ATOMIC_T='' | HAVE_SIGNED_WCHAR_T='' | HAVE_SIGNED_WINT_T='' | HAVE_SIGSET_T='1' | HAVE_SINF='1' | HAVE_SINHF='1' | HAVE_SINL='1' | HAVE_SLEEP='1' | HAVE_SPAWN_H='1' | HAVE_SQRTF='1' | HAVE_SQRTL='1' | HAVE_STDINT_H='1' | HAVE_STPCPY='1' | HAVE_STPNCPY='1' | HAVE_STRCASESTR='1' | HAVE_STRCHRNUL='1' | HAVE_STRERRORNAME_NP='1' | HAVE_STRPBRK='1' | HAVE_STRPTIME='1' | HAVE_STRSEP='1' | HAVE_STRTOD='1' | HAVE_STRTOLD='1' | HAVE_STRTOLL='1' | HAVE_STRTOULL='1' | HAVE_STRUCT_RANDOM_DATA='1' | HAVE_STRUCT_SCHED_PARAM='1' | HAVE_STRUCT_SIGACTION_SA_SIGACTION='1' | HAVE_STRUCT_TIMEVAL='1' | HAVE_STRUCT_TMS='1' | HAVE_STRVERSCMP='1' | HAVE_SYMLINK='1' | HAVE_SYMLINKAT='1' | HAVE_SYS_BITYPES_H='0' | HAVE_SYS_CDEFS_H='1' | HAVE_SYS_INTTYPES_H='0' | HAVE_SYS_IOCTL_H='1' | HAVE_SYS_LOADAVG_H='0' | HAVE_SYS_PARAM_H='0' | HAVE_SYS_RESOURCE_H='1' | HAVE_SYS_TIMES_H='1' | HAVE_SYS_TIME_H='1' | HAVE_SYS_TYPES_H='1' | HAVE_TANF='1' | HAVE_TANHF='1' | HAVE_TANL='1' | HAVE_TERMIOS_H='1' | HAVE_TIMEGM='1' | HAVE_TIMES='1' | HAVE_TIMEZONE_T='0' | HAVE_TYPE_VOLATILE_SIG_ATOMIC_T='1' | HAVE_UNISTD_H='1' | HAVE_UNLINKAT='1' | HAVE_UNLOCKPT='1' | HAVE_USLEEP='1' | HAVE_UTIMENSAT='1' | HAVE_VASPRINTF='1' | HAVE_VDPRINTF='1' | HAVE_VISIBILITY='' | HAVE_WCHAR_H='1' | HAVE_WCHAR_T='1' | HAVE_WCPCPY='1' | HAVE_WCPNCPY='1' | HAVE_WCRTOMB='1' | HAVE_WCSCASECMP='1' | HAVE_WCSCAT='1' | HAVE_WCSCHR='1' | HAVE_WCSCMP='1' | HAVE_WCSCOLL='1' | HAVE_WCSCPY='1' | HAVE_WCSCSPN='1' | HAVE_WCSDUP='1' | HAVE_WCSFTIME='1' | HAVE_WCSLEN='1' | HAVE_WCSNCASECMP='1' | HAVE_WCSNCAT='1' | HAVE_WCSNCMP='1' | HAVE_WCSNCPY='1' | HAVE_WCSNLEN='1' | HAVE_WCSNRTOMBS='1' | HAVE_WCSPBRK='1' | HAVE_WCSRCHR='1' | HAVE_WCSRTOMBS='1' | HAVE_WCSSPN='1' | HAVE_WCSSTR='1' | HAVE_WCSTOK='1' | HAVE_WCSWIDTH='1' | HAVE_WCSXFRM='1' | HAVE_WCTRANS_T='1' | HAVE_WCTYPE_H='1' | HAVE_WCTYPE_T='1' | HAVE_WINSOCK2_H='0' | HAVE_WINT_T='1' | HAVE_WMEMCHR='1' | HAVE_WMEMCMP='1' | HAVE_WMEMCPY='1' | HAVE_WMEMMOVE='1' | HAVE_WMEMPCPY='1' | HAVE_WMEMSET='1' | HAVE_XLOCALE_H='1' | HAVE__BOOL='1' | HAVE__EXIT='1' | HELP2MAN='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing help2man' | ICONV_CONST='' | ICONV_H='lib/iconv.h' | INCLUDE_NEXT='include_next' | INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' | INSTALL_DATA='${INSTALL} -m 644' | INSTALL_PROGRAM='${INSTALL}' | INSTALL_PROGRAM_ENV='' | INSTALL_SCRIPT='${INSTALL}' | INSTALL_STRIP_PROGRAM='$(install_sh) -c -s' | INT32_MAX_LT_INTMAX_MAX='1' | INT64_MAX_EQ_LONG_MAX='1' | INTLLIBS='' | INTL_MACOSX_LIBS='' | ISNAND_LIBM='' | ISNANF_LIBM='' | ISNANL_LIBM='' | ISNAN_LIBM='' | LDEXPL_LIBM='' | LDEXP_LIBM='' | LDFLAGS='' | LEX='flex' | LEXLIB='-lfl' | LEX_IS_FLEX='true' | LEX_OUTPUT_ROOT='lex.yy' | LIBBISON_LIBDEPS='' | LIBBISON_LTLIBDEPS='' | LIBICONV='' | LIBINTL='' | LIBMULTITHREAD='-pthread' | LIBOBJS='' | LIBPMULTITHREAD='-pthread' | LIBPTHREAD='-pthread' | LIBREADLINE='-lreadline' | LIBS='' | LIBSTDTHREAD='' | LIBTEXTSTYLE='' | LIBTEXTSTYLE_PREFIX='' | LIBTHREAD='' | LIBUNISTRING_COMPILE_UNISTR_U8_MBTOUCR_FALSE='#' | LIBUNISTRING_COMPILE_UNISTR_U8_MBTOUCR_TRUE='' | LIBUNISTRING_COMPILE_UNISTR_U8_UCTOMB_FALSE='#' | LIBUNISTRING_COMPILE_UNISTR_U8_UCTOMB_TRUE='' | LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_FALSE='#' | LIBUNISTRING_COMPILE_UNIWIDTH_WIDTH_TRUE='' | LIBUNISTRING_UNISTR_H='lib/unistr.h' | LIBUNISTRING_UNITYPES_H='lib/unitypes.h' | LIBUNISTRING_UNIWIDTH_H='lib/uniwidth.h' | LIB_CLOCK_GETTIME='' | LIB_GETHRXTIME='' | LIB_HARD_LOCALE='' | LIB_MBRTOWC='' | LIB_POSIX_SPAWN='' | LIB_SCHED_YIELD='' | LIB_SETLOCALE_NULL='' | LIMITS_H='lib/limits.h' | LOCALCHARSET_TESTS_ENVIRONMENT='' | LOCALE_FR='none' | LOCALE_FR_UTF8='fr_FR.UTF-8' | LOCALE_JA='none' | LOCALE_ZH_CN='none' | LTLIBICONV='' | LTLIBINTL='' | LTLIBMULTITHREAD='-pthread' | LTLIBOBJS='' | LTLIBREADLINE='-lreadline' | LTLIBTEXTSTYLE='' | LTLIBTHREAD='' | M4='/usr/bin/m4' | M4_DEBUGFILE='--debugfile' | M4_GNU='--gnu' | MAKEINFO='${SHELL} /home/hv/ssd3/sources/bison-3.7.3/build-aux/missing makeinfo' | MKDIR_P='/bin/mkdir -p' | MSGFMT='/usr/local/bin/msgfmt' | MSGFMT_015='/usr/local/bin/msgfmt' | MSGMERGE='/usr/local/bin/msgmerge' | NEXT_AS_FIRST_DIRECTIVE_ERRNO_H='' | NEXT_AS_FIRST_DIRECTIVE_FCNTL_H='' | NEXT_AS_FIRST_DIRECTIVE_FLOAT_H='' | NEXT_AS_FIRST_DIRECTIVE_GETOPT_H='' | NEXT_AS_FIRST_DIRECTIVE_ICONV_H='' | NEXT_AS_FIRST_DIRECTIVE_INTTYPES_H='' | NEXT_AS_FIRST_DIRECTIVE_LIMITS_H='' | NEXT_AS_FIRST_DIRECTIVE_LOCALE_H='' | NEXT_AS_FIRST_DIRECTIVE_MATH_H='' | NEXT_AS_FIRST_DIRECTIVE_SCHED_H='' | NEXT_AS_FIRST_DIRECTIVE_SIGNAL_H='' | NEXT_AS_FIRST_DIRECTIVE_SPAWN_H='' | NEXT_AS_FIRST_DIRECTIVE_STDDEF_H='' | NEXT_AS_FIRST_DIRECTIVE_STDINT_H='' | NEXT_AS_FIRST_DIRECTIVE_STDIO_H='' | NEXT_AS_FIRST_DIRECTIVE_STDLIB_H='' | NEXT_AS_FIRST_DIRECTIVE_STRING_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_IOCTL_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_RESOURCE_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_STAT_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_TIMES_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_TIME_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H='' | NEXT_AS_FIRST_DIRECTIVE_SYS_WAIT_H='' | NEXT_AS_FIRST_DIRECTIVE_TERMIOS_H='' | NEXT_AS_FIRST_DIRECTIVE_TIME_H='' | NEXT_AS_FIRST_DIRECTIVE_UNISTD_H='' | NEXT_AS_FIRST_DIRECTIVE_WCHAR_H='' | NEXT_AS_FIRST_DIRECTIVE_WCTYPE_H='' | NEXT_ERRNO_H='' | NEXT_FCNTL_H='' | NEXT_FLOAT_H='' | NEXT_GETOPT_H='' | NEXT_ICONV_H='' | NEXT_INTTYPES_H='' | NEXT_LIMITS_H='' | NEXT_LOCALE_H='' | NEXT_MATH_H='' | NEXT_SCHED_H='' | NEXT_SIGNAL_H='' | NEXT_SPAWN_H='' | NEXT_STDDEF_H='' | NEXT_STDINT_H='' | NEXT_STDIO_H='' | NEXT_STDLIB_H='' | NEXT_STRING_H='' | NEXT_SYS_IOCTL_H='' | NEXT_SYS_RESOURCE_H='' | NEXT_SYS_STAT_H='' | NEXT_SYS_TIMES_H='' | NEXT_SYS_TIME_H='' | NEXT_SYS_TYPES_H='' | NEXT_SYS_WAIT_H='' | NEXT_TERMIOS_H='' | NEXT_TIME_H='' | NEXT_UNISTD_H='' | NEXT_WCHAR_H='' | NEXT_WCTYPE_H='' | NO_EXCEPTIONS_CXXFLAGS=' -fno-exceptions' | OBJEXT='o' | PACKAGE='bison' | PACKAGE_BUGREPORT='bug-bison@gnu.org' | PACKAGE_COPYRIGHT_YEAR='2020' | PACKAGE_NAME='GNU Bison' | PACKAGE_STRING='GNU Bison 3.7.3' | PACKAGE_TARNAME='bison' | PACKAGE_URL='https://www.gnu.org/software/bison/' | PACKAGE_VERSION='3.7.3' | PATH_SEPARATOR=':' | PERL='/usr/bin/perl' | POSUB='po' | PRAGMA_COLUMNS='' | PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' | PRIPTR_PREFIX='"l"' | PTHREAD_H_DEFINES_STRUCT_TIMESPEC='0' | PTRDIFF_T_SUFFIX='' | RANLIB='ranlib' | RELOCATABLE='no' | RELOCATABLE_BUILD_DIR='$(top_builddir)/lib' | RELOCATABLE_CONFIG_H_DIR='$(top_builddir)' | RELOCATABLE_LDFLAGS='' | RELOCATABLE_LIBRARY_PATH='' | RELOCATABLE_SRC_DIR='$(top_srcdir)/lib' | RELOCATABLE_STRIP=':' | RELOCATABLE_VIA_LD_FALSE='' | RELOCATABLE_VIA_LD_TRUE='#' | RELOCATABLE_VIA_WRAPPER_FALSE='' | RELOCATABLE_VIA_WRAPPER_TRUE='#' | REPLACE_ACCESS='0' | REPLACE_ACOSF='0' | REPLACE_ASINF='0' | REPLACE_ATAN2F='0' | REPLACE_ATANF='0' | REPLACE_BTOWC='0' | REPLACE_CALLOC='0' | REPLACE_CANONICALIZE_FILE_NAME='0' | REPLACE_CBRTF='0' | REPLACE_CBRTL='0' | REPLACE_CEIL='0' | REPLACE_CEILF='0' | REPLACE_CEILL='0' | REPLACE_CHOWN='0' | REPLACE_CLOSE='0' | REPLACE_COSF='0' | REPLACE_COSHF='0' | REPLACE_CREAT='0' | REPLACE_CTIME='GNULIB_PORTCHECK' | REPLACE_DPRINTF='0' | REPLACE_DUP2='0' | REPLACE_DUP='0' | REPLACE_DUPLOCALE='0' | REPLACE_EXP2='0' | REPLACE_EXP2L='0' | REPLACE_EXPF='0' | REPLACE_EXPL='0' | REPLACE_EXPM1='0' | REPLACE_EXPM1F='0' | REPLACE_EXPM1L='0' | REPLACE_FABSL='0' | REPLACE_FACCESSAT='0' | REPLACE_FCHMODAT='0' | REPLACE_FCHOWNAT='0' | REPLACE_FCLOSE='0' | REPLACE_FCNTL='1' | REPLACE_FDOPEN='0' | REPLACE_FFLUSH='0' | REPLACE_FLOOR='0' | REPLACE_FLOORF='0' | REPLACE_FLOORL='0' | REPLACE_FMA='0' | REPLACE_FMAF='0' | REPLACE_FMAL='0' | REPLACE_FMOD='0' | REPLACE_FMODF='0' | REPLACE_FMODL='0' | REPLACE_FOPEN='0' | REPLACE_FPRINTF='0' | REPLACE_FPURGE='0' | REPLACE_FREELOCALE='0' | REPLACE_FREOPEN='0' | REPLACE_FREXP='0' | REPLACE_FREXPF='0' | REPLACE_FREXPL='0' | REPLACE_FSEEK='0' | REPLACE_FSEEKO='0' | REPLACE_FSTAT='0' | REPLACE_FSTATAT='0' | REPLACE_FTELL='0' | REPLACE_FTELLO='0' | REPLACE_FTRUNCATE='0' | REPLACE_FUTIMENS='0' | REPLACE_GETCWD='0' | REPLACE_GETDELIM='0' | REPLACE_GETDOMAINNAME='0' | REPLACE_GETDTABLESIZE='0' | REPLACE_GETGROUPS='0' | REPLACE_GETLINE='0' | REPLACE_GETLOGIN_R='0' | REPLACE_GETPAGESIZE='0' | REPLACE_GETPASS='0' | REPLACE_GETTIMEOFDAY='0' | REPLACE_GMTIME='0' | REPLACE_HUGE_VAL='0' | REPLACE_HYPOT='0' | REPLACE_HYPOTF='0' | REPLACE_HYPOTL='0' | REPLACE_ICONV='0' | REPLACE_ICONV_OPEN='0' | REPLACE_ICONV_UTF='0' | REPLACE_ILOGB='0' | REPLACE_ILOGBF='0' | REPLACE_ILOGBL='0' | REPLACE_INITSTATE='0' | REPLACE_IOCTL='0' | REPLACE_ISATTY='0' | REPLACE_ISFINITE='0' | REPLACE_ISINF='0' | REPLACE_ISNAN='0' | REPLACE_ISWBLANK='0' | REPLACE_ISWCNTRL='0' | REPLACE_ISWDIGIT='0' | REPLACE_ISWXDIGIT='0' | REPLACE_ITOLD='0' | REPLACE_LCHOWN='0' | REPLACE_LDEXPL='0' | REPLACE_LINK='0' | REPLACE_LINKAT='0' | REPLACE_LOCALECONV='0' | REPLACE_LOCALTIME='0' | REPLACE_LOCALTIME_R='GNULIB_PORTCHECK' | REPLACE_LOG10='0' | REPLACE_LOG10F='0' | REPLACE_LOG10L='0' | REPLACE_LOG1P='0' | REPLACE_LOG1PF='0' | REPLACE_LOG1PL='0' | REPLACE_LOG2='0' | REPLACE_LOG2F='0' | REPLACE_LOG2L='0' | REPLACE_LOG='0' | REPLACE_LOGB='0' | REPLACE_LOGBF='0' | REPLACE_LOGBL='0' | REPLACE_LOGF='0' | REPLACE_LOGL='0' | REPLACE_LSEEK='0' | REPLACE_LSTAT='0' | REPLACE_MALLOC='0' | REPLACE_MBRLEN='0' | REPLACE_MBRTOWC='1' | REPLACE_MBSINIT='0' | REPLACE_MBSNRTOWCS='0' | REPLACE_MBSRTOWCS='0' | REPLACE_MBSTATE_T='0' | REPLACE_MBTOWC='0' | REPLACE_MEMCHR='0' | REPLACE_MEMMEM='0' | REPLACE_MKDIR='0' | REPLACE_MKFIFO='0' | REPLACE_MKNOD='0' | REPLACE_MKSTEMP='0' | REPLACE_MKTIME='GNULIB_PORTCHECK' | REPLACE_MODF='0' | REPLACE_MODFF='0' | REPLACE_MODFL='0' | REPLACE_NAN='0' | REPLACE_NANOSLEEP='GNULIB_PORTCHECK' | REPLACE_NEWLOCALE='0' | REPLACE_NULL='0' | REPLACE_OBSTACK_PRINTF='0' | REPLACE_OPEN='0' | REPLACE_OPENAT='0' | REPLACE_PERROR='0' | REPLACE_POPEN='0' | REPLACE_POSIX_SPAWN='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCHDIR='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDFCHDIR='0' | REPLACE_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN='0' | REPLACE_PREAD='0' | REPLACE_PRINTF='0' | REPLACE_PTHREAD_SIGMASK='0' | REPLACE_PTSNAME='0' | REPLACE_PTSNAME_R='0' | REPLACE_PUTENV='0' | REPLACE_PWRITE='0' | REPLACE_QSORT_R='0' | REPLACE_RAISE='0' | REPLACE_RANDOM='0' | REPLACE_RANDOM_R='0' | REPLACE_READ='0' | REPLACE_READLINK='0' | REPLACE_READLINKAT='0' | REPLACE_REALLOC='0' | REPLACE_REALPATH='0' | REPLACE_REMAINDER='0' | REPLACE_REMAINDERF='0' | REPLACE_REMAINDERL='0' | REPLACE_REMOVE='0' | REPLACE_RENAME='0' | REPLACE_RENAMEAT='0' | REPLACE_RINTL='0' | REPLACE_RMDIR='0' | REPLACE_ROUND='0' | REPLACE_ROUNDF='0' | REPLACE_ROUNDL='0' | REPLACE_SCHED_YIELD='0' | REPLACE_SETENV='0' | REPLACE_SETLOCALE='0' | REPLACE_SETSTATE='0' | REPLACE_SIGNBIT='0' | REPLACE_SIGNBIT_USING_BUILTINS='1' | REPLACE_SINF='0' | REPLACE_SINHF='0' | REPLACE_SLEEP='0' | REPLACE_SNPRINTF='0' | REPLACE_SPRINTF='0' | REPLACE_SQRTF='0' | REPLACE_SQRTL='0' | REPLACE_STAT='0' | REPLACE_STDIO_READ_FUNCS='0' | REPLACE_STDIO_WRITE_FUNCS='0' | REPLACE_STPNCPY='0' | REPLACE_STRCASESTR='0' | REPLACE_STRCHRNUL='0' | REPLACE_STRDUP='0' | REPLACE_STRERROR='0' | REPLACE_STRERRORNAME_NP='0' | REPLACE_STRERROR_R='1' | REPLACE_STRFTIME='GNULIB_PORTCHECK' | REPLACE_STRNCAT='0' | REPLACE_STRNDUP='0' | REPLACE_STRNLEN='0' | REPLACE_STRSIGNAL='0' | REPLACE_STRSTR='0' | REPLACE_STRTOD='0' | REPLACE_STRTOIMAX='0' | REPLACE_STRTOK_R='0' | REPLACE_STRTOLD='0' | REPLACE_STRTOUMAX='0' | REPLACE_STRUCT_LCONV='0' | REPLACE_STRUCT_TIMEVAL='0' | REPLACE_SYMLINK='0' | REPLACE_SYMLINKAT='0' | REPLACE_TANF='0' | REPLACE_TANHF='0' | REPLACE_TIMEGM='GNULIB_PORTCHECK' | REPLACE_TMPFILE='0' | REPLACE_TOWLOWER='0' | REPLACE_TRUNC='0' | REPLACE_TRUNCATE='0' | REPLACE_TRUNCF='0' | REPLACE_TRUNCL='0' | REPLACE_TTYNAME_R='0' | REPLACE_TZSET='GNULIB_PORTCHECK' | REPLACE_UNLINK='0' | REPLACE_UNLINKAT='0' | REPLACE_UNSETENV='0' | REPLACE_USLEEP='0' | REPLACE_UTIMENSAT='0' | REPLACE_VASPRINTF='0' | REPLACE_VDPRINTF='0' | REPLACE_VFPRINTF='0' | REPLACE_VPRINTF='0' | REPLACE_VSNPRINTF='0' | REPLACE_VSPRINTF='0' | REPLACE_WCRTOMB='0' | REPLACE_WCSFTIME='0' | REPLACE_WCSNRTOMBS='0' | REPLACE_WCSRTOMBS='0' | REPLACE_WCSTOK='0' | REPLACE_WCSWIDTH='0' | REPLACE_WCTOB='0' | REPLACE_WCTOMB='0' | REPLACE_WCWIDTH='0' | REPLACE_WRITE='0' | SED='/bin/sed' | SET_MAKE='' | SHELL='/bin/bash' | SIG_ATOMIC_T_SUFFIX='' | SIZE_T_SUFFIX='' | STDBOOL_H='' | STDDEF_H='' | STDINT_H='lib/stdint.h' | STRIP='' | SYS_IOCTL_H_HAVE_WINSOCK2_H='0' | SYS_IOCTL_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0' | SYS_TIME_H_DEFINES_STRUCT_TIMESPEC='0' | TEXTSTYLE_H='lib/textstyle.h' | TIME_H_DEFINES_STRUCT_TIMESPEC='1' | UINT32_MAX_LT_UINTMAX_MAX='1' | UINT64_MAX_EQ_ULONG_MAX='1' | UNDEFINE_STRTOK_R='0' | UNISTD_H_DEFINES_STRUCT_TIMESPEC='0' | UNISTD_H_HAVE_SYS_RANDOM_H='0' | UNISTD_H_HAVE_WINSOCK2_H='0' | UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS='0' | USE_NLS='yes' | VALGRIND='' | VALGRIND_OPTS_SUPPRESSION='' | VERSION='3.7.3' | WARN_CFLAGS='' | WARN_CFLAGS_TEST='' | WARN_CXXFLAGS='' | WARN_CXXFLAGS_TEST='' | WCHAR_T_SUFFIX='' | WERROR_CFLAGS='' | WERROR_CXXFLAGS='' | WINDOWS_64_BIT_OFF_T='0' | WINDOWS_64_BIT_ST_SIZE='0' | WINDOWS_STAT_INODES='0' | WINDOWS_STAT_TIMESPEC='0' | WINT_T_SUFFIX='' | WNO_DEPRECATED_CXXFLAGS='' | XGETTEXT='/usr/local/bin/xgettext' | XGETTEXT_015='/usr/local/bin/xgettext' | XGETTEXT_EXTRA_OPTIONS=' --flag=error:3:c-format --flag=error_at_line:5:c-format --flag=asprintf:2:c-format --flag=vasprintf:2:c-format' | XSLTPROC='/usr/bin/xsltproc' | YACC='bison -y' | YFLAGS='' | ac_ct_CC='gcc10' | ac_ct_CXX='' | aclocaldir='${datadir}/aclocal' | am__EXEEXT_FALSE='' | am__EXEEXT_TRUE='#' | am__fastdepCC_FALSE='#' | am__fastdepCC_TRUE='' | am__fastdepCXX_FALSE='#' | am__fastdepCXX_TRUE='' | am__include='include' | am__isrc=' -I$(srcdir)' | 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' | datadir='${datarootdir}' | datarootdir='${prefix}/share' | docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' | dvidir='${docdir}' | exec_prefix='${prefix}' | gl_GNULIB_ENABLED_0137e3d3638b33e5819d132d0b23165c_FALSE='' | gl_GNULIB_ENABLED_0137e3d3638b33e5819d132d0b23165c_TRUE='#' | gl_GNULIB_ENABLED_1f32594a85e6221ba15f884daeee8c2a_FALSE='' | gl_GNULIB_ENABLED_1f32594a85e6221ba15f884daeee8c2a_TRUE='#' | gl_GNULIB_ENABLED_21ee726a3540c09237a8e70c0baf7467_FALSE='' | gl_GNULIB_ENABLED_21ee726a3540c09237a8e70c0baf7467_TRUE='#' | gl_GNULIB_ENABLED_30838f5439487421042f2225bed3af76_FALSE='#' | gl_GNULIB_ENABLED_30838f5439487421042f2225bed3af76_TRUE='' | gl_GNULIB_ENABLED_332607f759618fb73dfc3076748afea7_FALSE='' | gl_GNULIB_ENABLED_332607f759618fb73dfc3076748afea7_TRUE='#' | gl_GNULIB_ENABLED_3f0e593033d1fc2c127581960f641b66_FALSE='' | gl_GNULIB_ENABLED_3f0e593033d1fc2c127581960f641b66_TRUE='#' | gl_GNULIB_ENABLED_43fe87a341d9b4b93c47c3ad819a5239_FALSE='' | gl_GNULIB_ENABLED_43fe87a341d9b4b93c47c3ad819a5239_TRUE='#' | gl_GNULIB_ENABLED_48b2271240803e4879464b755748a89d_FALSE='' | gl_GNULIB_ENABLED_48b2271240803e4879464b755748a89d_TRUE='#' | gl_GNULIB_ENABLED_503a4cb75d69c787103d0aa2ab7d8440_FALSE='' | gl_GNULIB_ENABLED_503a4cb75d69c787103d0aa2ab7d8440_TRUE='#' | gl_GNULIB_ENABLED_68a4501daeca58988392c7e60b4917ab_FALSE='' | gl_GNULIB_ENABLED_68a4501daeca58988392c7e60b4917ab_TRUE='#' | gl_GNULIB_ENABLED_8bb827fe37eaccf1b97feb0c87bc92ef_FALSE='' | gl_GNULIB_ENABLED_8bb827fe37eaccf1b97feb0c87bc92ef_TRUE='#' | gl_GNULIB_ENABLED_9bc5f216d57e231e4834049d67d0db62_FALSE='' | gl_GNULIB_ENABLED_9bc5f216d57e231e4834049d67d0db62_TRUE='#' | gl_GNULIB_ENABLED_cdeb0f2aaf9d280baa6526bfa1b07f70_FALSE='' | gl_GNULIB_ENABLED_cdeb0f2aaf9d280baa6526bfa1b07f70_TRUE='#' | gl_GNULIB_ENABLED_chdir_FALSE='' | gl_GNULIB_ENABLED_chdir_TRUE='#' | gl_GNULIB_ENABLED_dbb57f49352be8fb86869629a254fb72_FALSE='' | gl_GNULIB_ENABLED_dbb57f49352be8fb86869629a254fb72_TRUE='#' | gl_GNULIB_ENABLED_e7e881d32ca02f1c997b13c737c64bbd_FALSE='#' | gl_GNULIB_ENABLED_e7e881d32ca02f1c997b13c737c64bbd_TRUE='' | gl_GNULIB_ENABLED_ed5616be3593d355b981ffab56b9f37b_FALSE='' | gl_GNULIB_ENABLED_ed5616be3593d355b981ffab56b9f37b_TRUE='#' | gl_GNULIB_ENABLED_f0efff84a70f4afba30902bb8ffe9354_FALSE='' | gl_GNULIB_ENABLED_f0efff84a70f4afba30902bb8ffe9354_TRUE='#' | gl_GNULIB_ENABLED_fseterr_FALSE='' | gl_GNULIB_ENABLED_fseterr_TRUE='#' | gl_GNULIB_ENABLED_fstat_FALSE='' | gl_GNULIB_ENABLED_fstat_TRUE='#' | gl_GNULIB_ENABLED_getdelim_FALSE='' | gl_GNULIB_ENABLED_getdelim_TRUE='#' | gl_GNULIB_ENABLED_getdtablesize_FALSE='#' | gl_GNULIB_ENABLED_getdtablesize_TRUE='' | gl_GNULIB_ENABLED_getline_FALSE='' | gl_GNULIB_ENABLED_getline_TRUE='#' | gl_GNULIB_ENABLED_ldexp_FALSE='' | gl_GNULIB_ENABLED_ldexp_TRUE='#' | gl_GNULIB_ENABLED_locale_FALSE='#' | gl_GNULIB_ENABLED_locale_TRUE='' | gl_GNULIB_ENABLED_lstat_FALSE='' | gl_GNULIB_ENABLED_lstat_TRUE='#' | gl_GNULIB_ENABLED_malloca_FALSE='' | gl_GNULIB_ENABLED_malloca_TRUE='#' | gl_GNULIB_ENABLED_rawmemchr_FALSE='' | gl_GNULIB_ENABLED_rawmemchr_TRUE='#' | gl_GNULIB_ENABLED_rmdir_FALSE='' | gl_GNULIB_ENABLED_rmdir_TRUE='#' | gl_GNULIB_ENABLED_stat_FALSE='' | gl_GNULIB_ENABLED_stat_TRUE='#' | gl_GNULIB_ENABLED_strchrnul_FALSE='' | gl_GNULIB_ENABLED_strchrnul_TRUE='#' | gl_GNULIB_ENABLED_strnlen_FALSE='' | gl_GNULIB_ENABLED_strnlen_TRUE='#' | gl_GNULIB_ENABLED_sys_stat_FALSE='' | gl_GNULIB_ENABLED_sys_stat_TRUE='#' | gl_LIBOBJS=' lib/libbison_a-asnprintf.o lib/libbison_a-fcntl.o lib/libbison_a-mbrtowc.o lib/libbison_a-obstack.o lib/libbison_a-printf-args.o lib/libbison_a-printf-parse.o lib/libbison_a-vasnprintf.o' | gl_LTLIBOBJS=' lib/asnprintf.lo lib/fcntl.lo lib/mbrtowc.lo lib/obstack.lo lib/printf-args.lo lib/printf-parse.lo lib/vasnprintf.lo' | gltests_LIBOBJS='' | gltests_LTLIBOBJS='' | gltests_WITNESS='IN_BISON_GNULIB_TESTS' | 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/hv/ssd3/sources/bison-3.7.3/build-aux/install-sh' | libdir='${exec_prefix}/lib' | libexecdir='${exec_prefix}/libexec' | lispdir='${datarootdir}/emacs/site-lisp' | localedir='${datarootdir}/locale' | localstatedir='${prefix}/var' | mandir='${datarootdir}/man' | mkdir_p='$(MKDIR_P)' | oldincludedir='/usr/include' | pdfdir='${docdir}' | pkglibexecdir='${libexecdir}/${PACKAGE}' | 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='' | | ## ------------------- ## | ## File substitutions. ## | ## ------------------- ## | | relocatable_sh='../../bison-3.7.3/build-aux/relocatable.sh.in' | | ## ----------- ## | ## confdefs.h. ## | ## ----------- ## | | /* confdefs.h */ | #define PACKAGE_NAME "GNU Bison" | #define PACKAGE_TARNAME "bison" | #define PACKAGE_VERSION "3.7.3" | #define PACKAGE_STRING "GNU Bison 3.7.3" | #define PACKAGE_BUGREPORT "bug-bison@gnu.org" | #define PACKAGE_URL "https://www.gnu.org/software/bison/" | #define PACKAGE_COPYRIGHT_YEAR 2020 | #define PACKAGE "bison" | #define VERSION "3.7.3" | #define HAVE_SYS_TYPES_H 1 | #define HAVE_SYS_STAT_H 1 | #define HAVE_STRINGS_H 1 | #define HAVE_INTTYPES_H 1 | #define HAVE_STDINT_H 1 | #define HAVE_UNISTD_H 1 | #define HAVE_LOCALE_H 1 | #define HAVE_SYS_PARAM_H 1 | #define HAVE_SYS_SOCKET_H 1 | #define HAVE_STDIO_EXT_H 1 | #define HAVE_FEATURES_H 1 | #define HAVE_GETOPT_H 1 | #define HAVE_SYS_CDEFS_H 1 | #define HAVE_SYS_TIME_H 1 | #define HAVE_ICONV_H 1 | #define HAVE_LIMITS_H 1 | #define HAVE_WCHAR_H 1 | #define HAVE_WCTYPE_H 1 | #define HAVE_MATH_H 1 | #define HAVE_SYS_MMAN_H 1 | #define HAVE_SPAWN_H 1 | #define HAVE_SYS_IOCTL_H 1 | #define HAVE_SYS_RESOURCE_H 1 | #define HAVE_SYS_TIMES_H 1 | #define HAVE_SYS_WAIT_H 1 | #define HAVE_TERMIOS_H 1 | #define HAVE_XLOCALE_H 1 | #define HAVE_STDLIB_H 1 | #define HAVE_STRING_H 1 | #define STDC_HEADERS 1 | #define __EXTENSIONS__ 1 | #define _ALL_SOURCE 1 | #define _DARWIN_C_SOURCE 1 | #define _GNU_SOURCE 1 | #define _NETBSD_SOURCE 1 | #define _OPENBSD_SOURCE 1 | #define _POSIX_PTHREAD_SEMANTICS 1 | #define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1 | #define __STDC_WANT_IEC_60559_BFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_DFP_EXT__ 1 | #define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1 | #define __STDC_WANT_IEC_60559_TYPES_EXT__ 1 | #define __STDC_WANT_LIB_EXT2__ 1 | #define __STDC_WANT_MATH_SPEC_FUNCS__ 1 | #define _TANDEM_SOURCE 1 | #define _HPUX_ALT_XOPEN_SOCKET_API 1 | #define HAVE_TCDRAIN 1 | #define HAVE_CANONICALIZE_FILE_NAME 1 | #define HAVE_READLINK 1 | #define HAVE_REALPATH 1 | #define HAVE_READLINKAT 1 | #define HAVE_STRERROR_R 1 | #define HAVE_FCNTL 1 | #define HAVE_SYMLINK 1 | #define HAVE_SNPRINTF 1 | #define HAVE_FSYNC 1 | #define HAVE_GETRUSAGE 1 | #define HAVE_GETTIMEOFDAY 1 | #define HAVE_ISWCNTRL 1 | #define HAVE_ISWBLANK 1 | #define HAVE_MBSINIT 1 | #define HAVE_MBRTOWC 1 | #define HAVE_ISASCII 1 | #define HAVE_MPROTECT 1 | #define HAVE_OBSTACK_PRINTF 1 | #define HAVE_LSTAT 1 | #define HAVE___XPG_STRERROR_R 1 | #define HAVE_PIPE2 1 | #define HAVE_SETENV 1 | #define HAVE_LINK 1 | #define HAVE_SIGACTION 1 | #define HAVE_SIGALTSTACK 1 | #define HAVE_SIGINTERRUPT 1 | #define HAVE_STPNCPY 1 | #define HAVE_STRNDUP 1 | #define HAVE_PIPE 1 | #define HAVE_WCWIDTH 1 | #define HAVE_GETDELIM 1 | #define HAVE_GETDTABLESIZE 1 | #define HAVE_CATGETS 1 | #define HAVE_SETLOCALE 1 | #define YYTEXT_POINTER 1 | #define M4 "/usr/bin/m4" | #define M4_GNU_OPTION "--gnu" | #define HAVE_ALLOCA_H 1 | #define HAVE_ALLOCA 1 | #define FUNC_REALPATH_WORKS 1 | #define HAVE_GETCWD 1 | #define restrict __restrict | #define HAVE_ENVIRON_DECL 1 | #define HAVE_DECL_STRERROR_R 1 | #define STRERROR_R_CHAR_P 1 | #define HAVE_SIG_ATOMIC_T 1 | #define HAVE_WORKING_O_NOATIME 1 | #define HAVE_WORKING_O_NOFOLLOW 1 | #define HAVE_STDINT_H_WITH_UINTMAX 1 | #define HAVE_INTTYPES_H_WITH_UINTMAX 1 | #define CHECK_PRINTF_SAFE 1 | #define HAVE_WCHAR_T 1 | #define HAVE_WINT_T 1 | #define HAVE_INTMAX_T 1 | #define DBL_EXPBIT0_WORD 1 | #define DBL_EXPBIT0_BIT 20 | #define HAVE_SNPRINTF 1 | #define HAVE_STRNLEN 1 | #define HAVE_WCSLEN 1 | #define HAVE_WCSNLEN 1 | #define HAVE_MBRTOWC 1 | #define HAVE_WCRTOMB 1 | #define HAVE_DECL__SNPRINTF 0 | #define HAVE_SNPRINTF_RETVAL_C99 1 | #define HAVE_SNPRINTF_TRUNCATION_C99 1 | #define HAVE_DECL_ALARM 1 | #define HAVE_GETOPT_H 1 | #define HAVE_GETOPT_LONG_ONLY 1 | #define HAVE_ICONV 1 | #define ICONV_CONST | #define HAVE_LONG_LONG_INT 1 | #define HAVE_UNSIGNED_LONG_LONG_INT 1 | #define FLT_EXPBIT0_WORD 0 | #define FLT_EXPBIT0_BIT 23 | #define HAVE_TOWLOWER 1 | #define HAVE_LANGINFO_CODESET 1 | #define HAVE_WEAK_SYMBOLS 1 | #define HAVE_PTHREAD_API 1 | #define USE_POSIX_THREADS 1 | #define USE_POSIX_THREADS_WEAK 1 | #define HAVE_MBSTATE_T 1 | #define HAVE_MAP_ANONYMOUS 1 | #define HAVE_MINMAX_IN_SYS_PARAM_H 1 | #define HAVE_DECL_OBSTACK_PRINTF 1 | #define PROMOTED_MODE_T mode_t | #define HAVE_POSIX_SPAWN 1 | #define USER_LABEL_PREFIX | #define HAVE_SIGSET_T 1 | #define INSTALLPREFIX "/usr/local" | #define MALLOC_0_IS_NONNULL 1 | #define HAVE_DECL_SETENV 1 | #define HAVE_DECL_SNPRINTF 1 | #define HAVE__BOOL 1 | #define HAVE_DECL_STPNCPY 1 | #define HAVE_DECL_STRDUP 1 | #define HAVE_DECL_STRNDUP 1 | #define _USE_STD_STAT 1 | #define HAVE_DECL_CLEARERR_UNLOCKED 1 | #define HAVE_DECL_FEOF_UNLOCKED 1 | #define HAVE_DECL_FERROR_UNLOCKED 1 | #define HAVE_DECL_FFLUSH_UNLOCKED 1 | #define HAVE_DECL_FGETS_UNLOCKED 1 | #define HAVE_DECL_FPUTC_UNLOCKED 1 | #define HAVE_DECL_FPUTS_UNLOCKED 1 | #define HAVE_DECL_FREAD_UNLOCKED 1 | #define HAVE_DECL_FWRITE_UNLOCKED 1 | #define HAVE_DECL_GETC_UNLOCKED 1 | #define HAVE_DECL_GETCHAR_UNLOCKED 1 | #define HAVE_DECL_PUTC_UNLOCKED 1 | #define HAVE_DECL_PUTCHAR_UNLOCKED 1 | #define HAVE_DECL_UNSETENV 1 | #define HAVE_DECL_VSNPRINTF 1 | #define HAVE_DECL_GETDELIM 1 | #define HAVE_DECL_GETDTABLESIZE 1 | #define HAVE_DECL_GETLINE 1 | #define SETLOCALE_NULL_ALL_MTSAFE 1 | #define SETLOCALE_NULL_ONE_MTSAFE 1 | #define LSTAT_FOLLOWS_SLASHED_SYMLINK 1 | #define HAVE_DECL_STRNLEN 1 | #define HAVE_ALLOCA 1 | #define HAVE___BUILTIN_EXPECT 1 | #define HAVE_CALLOC_POSIX 1 | #define GNULIB_TEST_CALLOC_POSIX 1 | #define GNULIB_CANONICALIZE_LGPL 1 | #define GNULIB_TEST_CANONICALIZE_FILE_NAME 1 | #define GNULIB_TEST_REALPATH 1 | #define HAVE_CLOCK_GETTIME 1 | #define HAVE_CLOCK_SETTIME 1 | #define GNULIB_TEST_CLOEXEC 1 | #define GNULIB_TEST_CLOSE 1 | #define GNULIB_CLOSE_STREAM 1 | #define GNULIB_DIRNAME 1 | #define GNULIB_TEST_DUP2 1 | #define GNULIB_TEST_ENVIRON 1 | #define GNULIB_TEST_FCNTL 1 | #define GNULIB_FD_SAFER_FLAG 1 | #define GNULIB_TEST_FOPEN 1 | #define GNULIB_FOPEN_GNU 1 | #define GNULIB_FOPEN_SAFER 1 | #define HAVE_DECL___FPENDING 1 | #define GNULIB_TEST_FPRINTF_POSIX 1 | #define HAVE_FREXP_IN_LIBC 1 | #define GNULIB_TEST_FREXP 1 | #define HAVE_FREXPL_IN_LIBC 1 | #define GNULIB_TEST_FREXPL 1 | #define GNULIB_TEST_FSYNC 1 | #define HAVE_DECL_GETHRTIME 0 | #define GNULIB_TEST_GETOPT_POSIX 1 | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | #define HAVE_DECL___ARGV 0 | #define GNULIB_TEST_GETRUSAGE 1 | #define GETTIMEOFDAY_TIMEZONE struct timezone | #define GNULIB_TEST_GETTIMEOFDAY 1 | #define HAVE_INLINE 1 | #define GNULIB_TEST_ISNAN 1 | #define GNULIB_TEST_ISNAND 1 | #define HAVE_ISNAND_IN_LIBC 1 | #define GNULIB_TEST_ISNANF 1 | #define GNULIB_TEST_ISNANL 1 | #define HAVE_ISNANL_IN_LIBC 1 | #define HAVE_DECL_ISWBLANK 1 | #define GNULIB_TEST_ISWBLANK 1 | #define GNULIB_TEST_ISWDIGIT 1 | #define GNULIB_TEST_ISWXDIGIT 1 | #define HAVE_LDEXPL 1 | #define GNULIB_TEST_LDEXPL 1 | #define HAVE_PTHREAD_RWLOCK 1 | #define HAVE_PTHREAD_MUTEX_RECURSIVE 1 | #define GNULIB_LOCK 1 | #define HAVE_MALLOC_GNU 1 | #define GNULIB_MALLOC_GNU 1 | #define HAVE_MALLOC_POSIX 1 | #define GNULIB_TEST_MALLOC_POSIX 1 | #define MBRTOWC_IN_C_LOCALE_MAYBE_EILSEQ 1 | #define GNULIB_TEST_MBRTOWC 1 | #define GNULIB_TEST_MBSINIT 1 | #define HAVE_DECL_MBSWIDTH_IN_WCHAR_H 0 | #define HAVE_MBSTATE_T 1 | #define GNULIB_TEST_MEMCHR 1 | #define GNULIB_MSVC_NOTHROW 1 | #define GNULIB_TEST_OBSTACK_PRINTF 1 | #define GNULIB_TEST_OPEN 1 | #define GNULIB_TEST_PERROR 1 | #define GNULIB_TEST_PIPE2 1 | #define GNULIB_PIPE2_SAFER 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDCLOSE 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDDUP2 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_ADDOPEN 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWN_FILE_ACTIONS_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_DESTROY 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_INIT 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETFLAGS 1 | #define GNULIB_TEST_POSIX_SPAWNATTR_SETSIGMASK 1 | #define GNULIB_TEST_POSIX_SPAWNP 1 | #define HAVE_FREXP_IN_LIBC 1 | #define HAVE_LDEXP_IN_LIBC 1 | #define HAVE_FREXPL_IN_LIBC 1 | #define HAVE_LDEXPL_IN_LIBC 1 | #define GNULIB_TEST_PRINTF_POSIX 1 | #define HAVE_DECL_PROGRAM_INVOCATION_NAME 1 | #define HAVE_DECL_PROGRAM_INVOCATION_SHORT_NAME 1 | #define HAVE_RAISE 1 | #define GNULIB_TEST_RAISE 1 | #define HAVE_READLINE 1 | #define HAVE_READLINE_READLINE_H 1 | #define HAVE_READLINE_HISTORY_H 1 | #define GNULIB_TEST_READLINK 1 | #define HAVE_REALLOC_POSIX 1 | #define GNULIB_TEST_REALLOC_POSIX 1 | #define HAVE_GETCWD 1 | #define HAVE_SEARCH_H 1 | #define HAVE_TSEARCH 1 | #define GNULIB_TEST_RENAME 1 | #define HAVE_SCHED_H 1 | #define HAVE_STRUCT_SIGACTION_SA_SIGACTION 1 | #define GNULIB_TEST_SIGACTION 1 | #define GNULIB_TEST_SIGNBIT 1 | #define GNULIB_TEST_SIGPROCMASK 1 | #define HAVE_STDINT_H 1 | #define HAVE_SNPRINTF 1 | #define GNULIB_TEST_SNPRINTF 1 | #define GNULIB_SNPRINTF 1 | #define HAVE_SNPRINTF 1 | #define HAVE_POSIX_SPAWNATTR_T 1 | #define HAVE_POSIX_SPAWN_FILE_ACTIONS_T 1 | #define GNULIB_TEST_SPRINTF_POSIX 1 | #define __USE_MINGW_ANSI_STDIO 1 | #define GNULIB_FSCANF 1 | #define GNULIB_SCANF 1 | #define HAVE_STPCPY 1 | #define GNULIB_TEST_STPCPY 1 | #define HAVE_STPNCPY 1 | #define GNULIB_TEST_STPNCPY 1 | #define GNULIB_TEST_STRDUP 1 | #define GNULIB_STRERROR 1 | #define GNULIB_TEST_STRERROR 1 | #define GNULIB_TEST_STRNDUP 1 | #define HAVE_STRVERSCMP 1 | #define GNULIB_TEST_STRVERSCMP 1 | #define HAVE_STRUCT_TMS 1 | #define GNULIB_UNISTR_U8_MBTOUCR 1 | #define GNULIB_UNISTR_U8_UCTOMB 1 | #define GNULIB_TEST_UNLINK 1 | #define USE_UNLOCKED_IO 1 | #define HAVE_UNSETENV 1 | #define GNULIB_TEST_UNSETENV 1 | #define HAVE_VASPRINTF 1 | #define GNULIB_TEST_VASPRINTF 1 | #define HAVE_VASPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSNPRINTF 1 | #define HAVE_VSNPRINTF 1 | #define GNULIB_TEST_VSPRINTF_POSIX 1 | #define HAVE_WAITID 1 | #define GNULIB_TEST_WAITPID 1 | #define HAVE_TOWLOWER 1 | #define HAVE_DECL_WCWIDTH 1 | #define GNULIB_TEST_WCWIDTH 1 | #define GWINSZ_IN_SYS_IOCTL 1 | #define HAVE_STDINT_H 1 | #define GNULIB_TEST_GETDTABLESIZE 1 | #define SETLOCALE_NULL_ALL_MTSAFE 1 | #define SETLOCALE_NULL_ONE_MTSAFE 1 | #define GNULIB_TEST_SETLOCALE_NULL 1 | #define ENABLE_NLS 1 | #define HAVE_GETTEXT 1 | #define HAVE_DCGETTEXT 1 | #define YYENABLE_NLS 1 | | configure: exit 0