diff options
Diffstat (limited to 'libstdc++-v3/configure')
-rwxr-xr-x | libstdc++-v3/configure | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index dcb9fd6..22cb5b0 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -73156,7 +73156,10 @@ BACKTRACE_CPPFLAGS="$BACKTRACE_CPPFLAGS -DBACKTRACE_ELF_SIZE=$elfsize" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build libbacktrace support" >&5 $as_echo_n "checking whether to build libbacktrace support... " >&6; } if test "$enable_libstdcxx_backtrace" = "auto"; then - enable_libstdcxx_backtrace="$is_hosted" + case "$host" in + avr-*-*) enable_libstdcxx_backtrace=no ;; + *) enable_libstdcxx_backtrace="$is_hosted" ;; + esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_libstdcxx_backtrace" >&5 $as_echo "$enable_libstdcxx_backtrace" >&6; } |