From 56242c27c8a93f8f585cc1af43c2ce46c0d36ab6 Mon Sep 17 00:00:00 2001 From: ian 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: Regenerate. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216602 138bc75d-0d04-0410-961f-82ee72b054a4 --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index f96e0f278d8..abfd038fa0b 100644 --- a/configure.ac +++ b/configure.ac @@ -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 -- cgit v1.2.1