diff options
author | H.J. Lu <hongjiu.lu@intel.com> | 2013-09-10 16:00:13 +0000 |
---|---|---|
committer | H.J. Lu <hjl@gcc.gnu.org> | 2013-09-10 09:00:13 -0700 |
commit | f5ebad64c9c183ce74be1d0320f9e33c1891cf84 (patch) | |
tree | c2724457e56152dedf68fcbef1aa7d818a08b84e /libvtv/configure.ac | |
parent | b0681c9e51cafab3bf40c1997e7da9e3d13bdefd (diff) | |
download | gcc-f5ebad64c9c183ce74be1d0320f9e33c1891cf84.zip gcc-f5ebad64c9c183ce74be1d0320f9e33c1891cf84.tar.gz gcc-f5ebad64c9c183ce74be1d0320f9e33c1891cf84.tar.bz2 |
Move VTV_SUPPORTED check after AC_CANONICAL_SYSTEM
PR other/58374
* configure.ac: Move VTV_SUPPORTED check after AC_CANONICAL_SYSTEM.
* configure: Regenerated.
From-SVN: r202470
Diffstat (limited to 'libvtv/configure.ac')
-rw-r--r-- | libvtv/configure.ac | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/libvtv/configure.ac b/libvtv/configure.ac index 6db97dc..e3fb92f 100644 --- a/libvtv/configure.ac +++ b/libvtv/configure.ac @@ -20,6 +20,13 @@ AC_ARG_ENABLE(version-specific-runtime-libs, [version_specific_libs=no]) AC_MSG_RESULT($version_specific_libs) +# Do not delete or change the following two lines. For why, see +# http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html +AC_CANONICAL_SYSTEM +target_alias=${target_alias-$host_alias} +AC_SUBST(target_alias) +GCC_LIBSTDCXX_RAW_CXX_FLAGS + # See if supported. unset VTV_SUPPORTED AC_MSG_CHECKING([for host support for vtable verification]) @@ -33,13 +40,6 @@ if test "x$VTV_SUPPORTED" = "xyes"; then AC_MSG_NOTICE(using vtable verification) fi -# Do not delete or change the following two lines. For why, see -# http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html -AC_CANONICAL_SYSTEM -target_alias=${target_alias-$host_alias} -AC_SUBST(target_alias) -GCC_LIBSTDCXX_RAW_CXX_FLAGS - AM_INIT_AUTOMAKE(foreign no-dist) AM_ENABLE_MULTILIB(, ..) AM_MAINTAINER_MODE |