]>
Commit | Line | Data |
---|---|---|
342b8b6e AD |
1 | # @configure_input@ -*- shell-script -*- |
2 | # Configurable variable values for Bison test suite. | |
e2586f82 | 3 | # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc. |
342b8b6e AD |
4 | |
5 | # We need a C compiler. | |
6 | CC='@CC@' | |
f377f69f AD |
7 | |
8 | # We want no optimization. | |
9 | CFLAGS='@O0CFLAGS@ @WARNING_CFLAGS@ @WERROR_CFLAGS@' | |
342b8b6e AD |
10 | |
11 | # We need `config.h'. | |
9501dc6e | 12 | CPPFLAGS="-DHAVE_CONFIG_H=1 -I$abs_top_builddir @CPPFLAGS@" |
642cb8f8 AD |
13 | |
14 | # Is the compiler GCC? | |
15 | GCC='@GCC@' | |
7548fed2 | 16 | |
209ea708 | 17 | # The C++ compiler. |
7548fed2 | 18 | CXX='@CXX@' |
9d56d294 | 19 | |
209ea708 PE |
20 | # If 'exit 77'; skip all C++ tests; otherwise ':'. |
21 | BISON_CXX_WORKS='@BISON_CXX_WORKS@' | |
22 | ||
713535c2 | 23 | # We want no optimization with C++, too. |
8ed3234a | 24 | CXXFLAGS='@O0CXXFLAGS@ @WARNING_CXXFLAGS@ @WERROR_CFLAGS@' |
713535c2 | 25 | |
9d56d294 PE |
26 | # Are special link options needed? |
27 | LDFLAGS='@LDFLAGS@' | |
28 | ||
29 | # Are special libraries needed? | |
e2586f82 | 30 | LIBS='@LIBS@ @INTLLIBS@' |