* configure.host: Set RPATH_ENVVAR.
[deliverable/binutils-gdb.git] / bfd / configure.host
CommitLineData
b7577823
ILT
1# This file is a shell script that overrides some of the tools and
2# flags used on a host specific basis.
60ac749c
ILT
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
b7577823
ILT
9# This sets the following shell variables:
10# CC compiler to use (only if needed and not already set)
11# CFLAGS override CFLAGS (only if needed and not already set)
12# LDFLAGS override LDFLAGS (only if needed and not already set)
13# AR archiver to use (only if needed and not already set)
14# RANLIB ranlib to use (only if needed and not already set)
15# HDEFINES host specific compiler options
16# host64 set to true if this is a 64 bit host
17# HOST_64BIT_TYPE host 64 bit type
44f795f7
ILT
18# SHLIB_CC compiler to use when building shared library
19# SHLIB_CFLAGS flags to use when building shared library
20# PICFLAG may be set to flag to use to compile PIC
21# SHLINK may be set to the name to link the shared library to
22# ALLLIBS may be set to libraries to build
23# HLDFLAGS LDFLAGS specific to the host
b5e4f369 24# RPATH_ENVVAR environment variable used to find shared libraries
b7577823
ILT
25
26HDEFINES=
27host64=false
28HOST_64BIT_TYPE=
29
60ac749c
ILT
30case "${host}" in
31# WHEN ADDING ENTRIES TO THIS MATRIX:
32# Make sure that the left side always has two dashes. Otherwise you
33# can get spurious matches. Even for unambiguous cases, do this as a
34# convention, else the table becomes a real mess to understand and maintain.
35#
36# Note that these entries cannot be fully alphabetical. Don't try.
37# The order of matching is critical when multiple lines could match.
38
b7577823
ILT
39alpha-*-*) host64=true; HOST_64BIT_TYPE=long ;;
40
41a29k-*-*) CC=${CC-u3cc}; AR=${AR-u3ar} ;;
42
43hppa*-*-hpux*) HDEFINES=-DHOST_HPPAHPUX ;;
44hppa*-*-hiux*) HDEFINES=-DHOST_HPPAHPUX ;;
45hppa*-*-bsd*) HDEFINES=-DHOST_HPPABSD ;;
46hppa*-*-osf*) HDEFINES=-DHOST_HPPAOSF ;;
47
48i[345]86-sequent-bsd*) HDEFINES=-Dshared=genshared ;;
49i[345]86-sequent-sysv4*) ;;
50i[345]86-sequent-sysv*) HDEFINES=-Dshared=genshared ;;
51i[345]86-ncr*-sysv4*) CC=${CC-/usr/ccs/ATT/cc}
52 test -z "$CFLAGS" && CFLAGS=" "
53 ;;
54i[345]86-*-go32*) test -z "$CC" && CC="i386-go32-gcc -fno-omit-frame-pointer -O2 -Wl,-S"
55 AR=${AR-i386-go32-ar}
56 RANLIB=${RANLIB-i386-go32-ranlib}
57 ;;
58i[345]86-*-win32) test -z "$CC" && CC="i386-win32-gcc -O2"
59 AR=${AR-i386-win32-ar}
60 RANLIB=${RANLIB-i386-win32-ranlib}
61 ;;
62
44f795f7 63mips-dec-netbsd*) ;;
b7577823
ILT
64mips-dec-*) HDEFINES="-G 4" ;;
65mips-sgi-irix3*) HDEFINES="-G 4"
66 test -z "$LDFLAGS" && LDFLAGS=-lmalloc
67 ;;
68mips-sgi-irix4*) HDEFINES="-G 4"
69 test -z "$LDFLAGS" && LDFLAGS=-lmalloc
70 ;;
71mips-*-sysv4*) ;;
72mips-*-sysv*) HDEFINES="-G 4" ;;
73mips-*-riscos*) HDEFINES="-G 4" ;;
74
75m68*-apollo*-sysv*) # sef@cygnus.com says this is how to compile
76 # on an apollo in the SysV environment.
77 test -z "$CC" && CC="cc -A nansi -A cpu,3000 -A runtype,any -A systype,any -DSHORT_ENUM_BUG -DUSG -U__STDC__ -Dm68000=mc68000"
78 ;;
79m68*-hp-hpux*) HDEFINES=-DHOST_HP300HPUX ;;
80
81m88*-*-dgux*) test -z "$CC" && CC="gcc -Wall -ansi -D__using_DGUX"
82 ;;
83
84romp-*-*) # hc/pcc just can't cut it
85 CC=${CC-gcc}
86 ;;
87
88rs6000-*-aix4) HDEFINES=-DHOST_AIX ;;
89rs6000-*-*) HDEFINES=-DHOST_AIX ;;
90powerpc-*-aix4*) HDEFINES=-DHOST_AIX ;;
91powerpc-*-aix*) HDEFINES=-DHOST_AIX ;;
60ac749c
ILT
92
93esac
44f795f7
ILT
94
95# If we are configuring with --enable-shared, adjust the shared
96# library support based on the host. This support must work for both
97# the BFD and the opcodes libraries.
b5e4f369
ILT
98HLDFLAGS=
99RPATH_ENVVAR=LD_LIBRARY_PATH
44f795f7
ILT
100SHLIB_CC='$(CC)'
101SHLIB_CFLAGS='-shared'
102if [ "${shared}" = "true" ]; then
103 case "${host}" in
104 hppa*-*-*) picfrag=../config/mh-papic ;;
105 i[3456]86-*-*) picfrag=../config/mh-x86pic ;;
106 *-*-*) picfrag=../config/mh-${host_cpu}pic ;;
107 esac
108 if [ -f "${picfrag}" ]; then
109 pic=`sed -n -e 's/^PICFLAG[ ]*=[ ]*\(.*\)$/\1/p' ${picfrag}`
110 if [ -n "${pic}" ]; then
111 PICFLAG=${pic}
112 fi
113 fi
114
44f795f7
ILT
115 case "${host}" in
116 *-dec-osf*)
117 # -fpic is not needed on the Alpha.
118 PICFLAG=
119 ;;
120 *-*-hpux*)
121 # HP/UX uses .sl for shared libraries.
122 SHLINK=`echo ${SHLINK} | sed -e 's/so$/sl/'`
2300e217 123 SHLIB_CFLAGS='-shared $(PICFLAG)'
b5e4f369
ILT
124 HLDFLAGS='-Wl,+s,+b,$(libdir)'
125 RPATH_ENVVAR=SHLIB_PATH
44f795f7
ILT
126 ;;
127 *-*-irix5*)
128 # -fpic is not needed on Irix 5.
129 PICFLAG=
b5e4f369
ILT
130 SHLIB_CFLAGS='-shared -Wl,-soname,$(SONAME)'
131 HLDFLAGS='-Wl,-rpath,$(libdir)'
44f795f7
ILT
132 ;;
133 *-*-linux*aout*)
134 ;;
135 *-*-linux*)
b5e4f369
ILT
136 SHLIB_CFLAGS='-shared -Wl,-soname,$(SONAME)'
137 HLDFLAGS='-Wl,-rpath,$(libdir)'
44f795f7
ILT
138 ;;
139 *-*-sysv4* | *-*-solaris*)
b5e4f369
ILT
140 SHLIB_CFLAGS='-shared -h $(SONAME)'
141 HLDFLAGS='-R $(libdir)'
44f795f7
ILT
142 ;;
143 *-*-sunos*)
b5e4f369
ILT
144 # Build a libTARGET-bfd.so.VERSION symlink in the object directory.
145 ALLLIBS=`echo ${ALLLIBS} | sed -e 's/\$(SHLINK)/stamp-tshlink/'`
44f795f7
ILT
146 ;;
147 esac
148fi
149
150# On SunOS, if the linker supports the -rpath option, use it to
151# prevent ../bfd and ../opcodes from being included in the run time
152# search path.
44f795f7
ILT
153case "${host}" in
154 *-*-sunos*)
155 echo 'main () { }' > conftest.c
b5e4f369 156 ${CC-gcc} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
44f795f7
ILT
157 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
158 :
159 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
160 :
b5e4f369
ILT
161 elif [ "${shared}" = "true" ]; then
162 HLDFLAGS='-Wl,-rpath=$(libdir)'
44f795f7
ILT
163 else
164 HLDFLAGS='-Wl,-rpath='
165 fi
166 rm -f conftest.t conftest.c conftest
167 ;;
168esac
This page took 0.147498 seconds and 4 git commands to generate.