1 # @configure_input@ -*- shell-script -*-
2 # Configurable variable values for Bison test suite.
4 # Copyright (C) 2000-2012 Free Software Foundation, Inc.
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation, either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program. If not, see <http://www.gnu.org/licenses/>.
20 CPPFLAGS="-I$abs_top_builddir/lib @CPPFLAGS@"
22 ## ------------------- ##
23 ## C/C++ Compilation. ##
24 ## ------------------- ##
29 # Is the compiler GCC?
32 # We want no optimization.
33 O0CFLAGS=`echo '@CFLAGS@' | sed 's/-O[0-9] *//'`
34 O0CXXFLAGS=`echo '@CXXFLAGS@' | sed 's/-O[0-9] *//'`
36 # Sometimes a test group needs to ignore gcc warnings, so it locally
37 # sets CFLAGS to this.
38 NO_WERROR_CFLAGS="$O0CFLAGS @WARN_CFLAGS@ @WARN_CFLAGS_TEST@"
39 NO_WERROR_CXXFLAGS="$O0CXXFLAGS @WARN_CXXFLAGS@ @WARN_CXXFLAGS_TEST@"
41 # But most of the time, we want -Werror.
42 CFLAGS="$NO_WERROR_CFLAGS @WERROR_CFLAGS@"
43 CXXFLAGS="$NO_WERROR_CXXFLAGS @WERROR_CXXFLAGS@"
45 # If 'exit 77'; skip all C++ tests; otherwise ':'.
46 BISON_CXX_WORKS='@BISON_CXX_WORKS@'
48 # Handle --compile-c-with-cxx here, once CXX and CXXFLAGS are known.
49 if "$at_arg_compile_c_with_cxx"; then
52 NO_WERROR_CFLAGS=$NO_WERROR_CXXFLAGS
61 # Are special link options needed?
64 # Are special libraries needed?
65 LIBS="$abs_top_builddir/lib/libbison.a @LIBS@ @INTLLIBS@"
67 # Empty if no javac was found
68 CONF_JAVAC='@CONF_JAVAC@'
70 # Empty if no Java VM was found
71 CONF_JAVA='@CONF_JAVA@'
73 # Empty if no xsltproc was found
74 : ${XSLTPROC='@XSLTPROC@'}
79 # Use simple quotes (lib/quote.c).
84 # Handle --compile-c-with-cxx here, once CXX and CXXFLAGS are known.
85 if "$at_arg_compile_c_with_cxx"; then