Commit 67c72a63 by Mark Mitchell Committed by Mark Mitchell

configure.in: Make --enable-new-gxx-abi the default.

	* configure.in: Make --enable-new-gxx-abi the default.
	* configure: Likewise.

From-SVN: r37556
parent 04f3dc2b
2000-11-18 Mark Mitchell <mark@codesourcery.com>
* configure.in: Make --enable-new-gxx-abi the default.
* configure: Likewise.
2000-11-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> 2000-11-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* Makefile.in (tradcpp.o, tradcif.o): Depend on tradcpp.h. * Makefile.in (tradcpp.o, tradcif.o): Depend on tradcpp.h.
......
...@@ -1605,11 +1605,16 @@ AC_ARG_ENABLE(new-gxx-abi, ...@@ -1605,11 +1605,16 @@ AC_ARG_ENABLE(new-gxx-abi,
select the new abi for g++. You must select an ABI select the new abi for g++. You must select an ABI
at configuration time, so that the correct runtime at configuration time, so that the correct runtime
support is built. You cannot mix ABIs.], support is built. You cannot mix ABIs.],
[AC_DEFINE(ENABLE_NEW_GXX_ABI, 1, ,
[Define if you want to always select the new-abi for g++.]) enable_new_gxx_abi=yes)
GXX_ABI_FLAG='-fnew-abi'
echo "Building a new-abi g++ compiler." if test x$enable_new_gxx_abi = xyes; then
]) AC_DEFINE(ENABLE_NEW_GXX_ABI, 1,
[Define if you want to always select the new-abi for g++.])
GXX_ABI_FLAG='-fnew-abi'
else
GXX_ABI_FLAG=
fi
AC_SUBST(GXX_ABI_FLAG) AC_SUBST(GXX_ABI_FLAG)
AC_DEFINE_UNQUOTED(ENABLE_STD_NAMESPACE, $ac_esn, AC_DEFINE_UNQUOTED(ENABLE_STD_NAMESPACE, $ac_esn,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment