* arm-dis.c (print_insn_big_arm): Check for thumb symbol
[deliverable/binutils-gdb.git] / opcodes / configure.in
... / ...
CommitLineData
1dnl Process this file with autoconf to produce a configure script.
2dnl
3
4AC_PREREQ(2.5)
5AC_INIT(z8k-dis.c)
6
7AC_CANONICAL_SYSTEM
8AC_ISC_POSIX
9
10# We currently only use the version number for the name of any shared
11# library. For user convenience, we always use the same version
12# number that BFD is using.
13changequote(,)dnl
14BFD_VERSION=`grep INIT_AUTOMAKE ${srcdir}/../bfd/configure.in | sed -n -e 's/[ ]//g' -e 's/^.*,\(.*\)).*$/\1/p'`
15changequote([,])dnl
16
17AM_INIT_AUTOMAKE(opcodes, ${BFD_VERSION})
18
19dnl These must be called before AM_PROG_LIBTOOL, because it may want
20dnl to call AC_CHECK_PROG.
21AC_CHECK_TOOL(AR, ar)
22AC_CHECK_TOOL(RANLIB, ranlib, :)
23
24dnl Default to a non shared library. This may be overridden by the
25dnl configure option --enable-shared.
26AM_DISABLE_SHARED
27
28AM_PROG_LIBTOOL
29
30AC_ARG_ENABLE(targets,
31[ --enable-targets alternative target configurations],
32[case "${enableval}" in
33 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
34 ;;
35 no) enable_targets= ;;
36 *) enable_targets=$enableval ;;
37esac])dnl
38AC_ARG_ENABLE(commonbfdlib,
39[ --enable-commonbfdlib build shared BFD/opcodes/libiberty library],
40[case "${enableval}" in
41 yes) commonbfdlib=true ;;
42 no) commonbfdlib=false ;;
43 *) AC_MSG_ERROR([bad value ${enableval} for opcodes commonbfdlib option]) ;;
44esac])dnl
45
46AM_CONFIG_HEADER(config.h:config.in)
47
48if test -z "$target" ; then
49 AC_MSG_ERROR(Unrecognized target system type; please check config.sub.)
50fi
51AC_ARG_PROGRAM
52
53AM_MAINTAINER_MODE
54AM_CYGWIN32
55AM_EXEEXT
56
57# host-specific stuff:
58
59AC_PROG_CC
60
61ALL_LINGUAS=
62CY_GNU_GETTEXT
63
64. ${srcdir}/../bfd/configure.host
65
66AC_SUBST(HDEFINES)
67AM_PROG_INSTALL
68
69AC_CHECK_HEADERS(string.h strings.h stdlib.h)
70
71# start-sanitize-cygnus
72use_cgen=no
73cgen_maint=no
74# Having --enable-maintainer-mode take arguments is another way to go.
75AC_ARG_ENABLE(cgen-maint,
76[ --enable-cgen-maint build cgen generated files],
77[case "${enableval}" in
78 yes) cgen_maint=yes ;;
79 no) cgen_maint=no ;;
80 *) AC_MSG_ERROR([bad value ${enableval} for opcodes cgen-maint option]) ;;
81esac])dnl
82AM_CONDITIONAL(CGEN_MAINT, test x${cgen_maint} = xyes)
83if test "x${cgen_maint}" = xyes ; then
84 for targ in $target $canon_targets
85 do
86 case $targ in
87 all) use_cgen=yes ;;
88 m32r-*-*) use_cgen=yes ;;
89 esac
90 done
91fi
92if test $use_cgen = yes ; then
93 AC_CHECK_PROG(SCHEME, guile, guile, guile)
94fi
95# end-sanitize-cygnus
96
97# Horrible hacks to build DLLs on Windows.
98WIN32LDFLAGS=
99WIN32LIBADD=
100case "${host}" in
101*-*-cygwin32*)
102 if test "$enable_shared" = "yes"; then
103 WIN32LDFLAGS="-no-undefined"
104 WIN32LIBADD="-L`pwd`/../bfd -lbfd -L`pwd`/../libiberty -liberty -L`pwd`/../intl -lintl -lcygwin"
105 fi
106 ;;
107esac
108AC_SUBST(WIN32LDFLAGS)
109AC_SUBST(WIN32LIBADD)
110
111# target-specific stuff:
112
113# Canonicalize the secondary target names.
114if test -n "$enable_targets" ; then
115 for targ in `echo $enable_targets | sed 's/,/ /g'`
116 do
117 result=`${CONFIG_SHELL-/bin/sh} $ac_config_sub $targ 2>/dev/null`
118 if test -n "$result" ; then
119 canon_targets="$canon_targets $result"
120 else
121 # Allow targets that config.sub doesn't recognize, like "all".
122 canon_targets="$canon_targets $targ"
123 fi
124 done
125fi
126
127all_targets=false
128selarchs=
129for targ in $target $canon_targets
130do
131 if test "x$targ" = "xall" ; then
132 all_targets=true
133 else
134 . $srcdir/../bfd/config.bfd
135 selarchs="$selarchs $targ_archs"
136 fi
137done
138
139# Utility var, documents generic cgen support files.
140
141cgen_files="cgen-opc.lo cgen-asm.lo cgen-dis.lo"
142
143# We don't do any links based on the target system, just makefile config.
144
145if test x${all_targets} = xfalse ; then
146
147 # Target architecture .o files.
148 ta=
149
150 for arch in $selarchs
151 do
152 ad=`echo $arch | sed -e s/bfd_//g -e s/_arch//g`
153 archdefs="$archdefs -DARCH_$ad"
154 case "$arch" in
155 bfd_a29k_arch) ta="$ta a29k-dis.lo" ;;
156 bfd_alliant_arch) ;;
157 bfd_alpha_arch) ta="$ta alpha-dis.lo alpha-opc.lo" ;;
158 bfd_arc_arch) ta="$ta arc-dis.lo arc-opc.lo" ;;
159 bfd_arm_arch) ta="$ta arm-dis.lo" ;;
160 bfd_convex_arch) ;;
161 bfd_d10v_arch) ta="$ta d10v-dis.lo d10v-opc.lo" ;;
162# start-sanitize-d30v
163 bfd_d30v_arch) ta="$ta d30v-dis.lo d30v-opc.lo" ;;
164# end-sanitize-d30v
165 bfd_h8300_arch) ta="$ta h8300-dis.lo" ;;
166 bfd_h8500_arch) ta="$ta h8500-dis.lo" ;;
167 bfd_hppa_arch) ta="$ta hppa-dis.lo" ;;
168 bfd_i386_arch) ta="$ta i386-dis.lo" ;;
169 bfd_i860_arch) ;;
170 bfd_i960_arch) ta="$ta i960-dis.lo" ;;
171 bfd_m32r_arch) ta="$ta $cgen_files m32r-opc.lo m32r-asm.lo m32r-dis.lo" ;;
172 bfd_m68k_arch) ta="$ta m68k-dis.lo m68k-opc.lo" ;;
173 bfd_m88k_arch) ta="$ta m88k-dis.lo" ;;
174 bfd_mips_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo" ;;
175 bfd_mn10200_arch) ta="$ta m10200-dis.lo m10200-opc.lo" ;;
176 bfd_mn10300_arch) ta="$ta m10300-dis.lo m10300-opc.lo" ;;
177 bfd_ns32k_arch) ta="$ta ns32k-dis.lo" ;;
178 bfd_powerpc_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
179 bfd_pyramid_arch) ;;
180 bfd_romp_arch) ;;
181 bfd_rs6000_arch) ta="$ta ppc-dis.lo ppc-opc.lo" ;;
182 bfd_sh_arch) ta="$ta sh-dis.lo" ;;
183 bfd_sparc_arch) ta="$ta sparc-dis.lo sparc-opc.lo" ;;
184 bfd_tahoe_arch) ;;
185 bfd_tic30_arch) ta="$ta tic30-dis.lo" ;;
186# start-sanitize-tic80
187 bfd_tic80_arch) ta="$ta tic80-dis.lo tic80-opc.lo" ;;
188# end-sanitize-tic80
189# start-sanitize-sky
190 bfd_dvp_arch) ta="$ta mips-dis.lo mips-opc.lo mips16-opc.lo dvp-dis.lo dvp-opc.lo" ;;
191# end-sanitize-sky
192 bfd_v850_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
193# start-sanitize-v850e
194 bfd_v850e_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
195 bfd_v850ea_arch) ta="$ta v850-opc.lo v850-dis.lo" ;;
196# end-sanitize-v850e
197 bfd_vax_arch) ta="$ta vax-dis.lo" ;;
198 bfd_w65_arch) ta="$ta w65-dis.lo" ;;
199 bfd_we32k_arch) ;;
200 bfd_z8k_arch) ta="$ta z8k-dis.lo" ;;
201
202 "") ;;
203 *) AC_MSG_ERROR(*** unknown target architecture $arch) ;;
204 esac
205 done
206
207 # Weed out duplicate .o files.
208 f=""
209 for i in $ta ; do
210 case " $f " in
211 *" $i "*) ;;
212 *) f="$f $i" ;;
213 esac
214 done
215 ta="$f"
216
217 # And duplicate -D flags.
218 f=""
219 for i in $archdefs ; do
220 case " $f " in
221 *" $i "*) ;;
222 *) f="$f $i" ;;
223 esac
224 done
225 archdefs="$f"
226
227 BFD_MACHINES="$ta"
228
229else # all_targets is true
230 archdefs=-DARCH_all
231 BFD_MACHINES='$(ALL_MACHINES)'
232fi
233
234AC_SUBST(archdefs)
235AC_SUBST(BFD_MACHINES)
236
237AC_OUTPUT(Makefile po/Makefile.in:po/Make-in,
238[sed -e '/POTFILES =/r po/POTFILES' po/Makefile.in > po/Makefile])
This page took 0.023284 seconds and 4 git commands to generate.