patches/gcc/4.8.1/001_gcc_4_8_1_backport_patches_to_fix_parallel_build_fail_PR_57683.patch
author "Yann E. MORIN" <yann.morin.1998@free.fr>
Tue Mar 11 22:11:43 2014 +0100 (2014-03-11)
changeset 3293 e11a8a2e225d
permissions -rw-r--r--
comptools: do not force build of make-3.81 unless really needed

On systems with make-3.82, we forcibly force the build and the use
of make-3.81

But some newer tools break when building with make-3.81. For example,
eglibc-3.18 breaks.

Introduce a new blind options that tools may select if they require
make-3.81. If the system does not have make-3.81, and this option is
selected, then we force the build of make-3.81. Otherwise, we leave
it to the user to decide on his own.

Note that no component selects this option for now. It will come in
later patches as we find them.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
netzimme@3256
     1
--- gcc-4.8.2/gcc/Makefile.in	2013-11-22 02:14:33.815230904 +0100
netzimme@3256
     2
+++ gcc-4.8.2_patch/gcc/Makefile.in	2013-11-22 02:14:38.391230732 +0100
netzimme@3256
     3
@@ -3037,7 +3037,7 @@
netzimme@3256
     4
     $(TM_H) coretypes.h $(GIMPLE_H) \
netzimme@3256
     5
     $(TREE_PASS_H) $(FLAGS_H) $(EXPR_H) $(BASIC_BLOCK_H) \
netzimme@3256
     6
     $(GGC_H) $(OBSTACK_H) $(PARAMS_H) $(CPPLIB_H) $(PARAMS_H) \
netzimme@3256
     7
-    $(GIMPLE_PRETTY_PRINT_H) langhooks.h
netzimme@3256
     8
+    $(GIMPLE_PRETTY_PRINT_H) langhooks.h $(OPTABS_H)
netzimme@3256
     9
 tree-complex.o : tree-complex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \
netzimme@3256
    10
     $(TM_H) $(FLAGS_H) $(TREE_FLOW_H) $(GIMPLE_H) \
netzimme@3256
    11
     tree-iterator.h $(TREE_PASS_H) tree-ssa-propagate.h
netzimme@3256
    12
@@ -3276,12 +3276,12 @@
netzimme@3256
    13
    $(TM_H) $(RTL_H) $(REGS_H) insn-config.h insn-codes.h $(DF_H) \
netzimme@3256
    14
    $(RECOG_H) output.h addresses.h $(REGS_H) hard-reg-set.h $(FLAGS_H) \
netzimme@3256
    15
    $(FUNCTION_H) $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) \
netzimme@3256
    16
-   ira.h rtl-error.h $(LRA_INT_H)
netzimme@3256
    17
+   ira.h rtl-error.h $(LRA_INT_H) $(OPTABS_H)
netzimme@3256
    18
 lra-eliminations.o : lra-eliminations.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
netzimme@3256
    19
    $(TM_H) $(RTL_H) $(REGS_H) insn-config.h $(DF_H) \
netzimme@3256
    20
    $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \
netzimme@3256
    21
    $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) ira.h \
netzimme@3256
    22
-   rtl-error.h $(LRA_INT_H)
netzimme@3256
    23
+   rtl-error.h $(LRA_INT_H) $(OPTABS_H)
netzimme@3256
    24
 lra-lives.o : lra-lives.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
netzimme@3256
    25
    $(RTL_H) $(REGS_H) insn-config.h $(DF_H) \
netzimme@3256
    26
    $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \