2013-05-06 Paul Brook <paul@codesourcery.com>
[deliverable/binutils-gdb.git] / ld / configure.host
CommitLineData
252b5132
RH
1# This is the linker host specific file. This is invoked by the
2# autoconf generated configure script. Putting it in a separate shell
3# file lets us skip running autoconf when modifying host specific
4# information.
5bf135a7
NC
5#
6# Copyright 2012 Free Software Foundation
7#
8# This file is free software; you can redistribute it and/or modify
9# it under the terms of the GNU General Public License as published by
10# the Free Software Foundation; either version 3 of the License, or
11# (at your option) any later version.
12#
13# This program is distributed in the hope that it will be useful,
14# but WITHOUT ANY WARRANTY; without even the implied warranty of
15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16# GNU General Public License for more details.
17#
18# You should have received a copy of the GNU General Public License
19# along with this program; see the file COPYING3. If not see
20# <http://www.gnu.org/licenses/>.
21#
252b5132
RH
22
23# This file sets the following shell variables:
24# HDEFINES host specific compiler flags
25# HOSTING_CRT0 crt0.o file used for bootstrapping
26# HOSTING_LIBS libraries used for bootstrapping
252b5132
RH
27
28HDEFINES=
29HOSTING_CRT0=/lib/crt0.o
bba21f15 30HOSTING_LIBS='`if [ -f ../gcc/libgcc.a ]; then libgcc=../gcc/libgcc.a; else libgcc=\`${CC} -print-libgcc-file-name\`; fi; if [ -f ../gcc/libgcc_eh.a ]; then libgcc="$$libgcc ../gcc/libgcc_eh.a"; else libgcc_eh=\`${CC} -print-file-name=libgcc_eh.a\`; if [ x"$$libgcc_eh" != xlibgcc_eh.a ]; then libgcc="$$libgcc $$libgcc_eh"; fi; fi; if [ -f ../gcc/libunwind.a ]; then libgcc="$$libgcc ../gcc/libunwind.a"; else libunwind=\`${CC} -print-file-name=libunwind.a\`; if [ x"$$libunwind" != xlibunwind.a ]; then libgcc="$$libgcc $$libunwind"; fi; fi; echo --start-group $$libgcc -lc --end-group`'
252b5132 31
6f12f4ca
AM
32#
33# Generic configurations:
34#
35
36case "${host}" in
37
5b806d27
NC
38*-*-dragonfly*)
39 HOSTING_CRT0='-dynamic-linker `[ -f \`${CC} --print-prog-name=ld-elf.so.2\` ] || echo /usr/libexec/``${CC} --print-prog-name=ld-elf.so.2` `${CC} --print-file-name=crt1.o` `${CC} --print-file-name=crti.o` `${CC} --print-file-name=crtbegin.o`'
40 HOSTING_LIBS='-L`dirname \`${CC} --print-file-name=libc.so\`` '"$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} --print-file-name=crtend.o; fi` `${CC} --print-file-name=crtn.o`'
41 ;;
42
43*-*-freebsd* | *-*-kfreebsd*-gnu)
40bdaaa8 44 HOSTING_CRT0='-dynamic-linker `[ -f \`${CC} --print-prog-name=ld-elf.so.1\` ] || echo /usr/libexec/``${CC} --print-prog-name=ld-elf.so.1` `${CC} --print-file-name=crt1.o` `${CC} --print-file-name=crti.o` `${CC} --print-file-name=crtbegin.o`'
6f12f4ca
AM
45 HOSTING_LIBS='-L`dirname \`${CC} --print-file-name=libc.so\`` '"$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} --print-file-name=crtend.o; fi` `${CC} --print-file-name=crtn.o`'
46 ;;
47
48*-*-linux*aout* | *-*-linux*oldld)
49 HOSTING_CRT0=/usr/lib/crt0.o
50 ;;
51
52*-*-linux*libc1*)
53 HOSTING_CRT0='-dynamic-linker /lib/ld-linux.so.1 /usr/lib/crt1.o /usr/lib/crti.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; elif [ -f /usr/lib/crtbegin.o ]; then echo /usr/lib/crtbegin.o; else ${CC} --print-file-name=crtbegin.o; fi`'
54 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; elif [ -f /usr/lib/crtend.o ]; then echo /usr/lib/crtend.o; else ${CC} --print-file-name=crtend.o; fi` /usr/lib/crtn.o'
55 ;;
56
57*-*-linux*)
a3540342 58 HOSTING_CRT0='-dynamic-linker `${CC} --help --verbose 2>&1 | egrep "ld[^ ]*\.so" | sed -e "s,.*-dynamic-linker[ ][ ]*\(.*/ld[^ ]*\.so..\).*,\1,"` `${CC} --print-file-name=crt1.o` `${CC} --print-file-name=crti.o` `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} --print-file-name=crtbegin.o; fi`'
6738cadc 59 HOSTING_SCRT0='-dynamic-linker `${CC} --help --verbose 2>&1 | egrep "ld[^ ]*\.so" | sed -e "s,.*-dynamic-linker[ ][ ]*\(.*/ld[^ ]*\.so..\).*,\1,"` `${CC} --print-file-name=Scrt1.o` `${CC} --print-file-name=crti.o` `if [ -f ../gcc/crtbeginS.o ]; then echo ../gcc/crtbeginS.o; else ${CC} --print-file-name=crtbeginS.o; fi`'
6f12f4ca
AM
60 HOSTING_LIBS='-L`dirname \`${CC} --print-file-name=libc.so\`` '"$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} --print-file-name=crtend.o; fi` `${CC} --print-file-name=crtn.o`'
61 ;;
62
5940a93c
TS
63*-*-gnu*)
64 # When creating static executables, we ought to use crt0.o instead of crt1.o,
43fbacde 65 # <http://www.gnu.org/software/hurd/open_issues/binutils.html#static>,
5940a93c
TS
66 # but the testing infrastructure is not prepared for that. This is not
67 # relevant for most tests, and the few remaining ones have been XFAILed.
68 HOSTING_CRT0='-dynamic-linker `${CC} --help --verbose 2>&1 | egrep "ld[^ ]*\.so" | sed -e "s,.*-dynamic-linker[ ][ ]*\(.*/ld[^ ]*\.so[^ ]*\).*,\1,"` `${CC} --print-file-name=crt1.o` `${CC} --print-file-name=crti.o` `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} --print-file-name=crtbegin.o; fi`'
69 HOSTING_LIBS='-L`dirname \`${CC} --print-file-name=libc.so\`` '"$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} --print-file-name=crtend.o; fi` `${CC} --print-file-name=crtn.o`'
70 ;;
71
561c27b2
JT
72*-*-netbsd*)
73 # Different versions of NetBSD with the ELF object format use different
74 # sets of start/end files.
75 HOSTING_CRT0='-dynamic-linker /usr/libexec/ld.elf_so /usr/lib/crt0.o'
76 if [ -f `${CC} --print-file-name=crti.o` ]; then
77 # Support for GCC's crtstuff present.
78 HOSTING_CRT0="$HOSTING_CRT0 `${CC} --print-file-name=crti.o`"
79 if [ -f ../gcc/crtbegin.o ]; then
80 HOSTING_CRT0="$HOSTING_CRT0 ../gcc/crtbegin.o"
81 else
82 HOSTING_CRT0="$HOSTING_CRT0 `${CC} --print-file-name=crtbegin.o`"
83 fi
84 else
85 # Support for GCC's crtstuff not present.
86 HOSTING_CRT0="$HOSTING_CRT0 `${CC} --print-file-name=crtbegin.o`"
87 fi
561c27b2
JT
88 if [ -f `${CC} --print-file-name=crtn.o` ]; then
89 # Support for GCC's crtstuff present.
90 if [ -f ../gcc/crtbegin.o ]; then
91 HOSTING_LIBS="$HOSTING_LIBS ../gcc/crtend.o"
92 else
93 HOSTING_LIBS="$HOSTING_LIBS `${CC} --print-file-name=crtend.o`"
94 fi
95 HOSTING_LIBS="$HOSTING_LIBS `${CC} --print-file-name=crtn.o`"
96 else
97 # Support for GCC's crtstuff not present.
98 HOSTING_LIBS="$HOSTING_LIBS `${CC} --print-file-name=crtend.o`"
99 fi
100 ;;
101
fd9719b1
MK
102*-*-openbsd*)
103 HOSTING_CRT0="-dynamic-linker /usr/libexec/ld.so /usr/lib/crt0.o"
104 HOSTING_CRT0="$HOSTING_CRT0 /usr/lib/crtbegin.o"
105 HOSTING_LIBS="$HOSTING_LIBS /usr/lib/crtend.o"
106 ;;
107
6f12f4ca
AM
108esac
109
110#
111# Now more specific configurations
112#
113
252b5132
RH
114case "${host}" in
115
6f12f4ca
AM
116*-*-linux*aout* | *-*-linux*oldld | *-*-linux*libc1*)
117 # No further tweaking needed
118 ;;
119
ed84e695 120arm*-*-linux-*)
edc314c9 121 HOSTING_CRT0='-p '"$HOSTING_CRT0"
1c56fb87
NC
122 ;;
123
1abffd82 124hppa*64*-*-hpux11*)
1abffd82
JL
125 HOSTING_CRT0=/usr/ccs/lib/pa20_64/crt0.o
126 # Even if CC is not gcc, the tests use gcc.
00ce77f4 127 HOSTING_LIBS='--start-group `if [ -f ../gcc/libgcc.a ]; then echo ../gcc/libgcc.a; else if test "$GCC" = yes; then ${CC} --print-libgcc-file-name; else gcc --print-libgcc-file-name; fi fi` -lc --end-group /usr/lib/pa20_64/milli.a'
c0d48c0b
DA
128 ;;
129
561c27b2 130i[3-7]86-*-bsd* | i[3-7]86-*-freebsd[12] | i[3-7]86-*-freebsd[12]\.* | i[3-7]86-*-freebsd*aout*)
252b5132
RH
131 HOSTING_CRT0=/usr/lib/crt0.o
132 ;;
133
80c7c40a 134i[3-7]86-*-sysv4*)
cd5d26f2 135 HOSTING_CRT0='/usr/ccs/lib/crt1.o /usr/ccs/lib/crti.o /usr/ccs/lib/values-Xa.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 136 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi` /usr/ccs/lib/crtn.o'
252b5132
RH
137 ;;
138
80c7c40a 139i[3-7]86-sequent-ptx* | i[3-7]86-sequent-sysv*)
cd5d26f2 140 HOSTING_CRT0='/lib/crt0.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 141 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi`'
252b5132
RH
142 ;;
143
80c7c40a 144i[3-7]86-*-sysv*)
252b5132 145 HOSTING_CRT0='/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; fi`'
6f12f4ca 146 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; fi` /lib/crtn.o'
252b5132
RH
147 ;;
148
80c7c40a 149i[3-7]86-*-solaris*)
cd5d26f2 150 HOSTING_CRT0='`if [ -f ../gcc/crt1.o ]; then echo ../gcc/crt1.o; else ${CC} -print-file-name=crt1.o; fi` `if [ -f ../gcc/crti.o ]; then echo ../gcc/crti.o; else ${CC} -print-file-name=crti.o; fi` /usr/ccs/lib/values-Xa.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 151 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else ${CC} -print-file-name=crtn.o; fi`'
252b5132
RH
152 ;;
153
80c7c40a 154i[3-7]86-*-sco* | i[3-7]86-*-isc*)
252b5132
RH
155 # In some configurations gcc does not use crtbegin.o and crtend.o.
156 # In that case gcc -print-file-name=crtbegin.o will simply print
157 # crtbegin.o. We create dummy crtbegin.o and crtend.o files to
158 # handle this.
159 echo "int dummy_crtbegin () { return 0; }" > crtbegin.c
160 ${CC} -c crtbegin.c -o crtbegin.o
161 rm -f crtbegin.c
162 echo "int dummy_crteng () { return 0; }" > crtend.c
163 ${CC} -c crtend.c -o crtend.o
164 rm -f crtend.c
cd5d26f2 165 HOSTING_CRT0='/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 166 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi` /lib/crtn.o'
252b5132
RH
167 ;;
168
80c7c40a 169i[3-7]86-pc-interix*)
a7e78dae 170 HOSTING_CRT0='$$INTERIX_ROOT/usr/lib/crt0.o'
6f12f4ca 171 HOSTING_LIBS='-L $$X/local_bin -L $$INTERIX_ROOT/usr/lib '"$HOSTING_LIBS"' -lcpsx -lc -lcpsx $$INTERIX_ROOT/usr/lib/psxdll.a $$INTERIX_ROOT/usr/lib/psxdll2.a'
a7e78dae
ILT
172 ;;
173
a07ee50e 174i[3-7]86-*-cygwin* | x86_64-*-cygwin*)
0bc4911d 175 HOSTING_LIBS="$HOSTING_LIBS"' -lcygwin -L/usr/lib/w32api -luser32 -lkernel32 -ladvapi32 -lshell32 `if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else ${CC} -print-libgcc-file-name; fi`'
350fdb00
PB
176 ;;
177
f9967789
NC
178i[3-7]86-*-mingw*)
179 #We only support msvcrt.dll, crtid == 2.
180 HOSTING_CRT0='/mingw/lib/crt2.o'
181 HOSTING_LIBS='-L/mingw/lib -lmingw32 -lmoldname -lmingwex -lmsvcrt -luser32 -lkernel32 -ladvapi32 -lshell32 -lmingw32 -lmoldname -lmingwex -lmsvcrt `if [ -f ../gcc/libgcc.a ] ; then echo ../gcc/libgcc.a ; else ${CC} -print-libgcc-file-name; fi`'
182 ;;
183
6f12f4ca 184mips*-sgi-irix4* | mips*-sgi-irix5*)
252b5132 185 HOSTING_CRT0=/usr/lib/crt1.o
6f12f4ca 186 HOSTING_LIBS="$HOSTING_LIBS"' /usr/lib/crtn.o'
252b5132
RH
187 ;;
188
88659ef5 189mips*-sgi-irix6*)
cd5d26f2 190 HOSTING_CRT0='/usr/lib32/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o ; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 191 HOSTING_LIBS='-L/usr/lib32 '"$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o ; else ${CC} -print-file-name=crtend.o; fi` /usr/lib32/crtn.o -init __do_global_ctors -fini __do_global_dtors'
88659ef5
MM
192 ;;
193
252b5132 194m68*-motorola-sysv)
cd5d26f2 195 HOSTING_CRT0='`if [ -f ../gcc/crt0.o ]; then echo ../gcc/crt0.o; elif [ -f \`${CC} -print-file-name=\`crt0.o ]; then echo \`${CC} -print-file-name=\`crt0.o; else echo /lib/crt0.o; fi`'
edc314c9
AM
196 HOSTING_LIBS=`sed -e 's,-lc,-lc881,' <<EOF
197$HOSTING_LIBS
198EOF`
252b5132
RH
199 ;;
200
201m68*-sun-*)
202 HOSTING_CRT0='/usr/lib/crt0.o /usr/lib/Fcrt1.o -L/usr/lib/fsoft.o'
203 ;;
204
205m88*-*-dgux*)
206 HDEFINES=-D__using_DGUX
207 HOSTING_CRT0='/lib/crt0.o -X'
208 HOSTING_LIBS=/usr/sde/m88kbcs/lib/libc.a
209 ;;
210
211m88*-motorola-sysv3)
cd5d26f2 212 HOSTING_CRT0='/lib/crt0.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 213 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi`'
252b5132
RH
214 ;;
215
d6d0b336 216sparc-*-solaris2*)
cd5d26f2 217 HOSTING_CRT0='`if [ -f ../gcc/crt1.o ]; then echo ../gcc/crt1.o; else ${CC} -print-file-name=crt1.o; fi` `if [ -f ../gcc/crti.o ]; then echo ../gcc/crti.o; else ${CC} -print-file-name=crti.o; fi` /usr/ccs/lib/values-Xa.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
6f12f4ca 218 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else ${CC} -print-file-name=crtn.o; fi`'
252b5132
RH
219 ;;
220
d6d0b336
EB
221sparc64-*-solaris2* | sparcv9-*-solaris2*)
222 HOSTING_CRT0='`if [ -f ../gcc/crt1.o ]; then echo ../gcc/crt1.o; else ${CC} -print-file-name=crt1.o; fi` `if [ -f ../gcc/crti.o ]; then echo ../gcc/crti.o; else ${CC} -print-file-name=crti.o; fi` /usr/ccs/lib/sparcv9/values-Xa.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
223 HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi` `if [ -f ../gcc/crtn.o ]; then echo ../gcc/crtn.o; else ${CC} -print-file-name=crtn.o; fi`'
224 ;;
225
5b806d27
NC
226*-*-dragonfly*)
227 ;;
228
229*-*-freebsd* | *-*-kfreebsd*-gnu)
a842aceb
DB
230 ;;
231
5940a93c 232*-*-linux* | *-*-gnu*)
1a3d33ce
AM
233 ;;
234
c657a1f0 235*-*-netbsd*)
c657a1f0
MG
236 ;;
237
fd9719b1
MK
238*-*-openbsd*)
239 ;;
240
a842aceb
DB
241alpha*-*-*)
242 HOSTING_CRT0=/usr/ccs/lib/crt0.o
a842aceb
DB
243 ;;
244
252b5132 245esac
6738cadc
L
246
247# Provide default HOSTING_SCRT0. Each host should define a proper one
248# if needed.
249if test -z "$HOSTING_SCRT0"; then
250 HOSTING_SCRT0="$HOSTING_CRT0"
251fi
This page took 0.551425 seconds and 4 git commands to generate.