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
This commit is contained in:
Ian Lance Taylor 2014-10-23 22:36:20 +00:00 committed by Ian Lance Taylor
parent fc3f28640a
commit 74cc54710d
3 changed files with 20 additions and 0 deletions

View File

@ -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.

7
configure vendored
View File

@ -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

View 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