Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(26)

Side by Side Diff: gcc/libstdc++-v3/crossconfig.m4

Issue 3181032: [gcc] Add nacl to libstdc++'s list of glibc-based architectures (Closed) Base URL: ssh://gitrw.chromium.org/nacl-toolchain
Patch Set: Rebase Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gcc/libstdc++-v3/configure ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 case "$target" in 124 case "$target" in
125 *-hpux10*) 125 *-hpux10*)
126 AC_DEFINE(HAVE_ISINF) 126 AC_DEFINE(HAVE_ISINF)
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 *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-knetbsd*-gnu) 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
136 # case here.
137 *-linux* | *-uclinux* | *-gnu* | *-kfreebsd*-gnu | *-knetbsd*-gnu | nacl*)
135 GLIBCXX_CHECK_COMPILER_FEATURES 138 GLIBCXX_CHECK_COMPILER_FEATURES
136 GLIBCXX_CHECK_LINKER_FEATURES 139 GLIBCXX_CHECK_LINKER_FEATURES
137 GLIBCXX_CHECK_MATH_SUPPORT 140 GLIBCXX_CHECK_MATH_SUPPORT
138 GLIBCXX_CHECK_STDLIB_SUPPORT 141 GLIBCXX_CHECK_STDLIB_SUPPORT
139 AC_DEFINE(_GLIBCXX_USE_RANDOM_TR1) 142 AC_DEFINE(_GLIBCXX_USE_RANDOM_TR1)
140 GCC_CHECK_TLS 143 GCC_CHECK_TLS
141 AM_ICONV 144 AM_ICONV
142 ;; 145 ;;
143 *-mingw32*) 146 *-mingw32*)
144 GLIBCXX_CHECK_LINKER_FEATURES 147 GLIBCXX_CHECK_LINKER_FEATURES
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 AC_DEFINE(HAVE_SINHF) 256 AC_DEFINE(HAVE_SINHF)
254 AC_DEFINE(HAVE_SQRTF) 257 AC_DEFINE(HAVE_SQRTF)
255 AC_DEFINE(HAVE_TANF) 258 AC_DEFINE(HAVE_TANF)
256 AC_DEFINE(HAVE_TANHF) 259 AC_DEFINE(HAVE_TANHF)
257 ;; 260 ;;
258 *) 261 *)
259 AC_MSG_ERROR([No support for this host/target combination.]) 262 AC_MSG_ERROR([No support for this host/target combination.])
260 ;; 263 ;;
261 esac 264 esac
262 ]) 265 ])
OLDNEW
« no previous file with comments | « gcc/libstdc++-v3/configure ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698