* stack.c (print_frame_info): When checking PC_IN_CALL_DUMMY,
[deliverable/binutils-gdb.git] / configure.in
... / ...
CommitLineData
1##############################################################################
2
3## This file is a shell script fragment that supplies the information
4## necessary to tailor a template configure script into the configure
5## script appropriate for this directory. For more information, check
6## any existing configure script.
7
8## Be warned, there are two types of configure.in files. There are those
9## used by Autoconf, which are macros which are expanded into a configure
10## script by autoconf. The other sort, of which this is one, is executed
11## by Cygnus configure.
12
13## For more information on these two systems, check out the documentation
14## for 'Autoconf' (autoconf.texi) and 'Configure' (configure.texi).
15
16##############################################################################
17
18### To add a new directory to the tree, first choose whether it is a target
19### or a host dependent tool. Then put it into the appropriate list
20### (library or tools, host or target), doing a dependency sort. For
21### example, gdb requires that byacc (or bison) be built first, so it is in
22### the ${host_tools} list after byacc and bison.
23
24
25# these libraries are used by various programs built for the host environment
26#
27host_libs="mmalloc libiberty opcodes bfd readline glob tcl tk tclX"
28
29# these tools are built for the host environment
30#
31host_tools="texinfo byacc flex bison binutils ld gas gcc gdb make patch
32 prms send-pr gprof gdbtest tgas etc expect dejagnu sim
33 m4 autoconf ispell grep diff rcs cvs fileutils shellutils
34 textutils wdiff find emacs uudecode hello tar gzip indent
35 recode release"
36
37
38# these libraries are built for the target environment, and are built after
39# the host libraries and the host tools (which may be a cross compiler)
40#
41target_libs="libm xiberty newlib libg++"
42
43## start-sanitize-chill
44target_libs="${target_libs} chill chillrt"
45## end-sanitize-chill
46
47# these tools are built using the target libs, and are intended to run only
48# in the target environment. we currently have none.
49#
50# note: any program that *uses* libraries that are in the "target_libs"
51# list belongs in this list. those programs are also very likely
52# candidates for the "native_only" list which follows
53#
54target_tools="groff"
55
56################################################################################
57
58## These two lists are of directories that are to be removed from the
59## ${configdirs} list for either cross-compilations or for native-
60## compilations. For example, it doesn't make that much sense to
61## cross-compile Emacs, nor is it terribly useful to compile xiberty in
62## a native environment.
63
64# directories to be built in the native environment only
65#
66native_only="autoconf cvs emacs fileutils find grep groff gzip hello indent
67 ispell m4 rcs recode sed shellutils tar textutils tk uudecode wdiff
68 gprof"
69
70# directories to be built in a cross environment only
71#
72cross_only="xiberty newlib"
73
74## All tools belong in one of the four categories, and are assigned above
75#
76configdirs="${host_libs} ${host_tools} ${target_libs} ${target_tools}"
77
78################################################################################
79
80srctrigger=move-if-change
81srcname="gnu development package"
82
83# per-host:
84
85case "${host}" in
86 alpha-dec-osf*) host_makefile_frag=config/mh-alphaosf ;;
87 m68k-apollo-sysv*) host_makefile_frag=config/mh-apollo68 ;;
88 m68k-apollo-bsd*) host_makefile_frag=config/mh-a68bsd ;;
89 m88k-motorola-sysv*) host_makefile_frag=config/mh-delta88;;
90 m88k-dg-dgux*) host_makefile_frag=config/mh-dgux ;;
91 mips-dec-ultrix*) host_makefile_frag=config/mh-decstation ;;
92 mips-sgi-irix4*) host_makefile_frag=config/mh-irix4 ;;
93 mips-sgi-irix3*) host_makefile_frag=config/mh-sysv ;;
94 mips-*-sysv*) host_makefile_frag=config/mh-riscos ;;
95 i[34]86-ncr-sysv4*) host_makefile_frag=config/mh-ncr3000 ;;
96 i[34]86-*-sco*) host_makefile_frag=config/mh-sco ;;
97 i[34]86-*-isc*) host_makefile_frag=config/mh-sysv ;;
98 i[34]86-*-linux) host_makefile_frag=config/mh-linux ;;
99 i[34]86-*-solaris2*) host_makefile_frag=config/mh-sysv4 ;;
100 i[34]86-*-aix*) host_makefile_frag=config/mh-aix386 ;;
101 vax-*-ultrix2*) host_makefile_frag=config/mh-vaxult2 ;;
102 *-ibm-aix*) host_makefile_frag=config/mh-aix ;;
103 *-bull-bosx*) host_makefile_frag=config/mh-aix ;;
104 *-sun-solaris2*) host_makefile_frag=config/mh-solaris ;;
105 m68k-sun-*) host_makefile_frag=config/mh-sun3 ;;
106 *-sun-*) host_makefile_frag=config/mh-sun ;;
107 *-hp-hpux) host_makefile_frag=config/mh-hpux ;;
108 *-*-sysv4*) host_makefile_frag=config/mh-sysv4 ;;
109 *-*-sysv*) host_makefile_frag=config/mh-sysv ;;
110esac
111
112# per-target:
113
114# some tools are so dependent upon X11 that if we're not building with X,
115# it's not even worth trying to configure, much less build, that tool.
116
117case ${with_x} in
118 yes | "") # the default value for this tree is that X11 is available
119 ;;
120 no)
121 configdirs=`echo ${configdirs} | sed -e 's/tk//'`
122 ;;
123 *)
124 echo "*** bad value \"${with_x}\" for -with-x flag; ignored" 1>&2
125 ;;
126esac
127
128
129
130# some tools are only suitable for building in a "native" situation.
131# Those are added when we have a host==target configuration. For cross
132# toolchains, we add some directories that should only be useful in a
133# cross-compiler.
134
135if [ x"${host}" = x"${target}" ] ; then
136 # when doing a native toolchain, don't build the targets
137 # that are in the 'cross only' list
138 for i in ${cross_only} ; do
139 configdirs=`echo ${configdirs} | sed -e "s/$i//"`
140 done
141else
142 # similarly, don't build the targets in the 'native only'
143 # list when building a cross compiler
144 for i in ${native_only} ; do
145 configdirs=`echo ${configdirs} | sed -e "s/$i//"`
146 done
147fi
148
149
150# remove more programs from consideration, based on the host or
151# target this usually means that a port of the program doesn't
152# exist yet.
153
154case "${host}" in
155 alpha-dec-osf1)
156 configdirs=`echo ${configdirs} | sed -e 's/gdb//'`
157 ;;
158 i[34]86-*-go32)
159 configdirs=`echo ${configdirs} | sed -e 's/tcl//;s/expect//;s/deja-gnu//'`
160 configdirs=`echo ${configdirs} | sed -e 's/make//;s/texinfo//;s/bison//'`
161 configdirs=`echo ${configdirs} | sed -e 's/patch//;s/flex//;s/byacc//'`
162 configdirs=`echo ${configdirs} | sed -e 's/send-pr//;s/gprof//'`
163 configdirs=`echo ${configdirs} | sed -e 's/uudecode//;s/dejagnu//'`
164 configdirs=`echo ${configdirs} | sed -e 's/diff//'`
165 ;;
166esac
167
168case "${target}" in
169 alpha-dec-osf1)
170 configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
171 configdirs=`echo ${configdirs} | sed -e 's/gdb//;s/emacs//;s/fileutils//'`
172 configdirs=`echo ${configdirs} | sed -e 's/grep//;s/libg++//'`
173 ;;
174 h8300*-*-*)
175 configdirs=`echo ${configdirs} | sed -e 's/libg++//'`
176## start-sanitize-chill
177 configdirs=`echo ${configdirs} | sed -e 's/chillrt//'`
178## end-sanitize-chill
179 ;;
180 h8500-*-*)
181 configdirs=`echo ${configdirs} | sed -e 's/libg++//'`
182## start-sanitize-chill
183 configdirs=`echo ${configdirs} | sed -e 's/chillrt//'`
184## end-sanitize-chill
185 ;;
186 hppa*-*-osf)
187 # Do configure ld/binutils/gas for this case.
188 ;;
189 hppa*-*-*)
190 configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
191 ;;
192 i[34]86-*-go32)
193 # add the go32 support tools to the list
194 configdirs=`echo go32 ${configdirs}`
195 ;;
196 rs6000-*-*)
197 configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//;s/gprof//'`
198 ;;
199 mips-*-*)
200 configdirs=`echo ${configdirs} | sed -e 's/gprof//'`
201 ;;
202 sh-*-*)
203 configdirs=`echo gprof ${configdirs}`
204 ;;
205 i[34]86-*-sco*)
206 configdirs=`echo ${configdirs} | sed -e 's/gprof//'`
207 ;;
208 *-*-solaris2*)
209 configdirs=`echo ${configdirs} | sed -e 's/ld//;s/gas//'`
210 ;;
211 *-*-sysv4*)
212 configdirs=`echo ${configdirs} | sed -e 's/ld//;s/binutils//;s/gas//'`
213 ;;
214 *-*-vms)
215 configdirs=`echo ${configdirs} | sed -e 's/bfd//;s/ld//;s/binutils//'`
216 ;;
217esac
218
219# Set with_gnu_as and with_gnu_ld as appropriate.
220# This is commented out for now.
221#if [ x${with_gnu_as} != xyes ] && echo ${configdirs} | grep gas > /dev/null && [ -d ${srcdir}/gas ]; then
222# with_gnu_as=yes
223# withoptions="$withoptions -with-gnu-as"
224#fi
225#if [ x${with_gnu_ld} != xyes ] && echo ${configdirs} | grep ld > /dev/null && [ -d ${srcdir}/ld ]; then
226# with_gnu_ld=yes
227# withoptions="$withoptions -with-gnu-ld"
228#fi
229
230#
231# Local Variables:
232# fill-column: 131
233# End:
234#
This page took 0.034893 seconds and 4 git commands to generate.