blob: 88d66924088aae39fb050bd4823a524a1a9cd1eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
# This file is a shell script that supplies the information necessary
# to tailor a template configure script into the configure script
# appropriate for this directory. For more information, check any
# existing configure script.
configdirs="doc"
srctrigger=libbfd.c
srcname="BFD"
target_dependent=true
# per-host:
. ${srcdir}/configure.host
# Set up to make a link between the host's include file and "sysdep.h".
files="hosts/${my_host}.h"
links="sysdep.h"
if [ ! -f ${srcdir}/${files} ] ; then
files=../bfd/hosts/std-host.h
echo "[${srcname} has no specific support for host ${host} -- using std-host]"
fi
host_makefile_frag=
if [ -f ${srcdir}/config/${my_host}.mh ] ; then
host_makefile_frag=config/${my_host}.mh
fi
# per-target:
# WHEN ADDING ENTRIES TO THIS MATRIX:
# Make sure that the left side always has two dashes. Otherwise you
# can get spurious matches. Even for unambiguous cases, do this as a
# convention, else the table becomes a real mess to understand and maintain.
case "${target}" in
a29k-*-ebmon) bfd_target=a29k-coff ;;
a29k-*-udi) bfd_target=a29k-coff ;;
a29k-*-aout) bfd_target=a29k-aout ;;
a29k-*-coff) bfd_target=a29k-coff ;;
a29k-*-sym1) bfd_target=a29k-coff ;;
h8300-*-*) bfd_target=h8300-coff ;;
hppa*-*-bsd) bfd_target=hppabsd ;;
hppa*-*-hpux) bfd_target=hppahpux ;;
i[34]86-*-sysv4*) bfd_target=i386-elf ;;
i[34]86-*-sysv*) bfd_target=i386-coff ;;
i[34]86-*-isc*) bfd_target=i386-coff ;;
i[34]86-*-sco*) bfd_target=i386-sco ;;
i[34]86-*-bsd*) bfd_target=i386-bsd ;;
i[34]86-*-aix*) bfd_target=i386-coff ;;
i[34]86-*-elf) bfd_target=i386-elf ;;
i[34]86-none-*) bfd_target=i386-coff ;;
i960-*-vxworks) bfd_target=i960-bout ;;
i960-*-aout) bfd_target=i960-bout ;;
i960-*-bout) bfd_target=i960-bout ;;
m68*-hp-bsd) bfd_target=hp300bsd ;;
m68*-*-aout) bfd_target=m68k-aout ;;
m68*-*-coff) bfd_target=m68k-coff ;;
m68*-*-hpux) bfd_target=hp300 ;;
m68*-*-os68k) bfd_target=m68k-aout ;;
m68*-*-sunos*) bfd_target=m68k-aout ;;
m68*-*-vxworks*) bfd_target=m68k-aout ;;
m68*-ericsson-*) bfd_target=m68k-aout ;;
m68*-netx-*) bfd_target=m68k-aout ;;
m88k-*-*) bfd_target=m88k-coff ;;
mips-big-*) bfd_target=irix3 ;;
mips-dec-bsd*) bfd_target=mipsdecbsd ;;
mips-dec-*) bfd_target=decstation ;;
mips-sgi-*) bfd_target=irix3 ;;
rs6000-*-*) bfd_target=rs6000 ;;
sparc-*-solaris2*) bfd_target=sparc-elf ;;
sparc-*-sysv4*) bfd_target=sparc-elf ;;
sparc*-*-*) bfd_target=sparc-aout ;;
tahoe-*-*) bfd_target=tahoe ;;
vax-*-vms) bfd_target=vax-vms ;;
vax-*-*) bfd_target=vax ;;
we32k-*-*) bfd_target=we32k ;;
z8k*-*-*) bfd_target=z8k-coff ;;
*-*-aout) bfd_target=${target_cpu}-aout ;;
*-*-bsd) bfd_target=${target_cpu}-aout ;;
*-*-sysv4*) bfd_target=${target_cpu}-elf ;;
*-*-solaris2*) bfd_target=${target_cpu}-elf ;;
*-*-go32) bfd_target=${target_cpu}-aout ;;
*-*-linux*) bfd_target=${target_cpu}-linux ;;
*-*-sysv*) bfd_target=${target_cpu}-coff ;;
*-adobe-*) bfd_target=adobe ;;
*-sony-*) bfd_target=news ;;
*-intel-*) bfd_target=${target_cpu}-coff ;;
*-stratus-*) bfd_target=${target_cpu}-elf ;;
*-cbm-*) bfd_target=${target_cpu}-elf ;;
*-ncr-*) bfd_target=${target_cpu}-elf ;;
*-tandem-*) bfd_target=st2000 ;;
esac
if [ ! -f ${srcdir}/config/${bfd_target}.mt ] ; then
if [ -n "${bfd_target}" ] ; then
echo '***' No file ${srcdir}/config/${bfd_target}.mt 1>&2
fi
echo '***' BFD does not support target ${target} 1>&2
echo '***' Look in bfd/configure.in for supported targets 1>&2
exit 1
fi
target_makefile_frag=config/${bfd_target}.mt
# We don't do any links based on the target system, just very minor makefile
# config.
# post-target:
case ${with_minimal_bfd} in
yes)
echo MINIMIZE=1 >> Makefile
;;
no | "")
;;
*)
echo "*** bad value \"${with_minimal_bfd}\" for minimal-bfd flag; ignored" 1>&2
;;
esac
|