configure.ac: Update comment.

2014-10-31  Jan-Benedict Glaw  <jbglaw@lug-owl.de>

./	* configure.ac: Update comment.
	* configure: Regenerate.

./contrib	* config-list.mk: Don't build Go for certain targets.

From-SVN: r216957
This commit is contained in:
Jan-Benedict Glaw 2014-10-31 11:03:57 +00:00 committed by Jan-Benedict Glaw
parent 71ff3d1820
commit 1335a8caf7
5 changed files with 32 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2014-10-31 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* configure.ac: Update comment.
* configure: Regenerate.
2014-10-31 Ilya Enkovich <ilya.enkovich@intel.com>
* MAINTAINERS (Write After Approval): Add myself.

3
configure vendored
View File

@ -3413,7 +3413,8 @@ case "${target}" in
;;
esac
# Disable the go frontend on systems where it is known to not work.
# Disable the go frontend on systems where it is known to not work. Please keep
# this in sync with contrib/config-list.mk.
case "${target}" in
*-*-darwin* | *-*-cygwin* | *-*-mingw* | *-*-aix*)
unsupported_languages="$unsupported_languages go"

View File

@ -772,7 +772,8 @@ case "${target}" in
;;
esac
# Disable the go frontend on systems where it is known to not work.
# Disable the go frontend on systems where it is known to not work. Please keep
# this in sync with contrib/config-list.mk.
case "${target}" in
*-*-darwin* | *-*-cygwin* | *-*-mingw* | *-*-aix*)
unsupported_languages="$unsupported_languages go"

View File

@ -1,3 +1,7 @@
2014-10-31 Jan-Benedict Glaw <jbglaw@lug-owl.de>
* config-list.mk: Don't build Go for certain targets.
2014-10-04 Trevor Saunders <tsaunders@mozilla.com>
* compare-all-tests: Don't test score-*.

View File

@ -95,11 +95,24 @@ make-log-dir: ../gcc/MAINTAINERS
$(LIST): make-log-dir
-mkdir $@
(cd $@ && \
( \
cd $@ && \
echo $@ && \
TGT=`echo $@ | sed -e 's/^\(.*\)OPT.*$$/\1/'` && \
TGT=`../../gcc/config.sub $$TGT` && \
case $$TGT in \
*-*-darwin* | *-*-cygwin* | *-*-mingw* | *-*-aix*) \
ADDITIONAL_LANGUAGES=""; \
;; \
*) \
ADDITIONAL_LANGUAGES=",go"; \
;; \
esac && \
../../gcc/configure \
--target=$(subst SCRIPTS,`pwd`/../scripts/,$(subst OPT,$(empty) -,$@)) \
--enable-werror-always ${host_options} --enable-languages=all,ada,go) \
> log/$@-config.out 2>&1
--enable-werror-always ${host_options} \
--enable-languages=all,ada$$ADDITIONAL_LANGUAGES; \
) > log/$@-config.out 2>&1
$(LOGFILES) : log/%-make.out : %
-$(MAKE) -C $< $(TEST) > $@ 2>&1 && rm -rf $<