]>
Commit | Line | Data |
---|---|---|
1 | # @configure_input@ -*- shell-script -*- | |
2 | # Configurable variable values for Bison test suite. | |
3 | ||
4 | # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, | |
5 | # 2009 Free Software Foundation, Inc. | |
6 | ||
7 | # We need a C compiler. | |
8 | : ${CC='@CC@'} | |
9 | ||
10 | # We want no optimization. | |
11 | CFLAGS='@O0CFLAGS@ @WARN_CFLAGS_TEST@ @WERROR_CFLAGS@' | |
12 | ||
13 | # Sometimes a test group needs to ignore gcc warnings, so it locally | |
14 | # sets CFLAGS to this. | |
15 | NO_WERROR_CFLAGS='@O0CFLAGS@ @WARN_CFLAGS_TEST@' | |
16 | ||
17 | # We need `config.h'. | |
18 | CPPFLAGS="-I$abs_top_builddir/lib @CPPFLAGS@" | |
19 | ||
20 | # Is the compiler GCC? | |
21 | GCC='@GCC@' | |
22 | ||
23 | # The C++ compiler. | |
24 | : ${CXX='@CXX@'} | |
25 | ||
26 | # If 'exit 77'; skip all C++ tests; otherwise ':'. | |
27 | BISON_CXX_WORKS='@BISON_CXX_WORKS@' | |
28 | ||
29 | # We want no optimization with C++, too. | |
30 | CXXFLAGS='@O0CXXFLAGS@ @WARN_CXXFLAGS_TEST@ @WERROR_CFLAGS@' | |
31 | ||
32 | # Are special link options needed? | |
33 | LDFLAGS='@LDFLAGS@' | |
34 | ||
35 | # Are special libraries needed? | |
36 | LIBS="$abs_top_builddir/lib/libbison.a @LIBS@ @INTLLIBS@" | |
37 | ||
38 | # Empty if no javac was found | |
39 | CONF_JAVAC='@CONF_JAVAC@' | |
40 | ||
41 | # Empty if no Java VM was found | |
42 | CONF_JAVA='@CONF_JAVA@' | |
43 | ||
44 | # Empty if no xsltproc was found | |
45 | : ${XSLTPROC='@XSLTPROC@'} | |
46 | ||
47 | # We need egrep. | |
48 | : ${EGREP='@EGREP@'} | |
49 | ||
50 | abs_top_srcdir='@abs_top_srcdir@' |