Commit | Line | Data |
---|---|---|
c906108c SS |
1 | # Mapping of configurations into GDB host definitions. This is |
2 | # invoked from the autoconf generated configure script. | |
3 | ||
4 | # This file sets the following shell variables: | |
c35f4ffc AC |
5 | # gdb_host_cpu generic name of host's CPU |
6 | # gdb_host name of GDB host definition to use | |
7 | # gdb_host_float_format host's float floatformat, or 0 | |
8 | # gdb_host_double_format host's double floatformat, or 0 | |
9 | # gdb_host_long_double_format host's long double floatformat, or 0 | |
121ce6e5 | 10 | # gdb_host_obs host-specific .o files to include |
c906108c SS |
11 | |
12 | # Map host cpu into the config cpu subdirectory name. | |
13 | # The default is $host_cpu. | |
14 | ||
483367ee DJ |
15 | case $host in |
16 | hppa*-*-hiux* | \ | |
17 | i[34567]86-ncr-* | \ | |
18 | i[34567]86-*-dgux* | \ | |
19 | i[34567]86-*-lynxos* | \ | |
20 | i[34567]86-*-sco3.2v5* | \ | |
21 | i[34567]86-*-sco3.2v4* | \ | |
22 | i[34567]86-*-sco* | \ | |
23 | i[34567]86-*-sysv4.2* | \ | |
24 | i[34567]86-*-sysv4* | \ | |
25 | i[34567]86-*-sysv5* | \ | |
26 | i[34567]86-*-unixware2* | \ | |
27 | i[34567]86-*-unixware* | \ | |
28 | i[34567]86-*-sysv* | \ | |
29 | i[34567]86-*-isc* | \ | |
30 | rs6000-*-lynxos* | \ | |
31 | null) | |
32 | echo "*** Configuration $host is obsolete." >&2 | |
33 | echo "*** Support has been REMOVED." >&2 | |
34 | exit 1 | |
35 | ;; | |
36 | esac | |
37 | ||
c906108c SS |
38 | case "${host_cpu}" in |
39 | ||
40 | alpha*) gdb_host_cpu=alpha ;; | |
f2ae7829 | 41 | arm*) gdb_host_cpu=arm ;; |
c906108c | 42 | hppa*) gdb_host_cpu=pa ;; |
1581182a | 43 | i[34567]86*) gdb_host_cpu=i386 ;; |
c906108c | 44 | m68*) gdb_host_cpu=m68k ;; |
bf2ca189 | 45 | m88*) gdb_host_cpu=m88k ;; |
2aa830e4 | 46 | mips*) gdb_host_cpu=mips ;; |
c906108c | 47 | powerpc*) gdb_host_cpu=powerpc ;; |
ea87b71b | 48 | sparcv9 | sparc64) gdb_host_cpu=sparc ;; |
4009c677 | 49 | s390*) gdb_host_cpu=s390 ;; |
13a38d45 | 50 | sh*) gdb_host_cpu=sh ;; |
abf22e64 | 51 | x86_64*) gdb_host_cpu=i386 ;; |
7a76ced5 | 52 | xscale*) gdb_host_cpu=arm ;; |
ee84457a | 53 | m32r*) gdb_host_cpu=m32r ;; |
ca3bf3bd | 54 | xtensa*) gdb_host_cpu=xtensa ;; |
c906108c SS |
55 | *) gdb_host_cpu=$host_cpu ;; |
56 | ||
57 | esac | |
58 | ||
59 | # map host info into gdb names. | |
60 | ||
61 | case "${host}" in | |
62 | ||
c906108c SS |
63 | alpha*-*-osf1*) gdb_host=alpha-osf1 ;; |
64 | alpha*-*-osf2*) gdb_host=alpha-osf2 ;; | |
65 | alpha*-*-osf[3456789]*) gdb_host=alpha-osf3 ;; | |
66 | alpha*-*-linux*) gdb_host=alpha-linux ;; | |
69489883 NN |
67 | alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu) |
68 | gdb_host=fbsd ;; | |
69 | alpha*-*-netbsd* | alpha*-*-knetbsd*-gnu) | |
70 | gdb_host=nbsd ;; | |
2031c21a | 71 | alpha*-*-openbsd*) gdb_host=nbsd ;; |
c906108c | 72 | |
f2ae7829 | 73 | arm*-*-linux*) gdb_host=linux ;; |
69489883 NN |
74 | arm*-*-netbsdelf* | arm*-*-knetbsd*-gnu) |
75 | gdb_host=nbsdelf ;; | |
9eeef8ef | 76 | arm*-*-netbsd*) gdb_host=nbsdaout ;; |
872544e5 | 77 | arm*-*-openbsd*) gdb_host=nbsdelf ;; |
c906108c | 78 | |
483367ee | 79 | hppa*-*-hpux*) |
eeb8076c | 80 | gdb_host=hpux ;; |
50306a9d | 81 | hppa*-*-linux*) gdb_host=linux ;; |
0e56aeaf | 82 | hppa*-*-openbsd*) gdb_host=obsd ;; |
c906108c | 83 | |
48184fd4 AC |
84 | i[34567]86-*-freebsd* | i[34567]86-*-kfreebsd*-gnu) |
85 | gdb_host=fbsd ;; | |
86 | i[34567]86-*-netbsdelf* | i[34567]86-*-knetbsd*-gnu) | |
87 | gdb_host=nbsdelf ;; | |
1581182a MK |
88 | i[34567]86-*-netbsd*) gdb_host=nbsdaout ;; |
89 | i[34567]86-*-go32*) gdb_host=go32 ;; | |
121ce6e5 DJ |
90 | i[34567]86-*-mingw32*) gdb_host=mingw |
91 | gdb_host_obs=mingw-hdep.o | |
92 | ;; | |
1581182a MK |
93 | i[34567]86-*-msdosdjgpp*) gdb_host=go32 ;; |
94 | i[34567]86-*-linux*) gdb_host=linux ;; | |
1581182a | 95 | i[34567]86-*-gnu*) gdb_host=i386gnu ;; |
61bb466e | 96 | i[3456]86-*-nto*) gdb_host=nto ;; |
ba361932 MK |
97 | i[34567]86-*-openbsd[0-2].* | i[34567]86-*-openbsd3.[0-3]) |
98 | gdb_host=obsdaout ;; | |
1581182a | 99 | i[34567]86-*-openbsd*) gdb_host=obsd ;; |
0bbc026e | 100 | i[34567]86-*-solaris2.1[0-9]*) gdb_host=sol2-64 ;; |
1581182a | 101 | i[34567]86-*-solaris*) gdb_host=i386sol2 ;; |
1581182a | 102 | i[34567]86-*-cygwin*) gdb_host=cygwin ;; |
eafb8301 KB |
103 | |
104 | ia64-*-linux*) gdb_host=linux ;; | |
105 | ||
c906108c | 106 | m68*-*-linux*) gdb_host=linux ;; |
69489883 NN |
107 | m68*-*-netbsdelf* | m68*-*-knetbsd*-gnu) |
108 | gdb_host=nbsdelf ;; | |
9eeef8ef | 109 | m68*-*-netbsd*) gdb_host=nbsdaout ;; |
8f2d3ea0 | 110 | m68*-*-openbsd*) gdb_host=obsd ;; |
3c7012f5 | 111 | |
bf2ca189 MK |
112 | m88*-*-openbsd*) gdb_host=obsd ;; |
113 | ||
c906108c | 114 | mips-sgi-irix5*) gdb_host=irix5 ;; |
1d06468c | 115 | mips-sgi-irix6*) gdb_host=irix6 ;; |
2aa830e4 | 116 | mips*-*-linux*) gdb_host=linux ;; |
69489883 NN |
117 | mips*-*-netbsd* | mips*-*-knetbsd*-gnu) |
118 | gdb_host=nbsd ;; | |
abc08782 | 119 | mips64*-*-openbsd*) gdb_host=obsd64 ;; |
c906108c | 120 | |
6328991e | 121 | powerpc-*-aix*) gdb_host=aix ;; |
c906108c | 122 | powerpc-*-linux*) gdb_host=linux ;; |
69489883 NN |
123 | powerpc-*-netbsd* | powerpc-*-knetbsd*-gnu) |
124 | gdb_host=nbsd ;; | |
d195bc9f | 125 | powerpc-*-openbsd*) gdb_host=obsd ;; |
c906108c | 126 | |
771b4502 UW |
127 | powerpc64-*-linux*) gdb_host=ppc64-linux |
128 | # Support 'pseudo-native' debugging on the Cell BE | |
129 | if test "${target_cpu}" = "spu"; then | |
130 | gdb_host=spu-linux | |
131 | gdb_native=yes | |
132 | fi | |
133 | ;; | |
8fbb30b1 | 134 | |
c906108c SS |
135 | rs6000-*-aix4*) gdb_host=aix4 ;; |
136 | rs6000-*-*) gdb_host=rs6000 ;; | |
137 | ||
4009c677 AC |
138 | s390*-*-*) gdb_host=s390 ;; |
139 | ||
69489883 NN |
140 | sh*-*-netbsdelf* | sh*-*-knetbsd*-gnu) |
141 | gdb_host=nbsd ;; | |
bd372731 | 142 | sh*-*-openbsd*) gdb_host=nbsd ;; |
13a38d45 | 143 | |
69489883 NN |
144 | sparc64-*-freebsd* | sparc64-*-kfreebsd*-gnu) |
145 | gdb_host=fbsd ;; | |
c906108c | 146 | sparc-*-linux*) gdb_host=linux ;; |
386c036b | 147 | sparc64-*-linux*) gdb_host=linux64 ;; |
69489883 NN |
148 | sparc-*-netbsdelf* | sparc-*-knetbsd*-gnu) |
149 | gdb_host=nbsdelf ;; | |
9eeef8ef JT |
150 | sparc-*-netbsdaout*) gdb_host=nbsdaout ;; |
151 | sparc-*-netbsd*) gdb_host=nbsdaout ;; | |
69489883 NN |
152 | sparc64-*-netbsd* | sparc64-*-knetbsd*-gnu) |
153 | gdb_host=nbsd64 ;; | |
f2cab569 MK |
154 | sparc-*-openbsd*) gdb_host=nbsdelf ;; |
155 | sparc64-*-openbsd*) gdb_host=nbsd64 ;; | |
386c036b MK |
156 | sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*) |
157 | gdb_host=sol2 | |
158 | ;; | |
c906108c | 159 | |
b9e1c0d6 | 160 | vax-*-bsd*) gdb_host=vax ;; |
69489883 NN |
161 | vax-*-netbsdelf* | vax-*-knetbsd*-gnu) |
162 | gdb_host=nbsdelf ;; | |
6f606e1c | 163 | vax-*-netbsd*) gdb_host=nbsdaout ;; |
9f076e7a | 164 | vax-*-openbsd*) gdb_host=obsd ;; |
b9e1c0d6 | 165 | vax-*-ultrix*) gdb_host=vax ;; |
c906108c | 166 | |
9c1488cb | 167 | x86_64-*-linux*) gdb_host=linux64 ;; |
69489883 NN |
168 | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) |
169 | gdb_host=fbsd64 ;; | |
170 | x86_64-*-netbsd* | x86_64-*-knetbsd*-gnu) | |
171 | gdb_host=nbsd64 ;; | |
e2879ccb | 172 | x86_64-*-openbsd*) gdb_host=obsd64 ;; |
abf22e64 | 173 | |
ee84457a AC |
174 | m32r*-*-linux*) gdb_host=linux ;; |
175 | ||
ca3bf3bd DJ |
176 | xtensa*-*-linux*) gdb_host=linux ;; |
177 | ||
c906108c | 178 | esac |
c35f4ffc AC |
179 | |
180 | ||
181 | ||
182 | # Map the host/cpu onto the floatformat correspondong to C's "float", | |
183 | # "double" and "long double" types. | |
184 | ||
185 | case "${host}" in | |
186 | i[34567]86-*-*) | |
187 | gdb_host_float_format="&floatformat_ieee_single_little" | |
188 | gdb_host_double_format="&floatformat_ieee_double_little" | |
189 | gdb_host_long_double_format="&floatformat_i387_ext" | |
190 | ;; | |
191 | hppa*-*-linux*) | |
192 | gdb_host_float_format="&floatformat_ieee_single_big" | |
193 | gdb_host_double_format="&floatformat_ieee_double_big" | |
194 | gdb_host_long_double_format="&floatformat_ieee_double_big" | |
195 | ;; | |
ced0d73d AS |
196 | m68*-*-*) |
197 | gdb_host_float_format="&floatformat_ieee_single_big" | |
198 | gdb_host_double_format="&floatformat_ieee_double_big" | |
199 | gdb_host_long_double_format="&floatformat_m68881_ext" | |
200 | ;; | |
c35f4ffc AC |
201 | *) |
202 | gdb_host_float_format=0 | |
203 | gdb_host_double_format=0 | |
204 | gdb_host_long_double_format=0 | |
205 | ;; | |
206 | esac |