* config/tc-v850.c (md_apply_fix3): Use little endian get/put
[deliverable/binutils-gdb.git] / gprof / configure.in
CommitLineData
7858d8dc 1dnl Process this file with autoconf to produce a configure script.
39c3964f 2AC_PREREQ(2.5)dnl
7858d8dc 3AC_INIT(gprof.c)
c98f0ae5 4
ba8e3a2e
ILT
5AC_ARG_ENABLE(shared,
6[ --enable-shared build shared BFD library],
7[case "${enableval}" in
8 yes) shared=true ;;
9 no) shared=false ;;
b4cb4ea2
ILT
10 *bfd*) shared=true ;;
11 *) shared=false ;;
ba8e3a2e
ILT
12esac])dnl
13
7858d8dc 14AC_PROG_CC
39c3964f 15AC_PROG_INSTALL
c98f0ae5 16
e3c0e00b
ILT
17AC_ISC_POSIX
18
7858d8dc
C
19AC_CANONICAL_SYSTEM
20AC_ARG_PROGRAM
c98f0ae5 21
5d32c952 22case "${target}" in
7858d8dc 23alpha-*-*) MY_TARGET=alpha ;;
379062d1 24changequote(,)dnl
3d5aa992 25i[3456]86-*-*) MY_TARGET=i386 ;;
379062d1 26changequote([,])dnl
7858d8dc
C
27sparc-*-*) MY_TARGET=sparc ;;
28tahoe-*-*) MY_TARGET=tahoe ;;
29vax-*-*) MY_TARGET=vax ;;
af0786b4 30ns32k-*-*) MY_TARGET=ns532;;
7858d8dc 31*-*-*) MY_TARGET=dummy ;;
a11d7ba3
SEF
32esac
33
7858d8dc 34AC_SUBST(MY_TARGET)
ba8e3a2e
ILT
35
36BFDLIB='-L../bfd -lbfd'
37
38# We need to handle some special cases if BFD was built shared.
8530ae8e 39case "${host}" in
ba8e3a2e
ILT
40 *-*-sunos*)
41 # On SunOS, we must link against the name we are going to install,
42 # not -lbfd, since SunOS does not support SONAME.
8530ae8e
ILT
43 if test "${shared}" = "true"; then
44 BFDLIB='-L../bfd -l`echo bfd | sed '"'"'$(program_transform_name)'"'"'`'
45 fi
46 ;;
47alpha*-*-osf*)
48 # On Alpha OSF/1, the native linker searches all the -L
49 # directories for any LIB.so files, and only then searches for any
50 # LIB.a files. That means that if there is an installed
51 # libbfd.so, but this build is not done with --enable-shared, the
52 # link will wind up being against the install libbfd.so rather
53 # than the newly built libbfd. To avoid this, we must explicitly
54 # link against libbfd.a when --enable-shared is not used.
55 if test "${shared}" != "true"; then
56 BFDLIB='../bfd/libbfd.a'
57 fi
ba8e3a2e 58 ;;
8530ae8e 59esac
ba8e3a2e
ILT
60AC_SUBST(BFDLIB)
61
62HLDFLAGS=
cb26c22d 63HLDENV=
ba8e3a2e
ILT
64# If we have shared libraries, try to set rpath reasonably.
65if test "${shared}" = "true"; then
66 case "${host}" in
56f9773f
ILT
67 *-*-hpux*)
68 HLDFLAGS='-Wl,+s,+b,$(libdir)'
69 ;;
ba8e3a2e
ILT
70 *-*-irix5*)
71 HLDFLAGS='-Wl,-rpath,$(libdir)'
72 ;;
73 *-*-linux*aout*)
74 ;;
75 *-*-linux*)
76 HLDFLAGS='-Wl,-rpath,$(libdir)'
77 ;;
cb26c22d 78 *-*-solaris*)
ba8e3a2e
ILT
79 HLDFLAGS='-R $(libdir)'
80 ;;
cb26c22d
ILT
81 *-*-sysv4*)
82 HLDENV='if test -z "$${LD_RUN_PATH}"; then LD_RUN_PATH=$(libdir); else LD_RUN_PATH=$${LD_RUN_PATH}:$(libdir); fi; export LD_RUN_PATH;'
83 ;;
ba8e3a2e
ILT
84 esac
85fi
86
87# On SunOS, if the linker supports the -rpath option, use it to
88# prevent ../bfd and ../opcodes from being included in the run time
89# search path.
90case "${host}" in
91 *-*-sunos*)
92 echo 'main () { }' > conftest.c
93 ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
94 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
95 :
96 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
97 :
7925f4d4
ILT
98 elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
99 :
ba8e3a2e
ILT
100 elif test "${shared}" = "true"; then
101 HLDFLAGS='-Wl,-rpath=$(libdir)'
102 else
103 HLDFLAGS='-Wl,-rpath='
104 fi
105 rm -f conftest.t conftest.c conftest
106 ;;
107esac
108AC_SUBST(HLDFLAGS)
cb26c22d 109AC_SUBST(HLDENV)
ba8e3a2e 110
7858d8dc 111AC_OUTPUT(Makefile)
This page took 0.16129 seconds and 4 git commands to generate.