[56bce6] | 1 | # =========================================================================== |
---|
| 2 | # http://www.gnu.org/software/autoconf-archive/ax_cxx_gcc_abi_demangle.html |
---|
| 3 | # =========================================================================== |
---|
| 4 | # |
---|
| 5 | # SYNOPSIS |
---|
| 6 | # |
---|
| 7 | # AX_CXX_GCC_ABI_DEMANGLE |
---|
| 8 | # |
---|
| 9 | # DESCRIPTION |
---|
| 10 | # |
---|
| 11 | # If the compiler supports GCC C++ ABI name demangling (has header |
---|
| 12 | # cxxabi.h and abi::__cxa_demangle() function), define |
---|
| 13 | # HAVE_GCC_ABI_DEMANGLE |
---|
| 14 | # |
---|
| 15 | # Adapted from AX_CXX_RTTI by Luc Maisonobe |
---|
| 16 | # |
---|
| 17 | # LICENSE |
---|
| 18 | # |
---|
| 19 | # Copyright (c) 2008 Neil Ferguson <nferguso@eso.org> |
---|
| 20 | # |
---|
| 21 | # Copying and distribution of this file, with or without modification, are |
---|
| 22 | # permitted in any medium without royalty provided the copyright notice |
---|
| 23 | # and this notice are preserved. This file is offered as-is, without any |
---|
| 24 | # warranty. |
---|
| 25 | |
---|
| 26 | #serial 8 |
---|
| 27 | |
---|
| 28 | AC_DEFUN([AX_CXX_GCC_ABI_DEMANGLE], |
---|
| 29 | [AC_CACHE_CHECK(whether the compiler supports GCC C++ ABI name demangling, |
---|
| 30 | ax_cv_cxx_gcc_abi_demangle, |
---|
| 31 | [AC_LANG_SAVE |
---|
| 32 | AC_LANG_CPLUSPLUS |
---|
| 33 | AC_TRY_COMPILE([#include <typeinfo> |
---|
| 34 | #include <cxxabi.h> |
---|
| 35 | #include <string> |
---|
| 36 | |
---|
| 37 | template<typename TYPE> |
---|
| 38 | class A {}; |
---|
| 39 | ],[A<int> instance; |
---|
| 40 | int status = 0; |
---|
| 41 | char* c_name = 0; |
---|
| 42 | |
---|
| 43 | c_name = abi::__cxa_demangle(typeid(instance).name(), 0, 0, &status); |
---|
| 44 | |
---|
| 45 | std::string name(c_name); |
---|
| 46 | free(c_name); |
---|
| 47 | |
---|
| 48 | return name == "A<int>"; |
---|
| 49 | ], |
---|
| 50 | ax_cv_cxx_gcc_abi_demangle=yes, ax_cv_cxx_gcc_abi_demangle=no) |
---|
| 51 | AC_LANG_RESTORE |
---|
| 52 | ]) |
---|
| 53 | if test "$ax_cv_cxx_gcc_abi_demangle" = yes; then |
---|
| 54 | AC_DEFINE(HAVE_GCC_ABI_DEMANGLE,1, |
---|
| 55 | [define if the compiler supports GCC C++ ABI name demangling]) |
---|
| 56 | fi |
---|
| 57 | ]) |
---|