]>
Commit | Line | Data |
---|---|---|
e9690142 | 1 | # @configure_input@ -*- shell-script -*- |
342b8b6e | 2 | # Configurable variable values for Bison test suite. |
3b2942e6 | 3 | |
34136e65 | 4 | # Copyright (C) 2000-2012 Free Software Foundation, Inc. |
342b8b6e AD |
5 | |
6 | # We need a C compiler. | |
74553c98 | 7 | : ${CC='@CC@'} |
f377f69f AD |
8 | |
9 | # We want no optimization. | |
a603c6e0 | 10 | CFLAGS='@O0CFLAGS@ @WARN_CFLAGS_TEST@ @WERROR_CFLAGS@' |
342b8b6e | 11 | |
52cea04a JD |
12 | # Sometimes a test group needs to ignore gcc warnings, so it locally |
13 | # sets CFLAGS to this. | |
a603c6e0 | 14 | NO_WERROR_CFLAGS='@O0CFLAGS@ @WARN_CFLAGS_TEST@' |
52cea04a | 15 | |
342b8b6e | 16 | # We need `config.h'. |
231ed89a | 17 | CPPFLAGS="-I$abs_top_builddir/lib @CPPFLAGS@" |
642cb8f8 AD |
18 | |
19 | # Is the compiler GCC? | |
20 | GCC='@GCC@' | |
7548fed2 | 21 | |
209ea708 | 22 | # The C++ compiler. |
74553c98 | 23 | : ${CXX='@CXX@'} |
9d56d294 | 24 | |
209ea708 PE |
25 | # If 'exit 77'; skip all C++ tests; otherwise ':'. |
26 | BISON_CXX_WORKS='@BISON_CXX_WORKS@' | |
27 | ||
713535c2 | 28 | # We want no optimization with C++, too. |
a603c6e0 | 29 | CXXFLAGS='@O0CXXFLAGS@ @WARN_CXXFLAGS_TEST@ @WERROR_CFLAGS@' |
713535c2 | 30 | |
9d56d294 PE |
31 | # Are special link options needed? |
32 | LDFLAGS='@LDFLAGS@' | |
33 | ||
34 | # Are special libraries needed? | |
5c99151a | 35 | LIBS="$abs_top_builddir/lib/libbison.a @LIBS@ @INTLLIBS@" |
8405b70c PB |
36 | |
37 | # Empty if no javac was found | |
38 | CONF_JAVAC='@CONF_JAVAC@' | |
39 | ||
40 | # Empty if no Java VM was found | |
41 | CONF_JAVA='@CONF_JAVA@' | |
da730230 JD |
42 | |
43 | # Empty if no xsltproc was found | |
74553c98 AD |
44 | : ${XSLTPROC='@XSLTPROC@'} |
45 | ||
46 | # We need egrep. | |
47 | : ${EGREP='@EGREP@'} |