Commit a95492ab by Jim Wilson Committed by Jim Wilson

Makefile.in (check_gcc_parallelize): Delete.

gcc/
	* Makefile.in (check_gcc_parallelize): Delete.
	(lang_checks_parallelized): Update comment.
gcc/c
	* Make-lang.in (check_gcc_pallelize): Define.
gcc/cp
	* Make-lang.in (check_g++_parallelize): Update comment.
gcc/fortran
	* Make-lang.in (check_gfortran_parallelize): Update comment.

From-SVN: r223597
parent d08093db
2015-05-22 Jim Wilson <jim.wilson@linaro.org>
* Makefile.in (check_gcc_parallelize): Delete.
(lang_checks_parallelized): Update comment.
2015-05-22 Mikhail Maltsev <maltsevm@gmail.com> 2015-05-22 Mikhail Maltsev <maltsevm@gmail.com>
PR rtl-optimization/66237 PR rtl-optimization/66237
......
...@@ -528,10 +528,6 @@ xm_include_list=@xm_include_list@ ...@@ -528,10 +528,6 @@ xm_include_list=@xm_include_list@
xm_defines=@xm_defines@ xm_defines=@xm_defines@
lang_checks= lang_checks=
lang_checks_parallelized= lang_checks_parallelized=
# Upper limit to which it is useful to parallelize this lang target.
# It doesn't make sense to try e.g. 128 goals for small testsuites
# like objc or go.
check_gcc_parallelize=10000
lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt
lang_specs_files=@lang_specs_files@ lang_specs_files=@lang_specs_files@
lang_tree_files=@lang_tree_files@ lang_tree_files=@lang_tree_files@
...@@ -3743,7 +3739,9 @@ check_p_subdirs=$(wordlist 1,$(check_p_count),$(wordlist 1, \ ...@@ -3743,7 +3739,9 @@ check_p_subdirs=$(wordlist 1,$(check_p_count),$(wordlist 1, \
# #
# To parallelize some language check, add the corresponding check-$lang # To parallelize some language check, add the corresponding check-$lang
# to lang_checks_parallelized variable and define check_$lang_parallelize # to lang_checks_parallelized variable and define check_$lang_parallelize
# variable (see above check_gcc_parallelize description). # variable. This is the upper limit to which it is useful to parallelize the
# check-$lang target. It doesn't make sense to try e.g. 128 goals for small
# testsuites like objc or go.
$(lang_checks_parallelized): check-% : site.exp $(lang_checks_parallelized): check-% : site.exp
-rm -rf $(TESTSUITEDIR)/$*-parallel -rm -rf $(TESTSUITEDIR)/$*-parallel
@if [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \ @if [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \
......
2015-05-22 Jim Wilson <jim.wilson@linaro.org>
* Make-lang.in (check_gcc_pallelize): Define.
2015-05-22 Marek Polacek <polacek@redhat.com> 2015-05-22 Marek Polacek <polacek@redhat.com>
PR c/47043 PR c/47043
......
...@@ -95,6 +95,8 @@ c.srcman: ...@@ -95,6 +95,8 @@ c.srcman:
# List of targets that can use the generic check- rule and its // variant. # List of targets that can use the generic check- rule and its // variant.
lang_checks += check-gcc lang_checks += check-gcc
lang_checks_parallelized += check-gcc lang_checks_parallelized += check-gcc
# For description see the check_$lang_parallelize comment in gcc/Makefile.in.
check_gcc_parallelize=10000
# 'make check' in gcc/ looks for check-c. Redirect it to check-gcc. # 'make check' in gcc/ looks for check-c. Redirect it to check-gcc.
check-c : check-gcc check-c : check-gcc
......
2015-05-22 Jim Wilson <jim.wilson@linaro.org>
* Make-lang.in (check_g++_parallelize): Update comment.
2015-05-22 Paolo Carlini <paolo.carlini@oracle.com> 2015-05-22 Paolo Carlini <paolo.carlini@oracle.com>
PR c++/65598 PR c++/65598
......
...@@ -155,7 +155,7 @@ check-c++-subtargets : check-g++-subtargets ...@@ -155,7 +155,7 @@ check-c++-subtargets : check-g++-subtargets
# List of targets that can use the generic check- rule and its // variant. # List of targets that can use the generic check- rule and its // variant.
lang_checks += check-g++ lang_checks += check-g++
lang_checks_parallelized += check-g++ lang_checks_parallelized += check-g++
# For description see comment above check_gcc_parallelize in gcc/Makefile.in. # For description see the check_$lang_parallelize comment in gcc/Makefile.in.
check_g++_parallelize = 10000 check_g++_parallelize = 10000
# #
# Install hooks: # Install hooks:
......
2015-05-22 Jim Wilson <jim.wilson@linaro.org>
* Make-lang.in (check_gfortran_parallelize): Update comment.
2015-05-21 Thomas Koenig <tkoenig@gcc.gnu.org> 2015-05-21 Thomas Koenig <tkoenig@gcc.gnu.org>
PR fortran/66176 PR fortran/66176
......
...@@ -167,7 +167,7 @@ check-f95-subtargets : check-gfortran-subtargets ...@@ -167,7 +167,7 @@ check-f95-subtargets : check-gfortran-subtargets
check-fortran-subtargets : check-gfortran-subtargets check-fortran-subtargets : check-gfortran-subtargets
lang_checks += check-gfortran lang_checks += check-gfortran
lang_checks_parallelized += check-gfortran lang_checks_parallelized += check-gfortran
# For description see comment above check_gcc_parallelize in gcc/Makefile.in. # For description see the check_$lang_parallelize comment in gcc/Makefile.in.
check_gfortran_parallelize = 10000 check_gfortran_parallelize = 10000
# GFORTRAN documentation. # GFORTRAN documentation.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment