Skip to content

Commit

Permalink
* configure.ac: Disable the Go frontend on systems where it is known
Browse files Browse the repository at this point in the history
	to not work.
	* configure: Regenerate.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@216602 138bc75d-0d04-0410-961f-82ee72b054a4
  • Loading branch information
ian committed Oct 23, 2014
1 parent 9dc5831 commit 56242c2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
7 changes: 7 additions & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 7 additions & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 56242c2

Please sign in to comment.