summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2014-10-23 22:36:20 +0000
committerian <ian@138bc75d-0d04-0410-961f-82ee72b054a4>2014-10-23 22:36:20 +0000
commit56242c27c8a93f8f585cc1af43c2ce46c0d36ab6 (patch)
treeea81c77abd4c6cfaa6f8be0237179d72d4f05996 /configure
parent9dc583122155002a51047e258d33fce73e178a8c (diff)
downloadgcc-56242c27c8a93f8f585cc1af43c2ce46c0d36ab6.tar.gz
* 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
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure7
1 files changed, 7 insertions, 0 deletions
diff --git a/configure b/configure
index 9b337dc4e31..ce984b1f528 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