diff --git a/ChangeLog b/ChangeLog index 3b667b18f9f1..a7fcf77b9b26 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2020-04-29 Thomas Schwinge + + PR target/92713 + * configure.ac ["${ENABLE_LIBSTDCXX}" = "default" && amdgcn*-*-*] + (noconfigdirs): Add 'target-libstdc++-v3'. + * configure: Regenerate. + 2020-04-21 Stephen Casner PR 25830 diff --git a/configure b/configure index 815069c9856d..4cc938ebb7d8 100755 --- a/configure +++ b/configure @@ -3387,6 +3387,10 @@ if test "${ENABLE_LIBSTDCXX}" = "default" ; then # VxWorks uses the Dinkumware C++ library. noconfigdirs="$noconfigdirs target-libstdc++-v3" ;; + amdgcn*-*-*) + # Not ported/fails to build when using newlib. + noconfigdirs="$noconfigdirs target-libstdc++-v3" + ;; arm*-wince-pe*) # the C++ libraries don't build on top of CE's C libraries noconfigdirs="$noconfigdirs target-libstdc++-v3" diff --git a/configure.ac b/configure.ac index b95532cae90f..c78d9cbea62d 100644 --- a/configure.ac +++ b/configure.ac @@ -668,6 +668,10 @@ if test "${ENABLE_LIBSTDCXX}" = "default" ; then # VxWorks uses the Dinkumware C++ library. noconfigdirs="$noconfigdirs target-libstdc++-v3" ;; + amdgcn*-*-*) + # Not ported/fails to build when using newlib. + noconfigdirs="$noconfigdirs target-libstdc++-v3" + ;; arm*-wince-pe*) # the C++ libraries don't build on top of CE's C libraries noconfigdirs="$noconfigdirs target-libstdc++-v3"