configure.ac: Disable the Go frontend on systems where it is known to not work.
authorIan Lance Taylor <iant@google.com>
Thu, 23 Oct 2014 22:36:20 +0000 (22:36 +0000)
committerIan Lance Taylor <ian@gcc.gnu.org>
Thu, 23 Oct 2014 22:36:20 +0000 (22:36 +0000)
* configure.ac: Disable the Go frontend on systems where it is known
to not work.
* configure: Regenerate.

From-SVN: r216602

ChangeLog
configure
configure.ac

index 9097d0f8755a1ad5d5a093839a42b2531f21135e..2da6790a93e411fa4bfeabf1fb9677963c56908d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2014-10-23  Ian Lance Taylor  <iant@google.com>
+
+       * configure.ac: Disable the Go frontend on systems where it is known
+       to not work.
+       * configure: Regenerate.
+
 2014-10-23  Richard Biener  <rguenther@suse.de>
 
        * Makefile.def: Add libcpp build module and dependencies.
index 9b337dc4e31da78acf8f3966b5673e5f24aab2f7..ce984b1f52891f51e9f00e8a805da98d05b6693d 100755 (executable)
--- a/configure
+++ b/configure
@@ -3413,6 +3413,13 @@ case "${target}" in
     ;;
 esac
 
+# Disable the go frontend on systems where it is known to not work.
+case "${target}" in
+*-*-darwin* | *-*-cygwin* | *-*-mingw* | *-*-aix*)
+    unsupported_languages="$unsupported_languages go"
+    ;;
+esac
+
 # Disable libgo for some systems where it is known to not work.
 # For testing, you can easily override this with --enable-libgo.
 if test x$enable_libgo = x; then
index f96e0f278d861587dc195cebca0ff983b5fc62e9..abfd038fa0b249d22f0b13b385706b699e00513b 100644 (file)
@@ -772,6 +772,13 @@ case "${target}" in
     ;; 
 esac
 
+# Disable the go frontend on systems where it is known to not work.
+case "${target}" in
+*-*-darwin* | *-*-cygwin* | *-*-mingw* | *-*-aix*)
+    unsupported_languages="$unsupported_languages go"
+    ;;
+esac
+
 # Disable libgo for some systems where it is known to not work.
 # For testing, you can easily override this with --enable-libgo.
 if test x$enable_libgo = x; then