* configure.in: Substitute RPATH_ENVVAR.
[external/binutils.git] / ld / configure.in
1 dnl Process this file with autoconf to produce a configure script
2 dnl
3 AC_PREREG(2.0)
4 AC_INIT(ldmain.c)
5
6 AC_ARG_ENABLE(targets,
7 [  --enable-targets        alternative target configurations],
8 [case "${enableval}" in
9   yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
10             ;;
11   no)       enable_targets= ;;
12   *)        enable_targets=$enableval ;;
13 esac])dnl
14 AC_ARG_ENABLE(shared,
15 [  --enable-shared         build shared BFD library],
16 [case "${enableval}" in
17   yes) shared=true ;;
18   no)  shared=false ;;
19   *)   AC_MSG_ERROR([bad value ${enableval} for BFD shared option]) ;;
20 esac])dnl
21
22 AC_CONFIG_HEADER(config.h:config.in)
23
24 AC_CONFIG_AUX_DIR(`cd $srcdir/..; pwd`)
25 AC_CANONICAL_SYSTEM
26 if test -z "$target" ; then
27     AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
28 fi
29 if test -z "$host" ; then
30     AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
31 fi
32 AC_ARG_PROGRAM
33
34 # host-specific stuff:
35
36 . ${srcdir}/configure.host
37
38 AC_PROG_CC
39 AC_SUBST(CFLAGS)
40 AC_SUBST(HLDFLAGS)
41 AC_SUBST(RPATH_ENVVAR)
42 AC_SUBST(HDEFINES)
43 AC_SUBST(HOSTING_CRT0)
44 AC_SUBST(HOSTING_LIBS)
45 AC_SUBST(NATIVE_LIB_DIRS)
46
47 # For most hosts we can use a simple definition to pick up the BFD and
48 # opcodes libraries.  However, if we are building shared libraries, we
49 # need to handle some hosts specially.
50 BFDLIB='-L../bfd -lbfd'
51 if test "${shared}" = "true"; then
52   case "${host}" in
53   *-*-sunos*)
54     # On SunOS, we must link against the name we are going to install,
55     # not -lbfd, since SunOS does not support SONAME.
56     BFDLIB='-L../bfd -l`echo bfd | sed '"'"'$(program_transform_name)'"'"'`'
57     ;;
58   esac
59 fi
60 AC_SUBST(BFDLIB)
61
62 AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h)
63 AC_CHECK_FUNCS(sbrk)
64 AC_HEADER_DIRENT
65
66 BFD_BINARY_FOPEN
67
68 BFD_NEED_DECLARATION(free)
69
70 # target-specific stuff:
71
72 all_targets=
73 EMUL=
74 all_emuls=
75 TDIRS=
76
77 for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
78 do
79   if test "$targ_alias" = "all"; then
80     all_targets=true
81   else
82     # Canonicalize the secondary target names.
83     result=`$ac_config_sub $targ_alias 2>/dev/null`
84     if test -n "$result"; then
85         targ=$result
86     else
87         targ=$targ_alias
88     fi
89
90     . ${srcdir}/configure.tgt
91
92     if test "$targ" = "$target"; then
93       EMUL=$targ_emul
94     fi
95
96     for i in $targ_emul $targ_extra_emuls; do
97         case " $all_emuls " in
98         *" e${i}.o "*) ;;
99         *)
100           all_emuls="$all_emuls e${i}.o"
101           eval result=\$tdir_$i
102           test -z "$result" && result=$targ_alias
103           TDIRS="$TDIRS\\
104 tdir_$i=$result"
105           ;;
106         esac
107     done
108   fi
109 done
110
111 AC_SUBST(EMUL)
112 AC_SUBST(TDIRS)
113
114 if test x${all_targets} = xtrue; then
115   EMULATION_OFILES='$(ALL_EMULATIONS)'
116 else
117   EMULATION_OFILES=$all_emuls
118 fi
119 AC_SUBST(EMULATION_OFILES)
120
121 AC_OUTPUT(Makefile,
122 [case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac])