* configure.host: Set INSTALL_SHLIB.
[external/binutils.git] / bfd / configure.host
1 # This file is a shell script that overrides some of the tools and
2 # flags used on a host specific basis.
3
4 # Since the "bfd/hosts" directory is shared by the bfd, opcodes, and
5 # binutils directories (at least), the index to it is also shared.
6 # This is that index.  Each configure.in file should source this file
7 # in its per-host part.
8
9 # This sets the following shell variables:
10 #  HDEFINES             host specific compiler options
11 #  host64               set to true if this is a 64 bit host
12 #  HOST_64BIT_TYPE      host 64 bit type
13 #  SHLIB_CC             compiler to use when building shared library
14 #  SHLIB_CFLAGS         flags to use when building shared library
15 #  PICFLAG              may be set to flag to use to compile PIC
16 #  SHLINK               may be set to the name to link the shared library to
17 #  ALLLIBS              may be set to libraries to build
18 #  HLDFLAGS             LDFLAGS specific to the host
19 #  RPATH_ENVVAR         environment variable used to find shared libraries
20 #  INSTALL_SHLIB        install a shared library
21
22 HDEFINES=
23 host64=false
24 HOST_64BIT_TYPE=
25
26 case "${host}" in
27
28 alpha-*-*)              host64=true; HOST_64BIT_TYPE=long ;;
29
30 hppa*-*-hpux*)          HDEFINES=-DHOST_HPPAHPUX ;;
31 hppa*-*-hiux*)          HDEFINES=-DHOST_HPPAHPUX ;;
32 hppa*-*-bsd*)           HDEFINES=-DHOST_HPPABSD ;;
33 hppa*-*-osf*)           HDEFINES=-DHOST_HPPAOSF ;;
34
35 i[345]86-sequent-bsd*)  HDEFINES=-Dshared=genshared ;;
36 i[345]86-sequent-sysv4*) ;;
37 i[345]86-sequent-sysv*) HDEFINES=-Dshared=genshared ;;
38
39 mips-dec-netbsd*)       ;;
40 mips-dec-*)             HDEFINES="-G 4" ;;
41 mips-sgi-irix3*)        HDEFINES="-G 4" ;;
42 mips-sgi-irix4*)        HDEFINES="-G 4" ;;
43 mips-*-sysv4*)          ;;
44 mips-*-sysv*)           HDEFINES="-G 4" ;;
45 mips-*-riscos*)         HDEFINES="-G 4" ;;
46
47 m68*-hp-hpux*)          HDEFINES=-DHOST_HP300HPUX ;;
48
49 esac
50
51 # If we are configuring with --enable-shared, adjust the shared
52 # library support based on the host.  This support must work for both
53 # the BFD and the opcodes libraries.
54 HLDFLAGS=
55 RPATH_ENVVAR=LD_LIBRARY_PATH
56 SHLIB_CC='$(CC)'
57 SHLIB_CFLAGS='-shared'
58 INSTALL_SHLIB='$(INSTALL_PROGRAM) $$f $(libdir)/$$tf;'
59 if [ "${shared}" = "true" ]; then
60   case "${host}" in
61   hppa*-*-*)            picfrag=${srcdir}/../config/mh-papic ;;
62   i[3456]86-*-*)        picfrag=${srcdir}/../config/mh-x86pic ;;
63   *-*-*)                picfrag=${srcdir}/../config/mh-${host_cpu}pic ;;
64   esac
65   if [ -f "${picfrag}" ]; then
66     pic=`sed -n -e 's/^PICFLAG[         ]*=[    ]*\(.*\)$/\1/p' ${picfrag}`
67     if [ -n "${pic}" ]; then
68       PICFLAG=${pic}
69     fi
70   fi
71
72   case "${host}" in
73   *-dec-osf*)
74     # -fpic is not needed on the Alpha.
75     PICFLAG=
76     HLDFLAGS='-rpath $(libdir)'
77     SHLIB_CFLAGS='-shared -Wl,-soname,$(SONAME)'
78     ;;
79   *-*-hpux*)
80     # HP/UX uses .sl for shared libraries.
81     SHLINK=`echo ${SHLINK} | sed -e 's/so$/sl/'`
82     SHLIB_CFLAGS='-shared $(PICFLAG)'
83     HLDFLAGS='-Wl,+s,+b,$(libdir)'
84     RPATH_ENVVAR=SHLIB_PATH
85     INSTALL_SHLIB='$(INSTALL_PROGRAM) $$f $(libdir)/$$tf; chmod -w $(libdir)/$$tf;'
86     ;;
87   *-*-irix[56]*)
88     # -fpic is not needed on Irix 5 or 6.
89     PICFLAG=
90     SHLIB_CFLAGS='-shared -Wl,-soname,$(SONAME)'
91     HLDFLAGS='-Wl,-rpath,$(libdir)'
92     ;;
93   *-*-linux*aout*)
94     ;;
95   *-*-linux*)
96     SHLIB_CFLAGS='-shared -Wl,-soname,$(SONAME)'
97     case "${libdir}" in
98       /lib | /usr/lib) ;;
99       *) HLDFLAGS='-Wl,-rpath,$(libdir)' ;;
100     esac
101     ;;
102   *-*-sysv4* | *-*-solaris*)
103     SHLIB_CFLAGS='-shared -h $(SONAME)'
104     HLDFLAGS='-R $(libdir)'
105     ;;
106   *-*-sunos*)
107     # Build a libTARGET-bfd.so.VERSION symlink in the object directory.
108     ALLLIBS=`echo ${ALLLIBS} | sed -e 's/\$(SHLINK)/stamp-tshlink/'`
109     ;;
110   esac
111 fi
112
113 # On SunOS, if the linker supports the -rpath option, use it to
114 # prevent ../bfd and ../opcodes from being included in the run time
115 # search path.
116 case "${host}" in
117   *-*-sunos*)
118     echo 'main () { }' > conftest.c
119     ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
120     if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
121       :
122     elif grep 'No such file' conftest.t >/dev/null 2>&1; then
123       :
124     elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
125       :
126     elif [ "${shared}" = "true" ]; then
127       HLDFLAGS='-Wl,-rpath=$(libdir)'
128     else
129       HLDFLAGS='-Wl,-rpath='
130     fi
131     rm -f conftest.t conftest.c conftest
132     ;;
133 esac