From 74cc54710dde322a5b5d59beabb9f7098a836bb1 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 23 Oct 2014 22:36:20 +0000 Subject: configure.ac: Disable the Go frontend on systems where it is known to not work. * configure.ac: Disable the Go frontend on systems where it is known to not work. * configure: Regenerate. From-SVN: r216602 --- configure | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure') diff --git a/configure b/configure index 9b337dc..ce984b1 100755 --- 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 -- cgit v1.1