* configure.in: Look for --enable-shared. Change the value of
[deliverable/binutils-gdb.git] / ld / configure.in
CommitLineData
ef346f1a
ILT
1dnl Process this file with autoconf to produce a configure script
2dnl
3AC_PREREG(2.0)
4AC_INIT(ldmain.c)
5
6AC_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 ;;
13esac])dnl
2e598345
ILT
14AC_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]) ;;
20esac])dnl
ef346f1a
ILT
21
22AC_CONFIG_HEADER(config.h:config.in)
23
24AC_CONFIG_AUX_DIR(`cd $srcdir/..; pwd`)
25AC_CANONICAL_SYSTEM
26if test -z "$target" ; then
27 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
28fi
29if test -z "$host" ; then
30 AC_MSG_ERROR(Unrecognized host system type; please check config.sub.)
31fi
32AC_ARG_PROGRAM
02757e59 33
ef346f1a 34# host-specific stuff:
02757e59 35
ef346f1a 36. ${srcdir}/configure.host
02757e59 37
ef346f1a
ILT
38AC_PROG_CC
39AC_SUBST(CFLAGS)
2e598345 40AC_SUBST(HLDFLAGS)
ef346f1a
ILT
41AC_SUBST(HDEFINES)
42AC_SUBST(HOSTING_CRT0)
43AC_SUBST(HOSTING_LIBS)
44AC_SUBST(NATIVE_LIB_DIRS)
8ddef552 45
2e598345
ILT
46# For most hosts we can use a simple definition to pick up the BFD and
47# opcodes libraries. However, if we are building shared libraries, we
48# need to handle some hosts specially.
49BFDLIB='-L../bfd -lbfd'
50if test "${shared}" = "true"; then
51 case "${host}" in
52 *-*-sunos*)
53 # On SunOS, we must link against the name we are going to install,
54 # not -lbfd, since SunOS does not support SONAME.
55 BFDLIB='-L../bfd -l`echo bfd | sed '"'"'$(program_transform_name)'"'"'`'
56 ;;
57 esac
58fi
59AC_SUBST(BFDLIB)
60
ef346f1a
ILT
61AC_CHECK_HEADERS(string.h strings.h stdlib.h unistd.h)
62AC_CHECK_FUNCS(sbrk)
2e598345 63AC_HEADER_DIRENT
ab57b174 64
ef346f1a 65BFD_BINARY_FOPEN
02757e59 66
2e598345
ILT
67BFD_NEED_DECLARATION(free)
68
ef346f1a 69# target-specific stuff:
02757e59 70
1c4b3cda 71# Canonicalize the secondary target names.
ef346f1a 72if test -n "$enable_targets"; then
cdf71377 73 for targ in `echo $enable_targets | sed 's/,/ /g'`
1c4b3cda 74 do
ef346f1a
ILT
75 result=`$ac_config_sub $targ 2>/dev/null`
76 if test -n "$result"; then
1c4b3cda
ILT
77 canon_targets="$canon_targets $result"
78 else
79 # Allow targets that config.sub doesn't recognize, like "all".
80 canon_targets="$canon_targets $targ"
81 fi
82 done
83fi
84
85all_targets=false
ef346f1a
ILT
86EMUL=
87all_emuls=
1c4b3cda
ILT
88
89for targ in $target $canon_targets
90do
ef346f1a 91 if test "x$targ" = "xall"; then
1c4b3cda
ILT
92 all_targets=true
93 else
ef346f1a 94 . ${srcdir}/configure.tgt
7f2649bb 95
ef346f1a
ILT
96 if test "x$targ" = "x$target"; then
97 EMUL=${targ_emul}
1c4b3cda 98 fi
ef346f1a
ILT
99
100 all_emuls="${all_emuls} ${targ_emul} ${targ_extra_emuls}"
1c4b3cda
ILT
101 fi
102done
103
ef346f1a 104AC_SUBST(EMUL)
1c4b3cda 105
ef346f1a 106if test x${all_targets} = xfalse; then
1c4b3cda
ILT
107 # uniq the list.
108 f=""
ef346f1a 109 for i in $all_emuls ; do
1c4b3cda 110 case " $f " in
ef346f1a
ILT
111 *" e$i.o "*) ;;
112 *) f="$f e$i.o" ;;
1c4b3cda
ILT
113 esac
114 done
1c4b3cda 115
ef346f1a 116 EMULATION_OFILES="$f"
1c4b3cda
ILT
117
118else # all_targets is true
ef346f1a 119 EMULATION_OFILES='$(ALL_EMULATIONS)'
1c4b3cda
ILT
120fi # all_targets is true
121
ef346f1a 122AC_SUBST(EMULATION_OFILES)
8ddef552 123
ef346f1a
ILT
124AC_OUTPUT(Makefile,
125[case x$CONFIG_HEADERS in xconfig.h:config.in) echo > stamp-h ;; esac])
This page took 0.149358 seconds and 4 git commands to generate.