Home | History | Annotate | Line # | Download | only in gcc
mknative-gcc revision 1.44
      1   1.1       mrg #!/bin/sh
      2  1.26  uebayasi #	$NetBSD: mknative-gcc,v 1.44 2009/12/17 15:01:33 uebayasi Exp $
      3   1.1       mrg #
      4   1.1       mrg # Shell script for generating all the constants needed for a native
      5  1.10       mrg # platform build of src/gnu/dist/gcc.
      6   1.1       mrg #
      7   1.1       mrg 
      8   1.9       mrg # initialise
      9   1.9       mrg 
     10   1.9       mrg _TMPDIR=$2
     11   1.9       mrg _TOP=$3
     12   1.9       mrg _PLATFORM=$4
     13  1.44  uebayasi _ABI=$5
     14  1.15       mrg _VPATH=`grep VPATH ${_TMPDIR}/Makefile | sed 's,^.*=[ 	]*,,'`
     15   1.9       mrg _GNU_DIST=`cd ${_VPATH}; pwd`
     16   1.9       mrg 
     17   1.9       mrg . $_TOP/tools/gcc/mknative.common
     18   1.1       mrg 
     19  1.14   thorpej ##### gnu/lib/crtstuff #####
     20  1.14   thorpej 
     21  1.14   thorpej get_crtstuff () {
     22  1.16       mrg 	_subdir="$1"
     23  1.16       mrg 	mkdir -p $_TOP/gnu/lib/$_subdir/arch
     24  1.14   thorpej 
     25  1.14   thorpej 	getvars gcc/Makefile \
     26  1.14   thorpej 		INCLUDES CRTSTUFF_CFLAGS CRTSTUFF_T_CFLAGS \
     27  1.14   thorpej 		tm_defines xm_file xm_defines \
     28  1.16       mrg 		| write_mk gnu/lib/$_subdir/arch/$MACHINE_ARCH.mk
     29  1.14   thorpej }
     30  1.14   thorpej 
     31   1.1       mrg ##### gnu/lib/libg2c #####
     32   1.1       mrg 
     33   1.1       mrg get_libg2c () {
     34   1.1       mrg 	mkdir -p $_TOP/gnu/lib/libg2c3/arch/$MACHINE_ARCH
     35   1.1       mrg 
     36   1.1       mrg 	write_c gnu/lib/libg2c3/arch/$MACHINE_ARCH/config.h <$_TMPDIR/$_PLATFORM/libf2c/libU77/config.h
     37   1.1       mrg 	write_c gnu/lib/libg2c3/arch/$MACHINE_ARCH/g2c.h <$_TMPDIR/$_PLATFORM/libf2c/g2c.h
     38   1.1       mrg 
     39   1.1       mrg 	{
     40   1.1       mrg 		getvars $_PLATFORM/libf2c/Makefile \
     41   1.1       mrg 			F2CEXT
     42   1.1       mrg 		getvars $_PLATFORM/libf2c/libF77/Makefile \
     43   1.1       mrg 			ALL_CFLAGS OBJS
     44   1.1       mrg 		getvars $_PLATFORM/libf2c/libI77/Makefile \
     45   1.1       mrg 			ALL_CFLAGS OBJS | sed 's,=,+=,'
     46   1.1       mrg 		getvars $_PLATFORM/libf2c/libU77/Makefile \
     47   1.1       mrg 			ALL_CFLAGS OBJS | sed 's,=,+=,'
     48   1.1       mrg 	} | write_mk gnu/lib/libg2c3/arch/$MACHINE_ARCH/defs.mk
     49   1.1       mrg }
     50   1.1       mrg 
     51   1.1       mrg ##### gnu/lib/libgcc #####
     52   1.1       mrg 
     53  1.28  uebayasi get_libgcc_list_funcs_asm () {
     54  1.42  uebayasi 	{
     55  1.42  uebayasi 		getvars gcc/Makefile LIB1ASMFUNCS | {
     56  1.42  uebayasi 			# print newline separated list
     57  1.42  uebayasi 			sed -e '
     58  1.42  uebayasi 				s,^.*=,,
     59  1.42  uebayasi 				s, *$,,
     60  1.42  uebayasi 				s,  *, ,g
     61  1.42  uebayasi 				s, ,\
     62  1.28  uebayasi ,g'
     63  1.42  uebayasi 		}
     64  1.42  uebayasi 		getvars gcc/Makefile LIB2FUNCS_EXTRA | {
     65  1.42  uebayasi 			# print newline separated list
     66  1.42  uebayasi 			sed -e '
     67  1.42  uebayasi 				s,^.*=,,
     68  1.42  uebayasi 				s, *$,,
     69  1.42  uebayasi 				s,  *, ,g
     70  1.42  uebayasi 				s, ,\
     71  1.42  uebayasi ,g' | \
     72  1.42  uebayasi 			sed -ne '
     73  1.42  uebayasi 				/\.S$/ { s,^.*/,,; s,\.S$,,; p; }
     74  1.42  uebayasi 				/\.asm$/ { s,^.*/,,; s,\.asm$,,; p; }
     75  1.42  uebayasi 			'
     76  1.42  uebayasi 		}
     77  1.28  uebayasi 	} | {
     78  1.28  uebayasi 		# print foo and foo_s
     79  1.28  uebayasi 		sed -ne '
     80  1.28  uebayasi 			/./ {
     81  1.28  uebayasi 				p
     82  1.28  uebayasi 				s,$,_s,
     83  1.28  uebayasi 				p
     84  1.28  uebayasi 			}
     85  1.28  uebayasi 		'
     86  1.28  uebayasi 	} | sort
     87  1.28  uebayasi }
     88  1.28  uebayasi 
     89  1.29  uebayasi get_libgcc_list_funcs_lib () {
     90  1.29  uebayasi 	local _lib=$1
     91  1.29  uebayasi 	local _lib_prefix=${_lib%.*}
     92  1.29  uebayasi 	local _lib_suffix=${_lib#*.}
     93  1.44  uebayasi 	local _abi=${2:-'\.'}
     94  1.29  uebayasi 
     95  1.43  uebayasi 	cat build/gcc/libgcc.mk | \
     96  1.44  uebayasi 	grep '/'${_abi}'/' | \
     97  1.29  uebayasi 	sed -ne '
     98  1.44  uebayasi 		/^\'${_abi}'\/'${_lib_prefix}'\.'${_lib_suffix}': .*\.o$/ {
     99  1.29  uebayasi 			s,^.*/,,
    100  1.29  uebayasi 			s,\.o$,,
    101  1.29  uebayasi 			p
    102  1.29  uebayasi 		}
    103  1.43  uebayasi 	' | sort
    104  1.29  uebayasi }
    105  1.29  uebayasi 
    106  1.30  uebayasi get_libgcc_list_objs_libs () {
    107  1.44  uebayasi 	local _abi=${1:-'\.'}
    108  1.44  uebayasi 
    109  1.30  uebayasi 	cat build/gcc/libgcc.mk | \
    110  1.44  uebayasi 	grep '/'${_abi}'/' | \
    111  1.44  uebayasi 	egrep '^\'${_abi}'\/(libgcc_s\.so|libgcc\.a|libgcc_eh\.a|libgcov\.a): (libgcc_s|libgcc|libgcc_eh|libgcov)\/.*\.o$' | \
    112  1.30  uebayasi 	sed -e '
    113  1.44  uebayasi 		s,^'${_abi}'\/,,
    114  1.30  uebayasi 		s,: .*/,	,
    115  1.30  uebayasi 		s,^\(.*\)	\(.*\)$,\2	\1,
    116  1.30  uebayasi 	' | sort
    117  1.30  uebayasi }
    118  1.30  uebayasi 
    119  1.30  uebayasi get_libgcc_list_objs_srcs () {
    120  1.44  uebayasi 	local _abi=${1:-'\.'}	# XXX not used
    121  1.44  uebayasi 
    122  1.41  uebayasi 	if [ -e $_TOP/${libgcc_db_funcs}.S ]; then
    123  1.30  uebayasi 		cut -f1 $_TOP/${libgcc_db_objs_libs} | sed -e 's,\.o$,,' | \
    124  1.30  uebayasi 		comm -23 /dev/stdin $_TOP/${libgcc_db_funcs}.S | \
    125  1.30  uebayasi 		sed -e 's,\(.*\),\1.o	\1.c,'
    126  1.30  uebayasi 
    127  1.30  uebayasi 		cut -f1 $_TOP/${libgcc_db_objs_libs} | sed -e 's,\.o$,,' | \
    128  1.30  uebayasi 		comm -12 /dev/stdin $_TOP/${libgcc_db_funcs}.S | \
    129  1.30  uebayasi 		sed -e 's,\(.*\),\1.o	\1.S,'
    130  1.41  uebayasi 	else
    131  1.41  uebayasi 		cut -f1 $_TOP/${libgcc_db_objs_libs} | sed -e 's,\.o$,,' | \
    132  1.41  uebayasi 		sed -e 's,\(.*\),\1.o	\1.c,'
    133  1.41  uebayasi 	fi | sort
    134  1.30  uebayasi }
    135  1.30  uebayasi 
    136  1.40  uebayasi get_libgcc_list_objs_tmplsrcs () {
    137  1.44  uebayasi 	local _abi=${1:-'\.'}
    138  1.44  uebayasi 
    139  1.32  uebayasi 	grep 'GCC_FOR_TARGET.*\.o$' build/gcc/libgcc.mk | \
    140  1.44  uebayasi 	grep '/'${_abi}'/' | \
    141  1.32  uebayasi 	sed -ne '
    142  1.32  uebayasi 		s,^.* -c \([^ ]*\).* -o .*/\([^ ]*\.o\)$,\2	\1,
    143  1.32  uebayasi 		# basename
    144  1.32  uebayasi 		/\$/ { s,\$.*/,,; }
    145  1.32  uebayasi 		/\// { s,\/.*/,,; }
    146  1.32  uebayasi 		p
    147  1.43  uebayasi 	' | sort -u
    148  1.32  uebayasi }
    149  1.32  uebayasi 
    150  1.31  uebayasi get_libgcc_list_objs_xflags () {
    151  1.31  uebayasi 	local _flags=$1
    152  1.44  uebayasi 	local _abi=${2:-'\.'}
    153  1.31  uebayasi 
    154  1.31  uebayasi 	grep 'GCC_FOR_TARGET.*\.o$' build/gcc/libgcc.mk | \
    155  1.44  uebayasi 	grep '/'${_abi}'/' | \
    156  1.31  uebayasi 	sed -n '
    157  1.31  uebayasi 		x
    158  1.31  uebayasi 	:loop
    159  1.31  uebayasi 		g
    160  1.31  uebayasi 		s/^\(.*\) \(-['${_flags}'][^ ][^ ]*\) \(.*\) \(-o .*\)\/\(.*\.o\)$/\5	\2/p
    161  1.31  uebayasi 		g
    162  1.31  uebayasi 		s/^\(.*\) \(-['${_flags}'][^ ][^ ]*\) \(.*\) \(-o .*\)\/\(.*\.o\)$/\1 \3 \4\/\5/
    163  1.31  uebayasi 		h
    164  1.31  uebayasi 		t loop
    165  1.31  uebayasi 	' | sort
    166  1.31  uebayasi }
    167  1.31  uebayasi 
    168  1.31  uebayasi get_libgcc_list_objs_cppflags () {
    169  1.44  uebayasi 	get_libgcc_list_objs_xflags D $1
    170  1.31  uebayasi }
    171  1.31  uebayasi 
    172  1.31  uebayasi get_libgcc_list_objs_copts () {
    173  1.44  uebayasi 	get_libgcc_list_objs_xflags fmx $1
    174  1.31  uebayasi }
    175  1.31  uebayasi 
    176  1.40  uebayasi get_libgcc_list_tmplsrcs () {
    177  1.33  uebayasi 	local _lib=$1
    178  1.44  uebayasi 	local _abi=$2	# XXX not used
    179  1.40  uebayasi 	local _tmplallsrcs=$( mktemp /tmp/mknative-gcc._tmplallsrcs.XXXXXX )
    180  1.33  uebayasi 
    181  1.40  uebayasi 	touch $_TOP/${libgcc_db_tmplsrcs}.tmplsrcs.${_lib%.*}
    182  1.40  uebayasi 	touch $_TOP/${libgcc_db_tmplsrcs}.tmplfpsrcs.${_lib%.*}
    183  1.40  uebayasi 	touch $_TOP/${libgcc_db_tmplsrcs}.tmplasmsrcs.${_lib%.*}
    184  1.33  uebayasi 
    185  1.33  uebayasi 	# all files
    186  1.33  uebayasi 	local _lib_prefix=${_lib%.*}
    187  1.33  uebayasi 	local _lib_suffix=${_lib#*.}
    188  1.40  uebayasi 	join $_TOP/$libgcc_db_objs_libs $_TOP/$libgcc_db_objs_tmplsrcs | \
    189  1.33  uebayasi 	grep ${_lib_prefix}'\.'${_lib_suffix} | cut -d' ' -f 3 | sort -u > \
    190  1.40  uebayasi 	$_tmplallsrcs
    191  1.33  uebayasi 
    192  1.40  uebayasi 	# TMPLFPSRCS = [fdp]p-bit.c
    193  1.40  uebayasi 	grep '[fdt]p-bit\.c' <$_tmplallsrcs | sort -u | \
    194  1.40  uebayasi 	writefile ${libgcc_db_tmplsrcs}.tmplfpsrcs.${_lib%.*}
    195  1.40  uebayasi 
    196  1.40  uebayasi 	# TMPLASMSRCS = $(LIB1ASMSRC)
    197  1.40  uebayasi 	grep '\$(LIB1ASMSRC)' <$_tmplallsrcs | sort -u | \
    198  1.40  uebayasi 	writefile ${libgcc_db_tmplsrcs}.tmplasmsrcs.${_lib%.*}
    199  1.40  uebayasi 
    200  1.40  uebayasi 	# TMPLSRCS is anything else; exclude TMPLFPSRCS and TMPLASMSRCS
    201  1.40  uebayasi 	cat $_tmplallsrcs | \
    202  1.40  uebayasi 	comm -23 /dev/stdin $_TOP/${libgcc_db_tmplsrcs}.tmplfpsrcs.${_lib%.*} | \
    203  1.40  uebayasi 	comm -23 /dev/stdin $_TOP/${libgcc_db_tmplsrcs}.tmplasmsrcs.${_lib%.*} | \
    204  1.40  uebayasi 	writefile ${libgcc_db_tmplsrcs}.tmplsrcs.${_lib%.*}
    205  1.33  uebayasi 
    206  1.40  uebayasi 	rm -f $_tmplallsrcs
    207  1.33  uebayasi }
    208  1.33  uebayasi 
    209  1.35  uebayasi get_libgcc_new_analyze () {
    210  1.44  uebayasi 	local _abi=$1
    211  1.44  uebayasi 
    212  1.35  uebayasi 	mkdir -p $_TOP/${_machine_arch_subdir}
    213  1.35  uebayasi 
    214  1.41  uebayasi 	touch $_TOP/${libgcc_db_funcs}.S
    215  1.35  uebayasi 	get_libgcc_list_funcs_asm | \
    216  1.35  uebayasi 	writefile ${libgcc_db_funcs}.S
    217  1.35  uebayasi 
    218  1.35  uebayasi 	for _lib in libgcc_s.so libgcc.a libgcc_eh.a libgcov.a; do
    219  1.41  uebayasi 		touch $_TOP/${libgcc_db_funcs}.${_lib%.*}
    220  1.44  uebayasi 		get_libgcc_list_funcs_lib $_lib $_abi | \
    221  1.35  uebayasi 		writefile ${libgcc_db_funcs}.${_lib%.*}
    222  1.35  uebayasi 	done
    223  1.35  uebayasi 
    224  1.44  uebayasi 	get_libgcc_list_objs_libs $_abi | writefile ${libgcc_db_objs_libs}
    225  1.44  uebayasi 	get_libgcc_list_objs_srcs $_abi | writefile ${libgcc_db_objs_srcs}
    226  1.44  uebayasi 	get_libgcc_list_objs_tmplsrcs $_abi | writefile ${libgcc_db_objs_tmplsrcs}
    227  1.44  uebayasi 	get_libgcc_list_objs_cppflags $_abi | writefile ${libgcc_db_objs_cppflags}
    228  1.44  uebayasi 	get_libgcc_list_objs_copts $_abi | writefile ${libgcc_db_objs_copts}
    229  1.35  uebayasi 
    230  1.35  uebayasi 	for _lib in libgcc_s.so libgcc.a libgcc_eh.a libgcov.a; do
    231  1.44  uebayasi 		get_libgcc_list_tmplsrcs $_lib $_abi
    232  1.35  uebayasi 	done
    233  1.35  uebayasi }
    234  1.35  uebayasi 
    235  1.35  uebayasi #####
    236  1.35  uebayasi 
    237  1.40  uebayasi get_libgcc_gen_tmplsrcs_tmplsrcs () {
    238  1.37  uebayasi 	local _lib=$1
    239  1.37  uebayasi 
    240  1.37  uebayasi 	printf '\n'
    241  1.40  uebayasi 	printf 'TMPLSRCS.%s = \\\n' $_lib
    242  1.40  uebayasi 	sed -e 's,^,	,; s,$, \\,' $_TOP/${libgcc_db_tmplsrcs}.tmplsrcs.${_lib%.*}
    243  1.37  uebayasi }
    244  1.37  uebayasi 
    245  1.40  uebayasi get_libgcc_gen_tmplsrcs_tmplfpsrcs () {
    246  1.37  uebayasi 	local _lib=$1
    247  1.37  uebayasi 
    248  1.37  uebayasi 	printf '\n'
    249  1.40  uebayasi 	printf 'TMPLFPSRCS.%s = \\\n' $_lib
    250  1.40  uebayasi 	sed -e 's,^,	,; s,$, \\,' $_TOP/${libgcc_db_tmplsrcs}.tmplfpsrcs.${_lib%.*}
    251  1.37  uebayasi }
    252  1.37  uebayasi 
    253  1.40  uebayasi get_libgcc_gen_tmplsrcs_tmplasmsrcs () {
    254  1.37  uebayasi 	local _lib=$1
    255  1.37  uebayasi 
    256  1.37  uebayasi 	printf '\n'
    257  1.40  uebayasi 	printf 'TMPLASMSRCS.%s = \\\n' $_lib
    258  1.40  uebayasi 	sed -e 's,^,	,; s,$, \\,' $_TOP/${libgcc_db_tmplsrcs}.tmplasmsrcs.${_lib%.*} | \
    259  1.37  uebayasi 	sed -e 's,LIB1ASMSRC,G_&,'
    260  1.37  uebayasi }
    261  1.37  uebayasi 
    262  1.36  uebayasi get_libgcc_gen_srcs () {
    263  1.36  uebayasi 	local _lib=$1
    264  1.36  uebayasi 
    265  1.36  uebayasi 	printf '\n'
    266  1.36  uebayasi 	printf 'SRCS.%s = \\\n' $_lib
    267  1.41  uebayasi 	if [ -e $_TOP/${libgcc_db_funcs}.S ]; then
    268  1.36  uebayasi 		comm -23 $_TOP/${libgcc_db_funcs}.${_lib%.*} $_TOP/${libgcc_db_funcs}.S | \
    269  1.36  uebayasi 		sed -e 's,$,.c,; s,^,tmp_,'
    270  1.36  uebayasi 		comm -12 $_TOP/${libgcc_db_funcs}.${_lib%.*} $_TOP/${libgcc_db_funcs}.S | \
    271  1.36  uebayasi 		sed -e 's,$,.S,; s,^,tmp_,'
    272  1.41  uebayasi 	else
    273  1.41  uebayasi 		cat $_TOP/${libgcc_db_funcs}.${_lib%.*} | \
    274  1.41  uebayasi 		sed -e 's,$,.c,; s,^,tmp_,'
    275  1.41  uebayasi 	fi | sort | \
    276  1.36  uebayasi 	sed -e 's,^,	,; s,$, \\,'
    277  1.36  uebayasi }
    278  1.36  uebayasi 
    279  1.38  uebayasi _lookup_objs () {
    280  1.38  uebayasi 	local _obj=$1; local _key=$2
    281  1.38  uebayasi 
    282  1.38  uebayasi 	eval grep \^$_obj\\\	 \$_TOP/\${libgcc_db_objs_${_key}} | cut -f2
    283  1.38  uebayasi }
    284  1.38  uebayasi 
    285  1.40  uebayasi get_libgcc_gen_srcs_tmplsrcs () {
    286  1.38  uebayasi 	cut -f1 $_TOP/${libgcc_db_objs_libs} | \
    287  1.38  uebayasi 	while read _obj; do
    288  1.38  uebayasi 		printf 'SRCS.tmp_%s=%s\n' \
    289  1.38  uebayasi 			"$( _lookup_objs $_obj srcs )" \
    290  1.40  uebayasi 			"$( _lookup_objs $_obj tmplsrcs )"
    291  1.38  uebayasi 	done | \
    292  1.38  uebayasi 	sed -e 's,\$(\(.*\)),${G_\1},'
    293  1.38  uebayasi }
    294  1.38  uebayasi 
    295  1.38  uebayasi get_libgcc_gen_srcs_cppflags () {
    296  1.38  uebayasi 	cut -f1 $_TOP/${libgcc_db_objs_libs} | \
    297  1.38  uebayasi 	while read _obj; do
    298  1.38  uebayasi 		printf '_CPPFLAGS.tmp_%s=%s\n' \
    299  1.38  uebayasi 			"$( _lookup_objs $_obj srcs )" \
    300  1.38  uebayasi 			"$( _lookup_objs $_obj cppflags | xargs )"
    301  1.38  uebayasi 	done
    302  1.38  uebayasi }
    303  1.38  uebayasi 
    304  1.38  uebayasi get_libgcc_gen_srcs_copts () {
    305  1.38  uebayasi 	cut -f1 $_TOP/${libgcc_db_objs_libs} | \
    306  1.38  uebayasi 	while read _obj; do
    307  1.38  uebayasi 		printf 'COPTS.tmp_%s=%s\n' \
    308  1.38  uebayasi 			"$( _lookup_objs $_obj srcs )" \
    309  1.38  uebayasi 			"$( _lookup_objs $_obj copts | xargs )"
    310  1.38  uebayasi 	done
    311  1.38  uebayasi }
    312  1.38  uebayasi 
    313  1.35  uebayasi get_libgcc_new_generate () {
    314  1.44  uebayasi 	local _abi=$1
    315  1.44  uebayasi 
    316  1.36  uebayasi 	for _lib in libgcc_s.so libgcc.a libgcc_eh.a libgcov.a; do
    317  1.40  uebayasi 		for _tmpl in tmplsrcs tmplfpsrcs tmplasmsrcs; do
    318  1.40  uebayasi 			eval get_libgcc_gen_tmplsrcs_${_tmpl} $_lib | \
    319  1.40  uebayasi 			write_mk ${libgcc_libs_mk}.${_lib%.*}.tmplsrcs.${_tmpl}.mk
    320  1.37  uebayasi 		done
    321  1.37  uebayasi 
    322  1.36  uebayasi 		get_libgcc_gen_srcs $_lib | \
    323  1.39  uebayasi 		write_mk ${libgcc_libs_mk}.${_lib%.*}.srcs.mk
    324  1.36  uebayasi 	done
    325  1.38  uebayasi 
    326  1.40  uebayasi 	for _arg in tmplsrcs cppflags copts; do
    327  1.38  uebayasi 		eval get_libgcc_gen_srcs_${_arg} | \
    328  1.38  uebayasi 		eval writefile \$libgcc_srcs_mk_${_arg}
    329  1.38  uebayasi 	done
    330  1.35  uebayasi }
    331  1.35  uebayasi 
    332  1.33  uebayasi #####
    333  1.33  uebayasi 
    334  1.28  uebayasi get_libgcc_new () {
    335  1.28  uebayasi 	_subdir="$1"
    336  1.44  uebayasi 	_abi="$2"
    337  1.27  uebayasi 
    338  1.29  uebayasi 	# List of generated files.
    339  1.29  uebayasi 
    340  1.44  uebayasi 	_machine_arch_subdir=gnu/lib/lib$_subdir/arch${_archsubdir}/$MACHINE_ARCH/$_abi
    341  1.27  uebayasi 
    342  1.28  uebayasi 	libgcc_db_funcs=${_machine_arch_subdir}/funcs
    343  1.40  uebayasi 	libgcc_db_tmplsrcs=${_machine_arch_subdir}/tmplsrcs
    344  1.28  uebayasi 	libgcc_db_objs_libs=${_machine_arch_subdir}/objs.libs
    345  1.28  uebayasi 	libgcc_db_objs_srcs=${_machine_arch_subdir}/objs.srcs
    346  1.40  uebayasi 	libgcc_db_objs_tmplsrcs=${_machine_arch_subdir}/objs.tmplsrcs
    347  1.28  uebayasi 	libgcc_db_objs_cppflags=${_machine_arch_subdir}/objs.cppflags
    348  1.28  uebayasi 	libgcc_db_objs_copts=${_machine_arch_subdir}/objs.copts
    349  1.28  uebayasi 
    350  1.44  uebayasi 	get_libgcc_new_analyze $_abi
    351  1.36  uebayasi 
    352  1.39  uebayasi 	libgcc_libs_mk=${_machine_arch_subdir}/libs
    353  1.28  uebayasi 	libgcc_srcs_mk=${_machine_arch_subdir}/srcs.mk
    354  1.40  uebayasi 	libgcc_srcs_mk_tmplsrcs=${_machine_arch_subdir}/srcs.tmplsrcs.mk
    355  1.28  uebayasi 	libgcc_srcs_mk_cppflags=${_machine_arch_subdir}/srcs.cppflags.mk
    356  1.28  uebayasi 	libgcc_srcs_mk_copts=${_machine_arch_subdir}/srcs.copts.mk
    357  1.28  uebayasi 
    358  1.44  uebayasi 	get_libgcc_new_generate $_abi
    359  1.26  uebayasi }
    360  1.26  uebayasi 
    361   1.1       mrg get_libgcc () {
    362  1.16       mrg 	_subdir="$1"
    363  1.16       mrg 	mkdir -p $_TOP/gnu/lib/lib$_subdir/arch
    364  1.16       mrg 
    365  1.16       mrg 	case "$_subdir" in
    366  1.16       mrg 	gcc3)
    367  1.16       mrg 		_extravars="USE_COLLECT2 LIB2FUNCS_1 LIB2FUNCS_2 xm_file"
    368  1.16       mrg 		_archsubdir=""
    369  1.16       mrg 		;;
    370  1.16       mrg 	gcc4)
    371  1.16       mrg 		_extravars="COLLECT2 UNWIND_H xm_include_list"
    372  1.16       mrg 		_archsubdir=""
    373  1.16       mrg 		;;
    374  1.16       mrg 	esac
    375   1.1       mrg 
    376   1.1       mrg 	# DPBIT, FPBIT only used on mn10[23]00, we don't need them.
    377   1.4       mrg 	# XXX we should probably grab everything Just In Case for
    378   1.4       mrg 	# the future.
    379  1.16       mrg 	{
    380  1.16       mrg 		getvars gcc/Makefile \
    381  1.16       mrg 			INCLUDES LIB2ADD LIB2ADDEH \
    382  1.16       mrg 			LIB1ASMFUNCS LIB1ASMSRC \
    383  1.16       mrg 			LIB2_DIVMOD_FUNCS LIB2FUNCS_ST \
    384  1.42  uebayasi 			LIB2FUNCS_EXTRA \
    385  1.16       mrg 			LIBGCC2_CFLAGS \
    386  1.16       mrg 			SHLIB_MKMAP SHLIB_MKMAP_OPTS \
    387  1.16       mrg 			SHLIB_MAPFILES SHLIB_NM_FLAGS \
    388  1.16       mrg 			EXTRA_HEADERS xm_defines \
    389  1.16       mrg 			tm_defines ${_extravars}
    390  1.16       mrg 	} | write_mk gnu/lib/lib$_subdir/arch${_archsubdir}/$MACHINE_ARCH.mk
    391  1.26  uebayasi 
    392  1.26  uebayasi 	# Generate new style files.
    393  1.27  uebayasi 	if [ -n "${MKNATIVE_LIBGCC_NEW}" ]; then
    394  1.44  uebayasi 		get_libgcc_new $_subdir $_ABI
    395  1.26  uebayasi 	fi
    396   1.1       mrg }
    397   1.1       mrg 
    398  1.24     skrll ##### gnu/lib/libgcov #####
    399  1.24     skrll 
    400  1.24     skrll get_libgcov () {
    401  1.24     skrll 	_subdir="$1"
    402  1.24     skrll 
    403  1.24     skrll 	mkdir -p $_TOP/gnu/lib/lib$_subdir/libgcov/arch/$MACHINE_ARCH
    404  1.24     skrll 
    405  1.24     skrll 	{
    406  1.24     skrll 		getvars gcc/Makefile \
    407  1.24     skrll 			LIBGCOV
    408  1.24     skrll 	} | write_mk gnu/lib/lib$_subdir/libgcov/arch/$MACHINE_ARCH/defs.mk
    409  1.24     skrll 
    410  1.24     skrll 	write_c gnu/lib/lib$_subdir/libgcov/arch/$MACHINE_ARCH/gcov-iov.h \
    411  1.24     skrll 	   <$_TMPDIR/gcc/gcov-iov.h
    412  1.24     skrll 
    413  1.24     skrll }
    414  1.24     skrll 
    415  1.16       mrg ##### gnu/usr.bin/gcc[34]/libiberty #####
    416   1.1       mrg 
    417  1.16       mrg get_gcc_libiberty () {
    418  1.16       mrg 	_subdir="$1"
    419  1.16       mrg 	mkdir -p $_TOP/gnu/usr.bin/$_subdir/libiberty/arch/$MACHINE_ARCH
    420   1.1       mrg 
    421   1.1       mrg 	getvars libiberty/Makefile \
    422   1.1       mrg 		ALLOCA EXTRA_OFILES LIBOBJS REQUIRED_OFILES \
    423  1.16       mrg 		| write_mk gnu/usr.bin/$_subdir/libiberty/defs.mk
    424   1.1       mrg 
    425  1.16       mrg 	write_c gnu/usr.bin/$_subdir/libiberty/arch/$MACHINE_ARCH/config.h \
    426   1.1       mrg 		<$_TMPDIR/libiberty/config.h
    427   1.1       mrg }
    428   1.1       mrg 
    429   1.1       mrg ##### gnu/lib/libobjc #####
    430   1.1       mrg 
    431   1.1       mrg get_libobjc () {
    432  1.18       mrg 	case "$1" in
    433  1.18       mrg 	*4)
    434  1.18       mrg 		_subdir="$1/arch/$MACHINE_ARCH"
    435  1.18       mrg 		_options="ALL_OPT_FILES"
    436  1.20     skrll 		_unwind="UNWIND_H"
    437  1.18       mrg 		;;
    438  1.18       mrg 	*)
    439  1.18       mrg 		_subdir="$1"
    440  1.18       mrg 		_options=""
    441  1.20     skrll 		_unwind=""
    442  1.18       mrg 		;;
    443  1.18       mrg 	esac
    444  1.18       mrg 
    445  1.16       mrg 	mkdir -p $_TOP/gnu/lib/$_subdir
    446   1.1       mrg 
    447  1.16       mrg 	{
    448  1.18       mrg 		if [ -n "$_options" ]; then
    449  1.18       mrg 			getvars gcc/Makefile $_options
    450  1.18       mrg 		fi
    451  1.16       mrg 		getvars $_PLATFORM/libobjc/Makefile \
    452  1.16       mrg 			ALL_CFLAGS INCLUDES OBJS OBJC_H \
    453  1.16       mrg 			| sed "s,$_GNU_DIST,\${GNUHOSTDIST},g"
    454  1.20     skrll 		if [ -n "$_unwind" ]; then
    455  1.20     skrll 			getvars gcc/Makefile $_unwind
    456  1.20     skrll 		fi
    457  1.16       mrg 	} | write_mk gnu/lib/$_subdir/defs.mk
    458  1.23     skrll 
    459  1.23     skrll 	write_c gnu/lib/$_subdir/config.h \
    460  1.23     skrll 		<$_TMPDIR/$_PLATFORM/libobjc/config.h
    461   1.1       mrg }
    462   1.1       mrg 
    463   1.1       mrg ##### gnu/lib/libstdc++-v3 #####
    464   1.1       mrg 
    465   1.1       mrg get_libstdcxx_v3 () {
    466  1.16       mrg 	_subdir="$1"
    467  1.16       mrg 	mkdir -p $_TOP/gnu/lib/$_subdir/arch/$MACHINE_ARCH
    468   1.1       mrg 
    469  1.16       mrg 	case ${_subdir} in
    470  1.16       mrg 	*4)
    471  1.16       mrg 		_src_CC_files="atomicity_file CCODECVT_CC CCOLLATE_CC CCTYPE_CC CMESSAGES_CC CMONEY_CC CNUMERIC_CC CTIME_CC CLOCALE_CC BASIC_FILE_CC"
    472  1.16       mrg 		_headers1="host_headers debug_headers tr1_headers c_compatibility_headers_extra"
    473  1.16       mrg 		_headers2="thread_host_headers host_headers_extra"
    474  1.19       mrg 		_build_headers="c++allocator.h c++config.h cxxabi_tweaks.h gthr-default.h gthr-posix.h gthr-single.h gthr-tpf.h gthr.h"
    475  1.20     skrll 		_unwind="UNWIND_H"
    476  1.16       mrg 		;;
    477  1.16       mrg 	*)
    478  1.16       mrg 		_src_CC_files=""
    479  1.16       mrg 		_headers1="target_headers"
    480  1.16       mrg 		_headers2="thread_target_headers target_headers_extra"
    481  1.19       mrg 		_build_headers="c++config.h gthr-default.h gthr-posix.h gthr-single.h gthr.h"
    482  1.20     skrll 		_unwind=""
    483  1.16       mrg 		;;
    484  1.16       mrg 	esac
    485  1.16       mrg 
    486  1.19       mrg 	# build files
    487  1.19       mrg 	for h in $_build_headers; do
    488  1.19       mrg 		write_c gnu/lib/$_subdir/arch/$MACHINE_ARCH/$h \
    489  1.19       mrg 			<$_TMPDIR/$_PLATFORM/libstdc++-v3/include/$_PLATFORM/bits/$h
    490  1.19       mrg 	done
    491  1.19       mrg 
    492  1.16       mrg 	write_c gnu/lib/$_subdir/arch/$MACHINE_ARCH/config.h \
    493   1.6       mrg 		<$_TMPDIR/$_PLATFORM/libstdc++-v3/config.h
    494   1.6       mrg 
    495   1.1       mrg 	{
    496   1.1       mrg 		# libmath
    497   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/libmath/Makefile \
    498   1.1       mrg 			libmath_la_SOURCES libmath_la_LIBADD
    499   1.1       mrg 
    500   1.1       mrg 		# libsupc++
    501   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/libsupc++/Makefile \
    502   1.1       mrg 			sources | sed 's/^G_sources=/G_LIBSUPCXX_SOURCES=/'
    503   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/libsupc++/Makefile \
    504   1.1       mrg 			c_sources | sed 's/^G_c_sources=/G_LIBSUPCXX_C_SOURCES=/'
    505   1.1       mrg 
    506   1.1       mrg 		# src
    507   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/src/Makefile \
    508  1.16       mrg 			sources $_src_CC_files SECTION_FLAGS | sed 's/^G_sources=/G_SRC_SOURCES=/'
    509   1.1       mrg 
    510   1.1       mrg 		# include
    511   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/include/Makefile \
    512   1.1       mrg 			c_base_headers_rename std_headers_rename
    513   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/include/Makefile \
    514   1.1       mrg 			bits_headers backward_headers ext_headers c_base_headers_extra \
    515  1.17       mrg 			$_headers1 | sed -e 's#/[^ 	][^ 	]*/##g' -e 's/\${GNUHOSTDIST}//g'
    516   1.1       mrg 		getvars $_PLATFORM/libstdc++-v3/include/Makefile \
    517  1.17       mrg 			$_headers2 | sed -e 's#\./[^ 	][^ 	]*/##g' -e 's/\${GNUHOSTDIST}//g'
    518  1.16       mrg 
    519  1.20     skrll 		if [ -n "$_unwind" ]; then
    520  1.20     skrll 			getvars gcc/Makefile $_unwind
    521  1.20     skrll 		fi
    522  1.16       mrg 	} | write_mk gnu/lib/$_subdir/arch/$MACHINE_ARCH/defs.mk
    523   1.1       mrg }
    524   1.1       mrg 
    525   1.1       mrg ##### gnu/usr.bin/gcc3 #####
    526   1.1       mrg 
    527   1.1       mrg get_gcc () {
    528  1.16       mrg 	_subdir="$1"
    529  1.16       mrg 	mkdir -p $_TOP/gnu/usr.bin/$_subdir/arch/$MACHINE_ARCH
    530  1.19       mrg 	case ${_subdir} in
    531  1.19       mrg 	gcc4)
    532  1.19       mrg 		mkdir -p $_TOP/gnu/usr.bin/$_subdir/libcpp/arch/$MACHINE_ARCH
    533  1.19       mrg 		_buildname="BUILD_"
    534  1.19       mrg 		_libcppsubdir=""
    535  1.20     skrll 		_extravars="TM_H ALL_OPT_FILES"
    536  1.20     skrll 		_hconfig_h=""
    537  1.20     skrll 		_extravars2="tm_file_list build_xm_include_list"
    538  1.20     skrll 		_extravars3="tm_p_include_list"
    539  1.20     skrll 		
    540  1.19       mrg 		;;
    541  1.19       mrg 	*)
    542  1.19       mrg 		_buildname="HOST_"
    543  1.19       mrg 		_libcppsubdir="gcc/"
    544  1.20     skrll 		_extravars=""
    545  1.20     skrll 		_hconfig_h="HCONFIG_H"
    546  1.20     skrll 		_extravars2=""
    547  1.20     skrll 		_extravars3=""
    548  1.19       mrg 		;;
    549  1.19       mrg 	esac
    550   1.1       mrg 
    551   1.1       mrg 	{
    552   1.1       mrg 		getvars gcc/Makefile \
    553  1.19       mrg 			${_buildname}EARLY_SUPPORT ${_buildname}ERRORS ${_buildname}PRINT \
    554  1.19       mrg 			${_buildname}RTL ${_buildname}SUPPORT ${_buildname}VARRAY | \
    555  1.16       mrg 		    sed -e 's#build/errors.o#build-errors.o#g' \
    556  1.16       mrg 			-e 's#build/print-rtl.o#build-print-rtl.o#g' \
    557  1.16       mrg 			-e 's#build/rtl.o#build-rtl.o#g' \
    558  1.16       mrg 			-e 's#build/varray.o#build-varray.o#g' \
    559  1.22       mrg 			-e 's#build/ggc-none.o#build-ggc-none.o#g' \
    560  1.16       mrg 			-e 's#build/##g'
    561  1.16       mrg 		getvars gcc/Makefile \
    562   1.1       mrg 			ALL_CFLAGS ALL_CPPFLAGS C_AND_OBJC_OBJS C_OBJS CCCP_OBJS \
    563  1.20     skrll 			GCOV_OBJS PROTO_OBJS ${_extravars1} \
    564   1.1       mrg 			INCLUDES md_file OBJC_OBJS OBJS out_file version \
    565  1.20     skrll 			BUILD_PREFIX RTL_H TREE_H ${_hconfig_h} BASIC_BLOCK_H GCC_H \
    566   1.1       mrg 			GTFILES_SRCDIR GTFILES_FILES_FILES GTFILES_FILES_LANGS \
    567   1.1       mrg 			GTFILES GTFILES_LANG_DIR_NAMES \
    568   1.1       mrg 			tm_defines host_xm_file host_xm_defines tm_p_file \
    569  1.21       mrg 			target_cpu_default ${_extravars} ${_extravars2} \
    570  1.20     skrll 			lang_specs_files ${_extravars3}
    571   1.1       mrg 		getvars gcc/Makefile \
    572   1.1       mrg 			LIB2ADDEHDEP | sed 's/unwind.inc//'
    573   1.1       mrg 		getvars gcc/Makefile \
    574   1.1       mrg 			CXX_OBJS CXX_C_OBJS | sed 's/cp\///g'
    575   1.1       mrg 		getvars gcc/Makefile \
    576   1.1       mrg 			F77_OBJS | sed 's/f\///g'
    577  1.19       mrg 		case ${_subdir} in
    578  1.19       mrg 		gcc4)
    579  1.19       mrg 			getvars libcpp/Makefile \
    580  1.19       mrg 				libcpp_a_OBJS
    581  1.19       mrg 			;;
    582  1.19       mrg 		gcc3)
    583  1.19       mrg 			getvars gcc/Makefile \
    584  1.19       mrg 				LIBCPP_OBJS LIBCPP_H
    585  1.19       mrg 			;;
    586  1.19       mrg 		esac
    587  1.12     skrll 		getvars gcc/Makefile \
    588  1.16       mrg 			ENABLE_SHARED
    589  1.20     skrll 		case ${_subdir} in
    590  1.20     skrll 		gcc4)
    591  1.20     skrll 			echo G_SHLIB_LINK="$CC -shared"
    592  1.20     skrll 			echo G_SHLIB_MULTILIB=.
    593  1.20     skrll 			;;
    594  1.20     skrll 		gcc3)
    595  1.20     skrll 			getvars gcc/Makefile \
    596  1.20     skrll 				SHLIB_LINK SHLIB_MULTILIB
    597  1.20     skrll 			;;
    598  1.20     skrll 		esac
    599  1.16       mrg 	} | write_mk gnu/usr.bin/$_subdir/arch/$MACHINE_ARCH/defs.mk
    600  1.16       mrg 
    601  1.16       mrg 	case "$_subdir" in
    602  1.16       mrg 	gcc3)
    603  1.16       mrg 		hfiles='auto-host configargs cs-hconfig gencheck hconfig gthr-default'
    604  1.16       mrg 		;;
    605  1.16       mrg 	gcc4)
    606  1.16       mrg 		write_c gnu/usr.bin/$_subdir/libcpp/arch/$MACHINE_ARCH/config.h <$_TMPDIR/libcpp/config.h
    607  1.25       mrg 		hfiles='auto-host configargs gencheck gthr-default tm bconfig config multilib'
    608  1.16       mrg 		;;
    609  1.16       mrg 	esac
    610  1.16       mrg 	for f in $hfiles; do
    611  1.16       mrg 		write_c gnu/usr.bin/$_subdir/arch/$MACHINE_ARCH/$f.h <$_TMPDIR/gcc/$f.h
    612   1.1       mrg 	done
    613   1.1       mrg }
    614   1.1       mrg 
    615   1.1       mrg ##### main #####
    616   1.1       mrg 
    617  1.16       mrg case "$1" in
    618  1.16       mrg # .mk and .h files for libgcc bootstrap (from host build)
    619  1.16       mrg libgcc)
    620  1.16       mrg 	get_libgcc gcc3
    621  1.16       mrg 	get_crtstuff crtstuff3
    622  1.16       mrg 	exit 0
    623  1.16       mrg 	;;
    624  1.16       mrg 
    625  1.16       mrg libgcc4)
    626  1.16       mrg 	get_libgcc gcc4
    627  1.16       mrg 	get_crtstuff crtstuff4
    628  1.16       mrg 	exit 0
    629  1.16       mrg 	;;
    630  1.16       mrg 
    631  1.16       mrg # gcc files
    632  1.16       mrg gcc4)
    633  1.16       mrg 	get_gcc gcc4
    634  1.16       mrg 	get_libgcc gcc4
    635  1.24     skrll 	get_libgcov gcc4
    636  1.16       mrg 	get_crtstuff crtstuff4
    637  1.16       mrg 	get_gcc_libiberty gcc4
    638  1.16       mrg 	get_libobjc libobjc4
    639  1.16       mrg 	get_libstdcxx_v3 libstdc++-v3_4
    640   1.1       mrg 	exit 0
    641   1.1       mrg 	;;
    642   1.1       mrg 
    643   1.1       mrg gcc3)
    644  1.16       mrg 	get_gcc gcc3
    645   1.1       mrg 	get_libg2c
    646  1.20     skrll 	get_libgcc gcc3
    647  1.16       mrg 	get_crtstuff crtstuff3
    648  1.20     skrll 	get_gcc_libiberty gcc3
    649  1.16       mrg 	get_libobjc libobjc3
    650  1.16       mrg 	get_libstdcxx_v3 libstdc++-v3
    651   1.1       mrg 	exit 0
    652   1.1       mrg 	;;
    653   1.1       mrg 
    654   1.1       mrg *)	echo invalid arguments; exit 1;;
    655   1.1       mrg esac
    656