Enable full GFortran library for AMD GCN
authorKwok Cheung Yeung <kcy@codesourcery.com>
Tue, 25 Jun 2019 11:41:38 +0000 (11:41 +0000)
committerAndrew Stubbs <ams@gcc.gnu.org>
Tue, 25 Jun 2019 11:41:38 +0000 (11:41 +0000)
2019-06-25  Kwok Cheung Yeung  <kcy@codesourcery.com>
            Andrew Stubbs  <ams@codesourcery.com>

libgfortran/
* configure: Regenerate.
* configure.ac (LIBGFOR_MINIMAL): Do not use on AMD GCN.

Co-Authored-By: Andrew Stubbs <ams@codesourcery.com>
From-SVN: r272649

libgfortran/ChangeLog
libgfortran/configure
libgfortran/configure.ac

index 1d1f4c496b1c2270d71820c0c92bfb073eb4b619..71fe27bf9fc4474195b66a10fdaa74f23104e17c 100644 (file)
@@ -1,3 +1,9 @@
+2019-06-25  Kwok Cheung Yeung  <kcy@codesourcery.com>
+            Andrew Stubbs  <ams@codesourcery.com>
+
+       * configure: Regenerate.
+       * configure.ac (LIBGFOR_MINIMAL): Do not use on AMD GCN.
+
 2019-06-14  Janne Blomqvist  <jb@gcc.gnu.org>
 
        PR fortran/65921
index 60867b93d0e8d5fd2cb1744f1d340b99970d7db3..15c9307f9d523d67b1344755781cf0a239171ec0 100755 (executable)
@@ -6179,8 +6179,7 @@ fi
 # * C library support for other features such as signal, environment
 #   variables, time functions
 
- if test "x${target_cpu}" = xnvptx \
-                                || test "x${target_cpu}" = xamdgcn; then
+ if test "x${target_cpu}" = xnvptx; then
   LIBGFOR_MINIMAL_TRUE=
   LIBGFOR_MINIMAL_FALSE='#'
 else
index 7cfce28ab697ee2c0353ce6a208e31b0d918c6f4..8dcc8606bd40e68593da2691910b441059bf3c2b 100644 (file)
@@ -205,8 +205,7 @@ AM_CONDITIONAL(LIBGFOR_USE_SYMVER_SUN, [test "x$gfortran_use_symver" = xsun])
 # * C library support for other features such as signal, environment
 #   variables, time functions
 
-AM_CONDITIONAL(LIBGFOR_MINIMAL, [test "x${target_cpu}" = xnvptx \
-                                || test "x${target_cpu}" = xamdgcn])
+AM_CONDITIONAL(LIBGFOR_MINIMAL, [test "x${target_cpu}" = xnvptx])
 
 # Figure out whether the compiler supports "-ffunction-sections -fdata-sections",
 # similarly to how libstdc++ does it