configure.host 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259
  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.
  5. #
  6. # Copyright (C) 2012-2015 Free Software Foundation, Inc.
  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. #
  22. # This file sets the following shell variables:
  23. # HDEFINES host specific compiler flags
  24. # HOSTING_CRT0 crt0.o file used for bootstrapping
  25. # HOSTING_LIBS libraries used for bootstrapping
  26. HDEFINES=
  27. HOSTING_CRT0=/lib/crt0.o
  28. HOSTING_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`'
  29. #
  30. # Generic configurations:
  31. #
  32. case "${host}" in
  33. *-*-dragonfly*)
  34. 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`'
  35. 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`'
  36. ;;
  37. *-*-freebsd* | *-*-kfreebsd*-gnu)
  38. 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`'
  39. 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`'
  40. ;;
  41. *-*-linux*aout* | *-*-linux*oldld)
  42. HOSTING_CRT0=/usr/lib/crt0.o
  43. ;;
  44. *-*-linux*libc1*)
  45. 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`'
  46. 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'
  47. ;;
  48. *-*-linux*)
  49. 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`'
  50. 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`'
  51. HOSTING_SLIBS='-L`dirname \`${CC} --print-file-name=libc.so\`` '"$HOSTING_LIBS"' `if [ -f ../gcc/crtendS.o ]; then echo ../gcc/crtendS.o; else ${CC} --print-file-name=crtendS.o; fi` `${CC} --print-file-name=crtn.o`'
  52. 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`'
  53. ;;
  54. *-*-gnu*)
  55. # When creating static executables, we ought to use crt0.o instead of crt1.o,
  56. # <http://www.gnu.org/software/hurd/open_issues/binutils.html#static>,
  57. # but the testing infrastructure is not prepared for that. This is not
  58. # relevant for most tests, and the few remaining ones have been XFAILed.
  59. 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`'
  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. *-*-netbsd*)
  63. # Different versions of NetBSD with the ELF object format use different
  64. # sets of start/end files.
  65. HOSTING_CRT0='-dynamic-linker /usr/libexec/ld.elf_so /usr/lib/crt0.o'
  66. if [ -f `${CC} --print-file-name=crti.o` ]; then
  67. # Support for GCC's crtstuff present.
  68. HOSTING_CRT0="$HOSTING_CRT0 `${CC} --print-file-name=crti.o`"
  69. if [ -f ../gcc/crtbegin.o ]; then
  70. HOSTING_CRT0="$HOSTING_CRT0 ../gcc/crtbegin.o"
  71. else
  72. HOSTING_CRT0="$HOSTING_CRT0 `${CC} --print-file-name=crtbegin.o`"
  73. fi
  74. else
  75. # Support for GCC's crtstuff not present.
  76. HOSTING_CRT0="$HOSTING_CRT0 `${CC} --print-file-name=crtbegin.o`"
  77. fi
  78. if [ -f `${CC} --print-file-name=crtn.o` ]; then
  79. # Support for GCC's crtstuff present.
  80. if [ -f ../gcc/crtbegin.o ]; then
  81. HOSTING_LIBS="$HOSTING_LIBS ../gcc/crtend.o"
  82. else
  83. HOSTING_LIBS="$HOSTING_LIBS `${CC} --print-file-name=crtend.o`"
  84. fi
  85. HOSTING_LIBS="$HOSTING_LIBS `${CC} --print-file-name=crtn.o`"
  86. else
  87. # Support for GCC's crtstuff not present.
  88. HOSTING_LIBS="$HOSTING_LIBS `${CC} --print-file-name=crtend.o`"
  89. fi
  90. ;;
  91. *-*-openbsd*)
  92. HOSTING_CRT0="-dynamic-linker /usr/libexec/ld.so /usr/lib/crt0.o"
  93. HOSTING_CRT0="$HOSTING_CRT0 /usr/lib/crtbegin.o"
  94. HOSTING_LIBS="$HOSTING_LIBS /usr/lib/crtend.o"
  95. ;;
  96. esac
  97. #
  98. # Now more specific configurations
  99. #
  100. case "${host}" in
  101. *-*-linux*aout* | *-*-linux*oldld | *-*-linux*libc1*)
  102. # No further tweaking needed
  103. ;;
  104. arm*-*-linux-*)
  105. HOSTING_CRT0='-p '"$HOSTING_CRT0"
  106. ;;
  107. hppa*64*-*-hpux11*)
  108. HOSTING_CRT0=/usr/ccs/lib/pa20_64/crt0.o
  109. # Even if CC is not gcc, the tests use gcc.
  110. 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'
  111. ;;
  112. i[3-7]86-*-bsd* | i[3-7]86-*-freebsd[12] | i[3-7]86-*-freebsd[12]\.* | i[3-7]86-*-freebsd*aout*)
  113. HOSTING_CRT0=/usr/lib/crt0.o
  114. ;;
  115. i[3-7]86-*-sysv4*)
  116. 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`'
  117. 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'
  118. ;;
  119. i[3-7]86-sequent-ptx* | i[3-7]86-sequent-sysv*)
  120. HOSTING_CRT0='/lib/crt0.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
  121. HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi`'
  122. ;;
  123. i[3-7]86-*-sysv*)
  124. HOSTING_CRT0='/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; fi`'
  125. HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; fi` /lib/crtn.o'
  126. ;;
  127. i[3-7]86-*-solaris*)
  128. 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`'
  129. 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`'
  130. ;;
  131. i[3-7]86-*-sco* | i[3-7]86-*-isc*)
  132. # In some configurations gcc does not use crtbegin.o and crtend.o.
  133. # In that case gcc -print-file-name=crtbegin.o will simply print
  134. # crtbegin.o. We create dummy crtbegin.o and crtend.o files to
  135. # handle this.
  136. echo "int dummy_crtbegin () { return 0; }" > crtbegin.c
  137. ${CC} -c crtbegin.c -o crtbegin.o
  138. rm -f crtbegin.c
  139. echo "int dummy_crteng () { return 0; }" > crtend.c
  140. ${CC} -c crtend.c -o crtend.o
  141. rm -f crtend.c
  142. HOSTING_CRT0='/lib/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
  143. 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'
  144. ;;
  145. i[3-7]86-pc-interix*)
  146. HOSTING_CRT0='$$INTERIX_ROOT/usr/lib/crt0.o'
  147. 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'
  148. ;;
  149. i[3-7]86-*-cygwin* | x86_64-*-cygwin*)
  150. 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`'
  151. ;;
  152. i[3-7]86-*-mingw*)
  153. #We only support msvcrt.dll, crtid == 2.
  154. HOSTING_CRT0='/mingw/lib/crt2.o'
  155. 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`'
  156. ;;
  157. mips*-sgi-irix4* | mips*-sgi-irix5*)
  158. HOSTING_CRT0=/usr/lib/crt1.o
  159. HOSTING_LIBS="$HOSTING_LIBS"' /usr/lib/crtn.o'
  160. ;;
  161. mips*-sgi-irix6*)
  162. HOSTING_CRT0='/usr/lib32/crt1.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o ; else ${CC} -print-file-name=crtbegin.o; fi`'
  163. 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'
  164. ;;
  165. m68*-motorola-sysv)
  166. 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`'
  167. HOSTING_LIBS=`sed -e 's,-lc,-lc881,' <<EOF
  168. $HOSTING_LIBS
  169. EOF`
  170. ;;
  171. m68*-sun-*)
  172. HOSTING_CRT0='/usr/lib/crt0.o /usr/lib/Fcrt1.o -L/usr/lib/fsoft.o'
  173. ;;
  174. m88*-*-dgux*)
  175. HDEFINES=-D__using_DGUX
  176. HOSTING_CRT0='/lib/crt0.o -X'
  177. HOSTING_LIBS=/usr/sde/m88kbcs/lib/libc.a
  178. ;;
  179. m88*-motorola-sysv3)
  180. HOSTING_CRT0='/lib/crt0.o `if [ -f ../gcc/crtbegin.o ]; then echo ../gcc/crtbegin.o; else ${CC} -print-file-name=crtbegin.o; fi`'
  181. HOSTING_LIBS="$HOSTING_LIBS"' `if [ -f ../gcc/crtend.o ]; then echo ../gcc/crtend.o; else ${CC} -print-file-name=crtend.o; fi`'
  182. ;;
  183. sparc-*-solaris2*)
  184. 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`'
  185. 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`'
  186. ;;
  187. sparc64-*-solaris2* | sparcv9-*-solaris2*)
  188. 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`'
  189. 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`'
  190. ;;
  191. *-*-dragonfly*)
  192. ;;
  193. *-*-freebsd* | *-*-kfreebsd*-gnu)
  194. ;;
  195. *-*-linux* | *-*-gnu*)
  196. ;;
  197. *-*-netbsd*)
  198. ;;
  199. *-*-openbsd*)
  200. ;;
  201. alpha*-*-*)
  202. HOSTING_CRT0=/usr/ccs/lib/crt0.o
  203. ;;
  204. esac
  205. # Provide default HOSTING_SCRT0. Each host should define a proper one
  206. # if needed.
  207. if test -z "$HOSTING_SCRT0"; then
  208. HOSTING_SCRT0="$HOSTING_CRT0"
  209. fi
  210. # Provide default HOSTING_SLIBS. Each host should define a proper one
  211. # if needed.
  212. if test -z "$HOSTING_SLIBS"; then
  213. HOSTING_SLIBS="$HOSTING_LIBS"
  214. fi