comparison contrib/check_makefile_deps.sh @ 111:04ced10e8804

gcc 7
author kono
date Fri, 27 Oct 2017 22:46:09 +0900
parents a06113de4d67
children
comparison
equal deleted inserted replaced
68:561a7518be6b 111:04ced10e8804
1 #! /bin/sh 1 #! /bin/sh
2 # 2 #
3 # Check for accurate dependencies in gcc/Makefile.in. 3 # Check for accurate dependencies in gcc/Makefile.in.
4 # 4 #
5 # Copyright (C) 2008 Free Software Foundation, Inc. 5 # Copyright (C) 2008, 2012 Free Software Foundation, Inc.
6 # Written by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>. 6 # Written by Ralf Wildenhues <Ralf.Wildenhues@gmx.de>.
7 # 7 #
8 # This script is Free Software, and it can be copied, distributed and 8 # This script is Free Software, and it can be copied, distributed and
9 # modified as defined in the GNU General Public License. A copy of 9 # modified as defined in the GNU General Public License. A copy of
10 # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html 10 # its license can be downloaded from http://www.gnu.org/copyleft/gpl.html
17 # and set $start_after to the name of the last object that should be skipped. 17 # and set $start_after to the name of the last object that should be skipped.
18 start_after= 18 start_after=
19 19
20 # Skip some objects unconditionally; make sure each name in this list is 20 # Skip some objects unconditionally; make sure each name in this list is
21 # surrounded by spaces. 21 # surrounded by spaces.
22 skip=" crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o crtfastmath.o crtprec64.o crtprec80.o crtprec32.o " 22 skip=" crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o crtfastmath.o crtprec64.o crtprec80.o crtprec32.o ecrti.o ecrtn.o ncrti.o ncrtn.o "
23 23
24 # Files which show up as dependencies other than through unconditional #include. 24 # Files which show up as dependencies other than through unconditional #include.
25 # This is an egrep pattern. 25 # This is an egrep pattern.
26 hidden_dep_files='(BASE-VER|DATESTAMP|DEV-PHASE|Makefile|xcoffout\.h|basic-block\.h|bconfig\.h)$' 26 hidden_dep_files='(BASE-VER|DATESTAMP|DEV-PHASE|Makefile|xcoffout\.h|basic-block\.h|bconfig\.h)$'
27 27
32 # There should be no need for changes beyond this point. 32 # There should be no need for changes beyond this point.
33 33
34 set -e 34 set -e
35 st=0 35 st=0
36 36
37 if test -f c-common.o; then :; else 37 if test -f c-family/c-common.o; then :; else
38 echo "$0: rerun in an up to date build-tree/gcc directory" >&2 38 echo "$0: rerun in an up to date build-tree/gcc directory" >&2
39 exit 1 39 exit 1
40 fi 40 fi
41 41
42 for obj in *.o 42 for obj in *.o