| OLD | NEW |
| 1 dnl | 1 dnl |
| 2 dnl This file contains details for non-native builds. | 2 dnl This file contains details for non-native builds. |
| 3 dnl | 3 dnl |
| 4 | 4 |
| 5 AC_DEFUN([GLIBCXX_CROSSCONFIG],[ | 5 AC_DEFUN([GLIBCXX_CROSSCONFIG],[ |
| 6 # Base decisions on target environment. | 6 # Base decisions on target environment. |
| 7 case "${host}" in | 7 case "${host}" in |
| 8 arm*-*-symbianelf*) | 8 arm*-*-symbianelf*) |
| 9 # This is a freestanding configuration; there is nothing to do here. | 9 # This is a freestanding configuration; there is nothing to do here. |
| 10 ;; | 10 ;; |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 AC_DEFINE(HAVE_ISINFF) | 127 AC_DEFINE(HAVE_ISINFF) |
| 128 AC_DEFINE(HAVE_ISNANF) | 128 AC_DEFINE(HAVE_ISNANF) |
| 129 AC_DEFINE(HAVE_FINITE) | 129 AC_DEFINE(HAVE_FINITE) |
| 130 AC_DEFINE(HAVE_FINITEF) | 130 AC_DEFINE(HAVE_FINITEF) |
| 131 ;; | 131 ;; |
| 132 esac | 132 esac |
| 133 ;; | 133 ;; |
| 134 # TODO(mseaborn): Maybe we should handle NaCl by changing NaCl's | 134 # TODO(mseaborn): Maybe we should handle NaCl by changing NaCl's |
| 135 # configuration name to "nacl-gnu", so that we do not need an extra | 135 # configuration name to "nacl-gnu", so that we do not need an extra |
| 136 # case here. | 136 # case here. |
| 137 *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-knetbsd*-gnu | nacl*) | 137 *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-knetbsd*-gnu | *-nacl*) |
| 138 GLIBCXX_CHECK_COMPILER_FEATURES | 138 GLIBCXX_CHECK_COMPILER_FEATURES |
| 139 GLIBCXX_CHECK_LINKER_FEATURES | 139 GLIBCXX_CHECK_LINKER_FEATURES |
| 140 GLIBCXX_CHECK_MATH_SUPPORT | 140 GLIBCXX_CHECK_MATH_SUPPORT |
| 141 GLIBCXX_CHECK_STDLIB_SUPPORT | 141 GLIBCXX_CHECK_STDLIB_SUPPORT |
| 142 AC_DEFINE(_GLIBCXX_USE_RANDOM_TR1) | 142 AC_DEFINE(_GLIBCXX_USE_RANDOM_TR1) |
| 143 GCC_CHECK_TLS | 143 GCC_CHECK_TLS |
| 144 AM_ICONV | 144 AM_ICONV |
| 145 ;; | 145 ;; |
| 146 *-mingw32*) | 146 *-mingw32*) |
| 147 GLIBCXX_CHECK_LINKER_FEATURES | 147 GLIBCXX_CHECK_LINKER_FEATURES |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 AC_DEFINE(HAVE_SINHF) | 256 AC_DEFINE(HAVE_SINHF) |
| 257 AC_DEFINE(HAVE_SQRTF) | 257 AC_DEFINE(HAVE_SQRTF) |
| 258 AC_DEFINE(HAVE_TANF) | 258 AC_DEFINE(HAVE_TANF) |
| 259 AC_DEFINE(HAVE_TANHF) | 259 AC_DEFINE(HAVE_TANHF) |
| 260 ;; | 260 ;; |
| 261 *) | 261 *) |
| 262 AC_MSG_ERROR([No support for this host/target combination.]) | 262 AC_MSG_ERROR([No support for this host/target combination.]) |
| 263 ;; | 263 ;; |
| 264 esac | 264 esac |
| 265 ]) | 265 ]) |
| OLD | NEW |