* configure.in: Add sky support
[external/binutils.git] / sim / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2 AC_PREREQ(2.5)dnl
3 AC_INIT(Makefile.in)
4
5 AC_PROG_CC
6 AC_PROG_INSTALL
7 AC_CHECK_TOOL(AR, ar)
8 AC_CHECK_TOOL(RANLIB, ranlib, :)
9
10 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
11 AC_CANONICAL_SYSTEM
12 AC_ARG_PROGRAM
13 AC_PROG_CC
14 AC_SUBST(CFLAGS)
15 AC_SUBST(HDEFINES)
16 AR=${AR-ar}
17 AC_SUBST(AR)
18 AC_PROG_RANLIB
19
20 # Put a plausible default for CC_FOR_BUILD in Makefile.
21 AC_C_CROSS
22 if test "x$cross_compiling" = "xno"; then
23   CC_FOR_BUILD='$(CC)'
24 else
25   CC_FOR_BUILD=gcc
26 fi
27 AC_SUBST(CC_FOR_BUILD)
28
29 # If a cpu ever has more than one simulator to choose from, use
30 # --enable-sim=... to choose.
31 AC_ARG_ENABLE(sim,
32 [  --enable-sim ],
33 [case "${enableval}" in
34 yes | no) ;;
35 *)      AC_MSG_ERROR(bad value ${enableval} given for --enable-sim option) ;;
36 esac])
37
38 # Assume simulator can be built with cc.
39 # If the user passes --enable-sim built it regardless of $(CC).
40 only_if_gcc=no
41 only_if_enabled=no
42 extra_subdirs=common
43
44 # WHEN ADDING ENTRIES TO THIS MATRIX:
45 #  Make sure that the left side always has two dashes.  Otherwise you
46 #  can get spurious matches.  Even for unambiguous cases, do this as a
47 #  convention, else the table becomes a real mess to understand and maintain.
48
49 case "${target}" in
50   arm*-*-*)             sim_target=arm ;;
51   thumb*-*-*)           sim_target=arm ;;
52   d10v-*-*)             sim_target=d10v ;;
53 # start-sanitize-d30v
54   d30v-*-*)
55         sim_target=d30v
56         only_if_gcc=yes
57         extra_subdirs="${extra_subdirs} igen"
58         ;;
59 # end-sanitize-d30v
60   h8300*-*-*)           sim_target=h8300 ;;
61   h8500-*-*)            sim_target=h8500 ;;
62   m32r-*-*)             sim_target=m32r ;;
63   mips*-*-*)
64         # The MIPS simulator can only be compiled by gcc.
65         sim_target=mips
66         only_if_gcc=yes
67         extra_subdirs="${extra_subdirs} igen"
68         ;;
69 # start-sanitize-sky
70   txvu-*-*)
71         # The Sky simulator
72         sim_target=txvu
73         only_if_gcc=yes
74         extra_subdirs="${extra_subdirs} igen"
75         ;;
76 # end-sanitize-sky
77   mn10300*-*-*)
78         # The mn10300 simulator can only be compiled by gcc.
79         sim_target=mn10300
80         only_if_gcc=yes
81         ;;
82   mn10200*-*-*)
83         sim_target=mn10200
84         ;;
85   sh*-*-*)              sim_target=sh ;;
86   powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* | powerpc*-*-linux* )
87         # The PowerPC simulator uses the GCC extension long long as well as
88         # ANSI prototypes, so don't enable it for random host compilers
89         # unless asked to.
90         sim_target=ppc
91         only_if_gcc=yes
92         #extra_subdirs="${extra_subdirs}"
93         ;;
94 # start-sanitize-tic80
95   tic80-*-*)
96         sim_target=tic80
97         only_if_gcc=yes
98         extra_subdirs="${extra_subdirs} igen"
99         ;;
100 # end-sanitize-tic80
101   v850-*-*)
102         # The V850 simulator can only be compiled by gcc.
103         sim_target=v850
104         extra_subdirs="${extra_subdirs} igen"
105         only_if_gcc=yes
106         ;;
107 # start-sanitize-v850e
108   v850e-*-*)
109         # The V850 simulator can only be compiled by gcc.
110         sim_target=v850
111         extra_subdirs="${extra_subdirs} igen"
112         only_if_gcc=yes
113         ;;
114   v850ea-*-*)
115         # The V850 simulator can only be compiled by gcc.
116         sim_target=v850
117         extra_subdirs="${extra_subdirs} igen"
118         only_if_gcc=yes
119         ;;
120 # end-sanitize-v850e
121   w65-*-*)
122         sim_target=w65
123         # The w65 is suffering from gradual decay.
124         only_if_enabled=yes
125         ;;
126   z8k*-*-*)             sim_target=z8k ;;
127   sparc64-*-*)
128         sim_target=none # Don't build erc32 if sparc64.
129         ;;
130   sparc*-*-*)
131         # The SPARC simulator can only be compiled by gcc.
132         sim_target=erc32
133         only_if_gcc=yes
134         # Unfortunately erc32 won't build on many hosts, so only enable
135         # it if the user really really wants it.
136         only_if_enabled=yes
137         ;;
138   *)                    sim_target=none ;;
139 esac
140
141
142 # Is there a testsuite directory for the target?
143 testdir=`echo ${target} | sed -e 's/-.*-/-/'`
144 if test -r ${srcdir}/testsuite/${testdir}/configure ; then
145   extra_subdirs="${extra_subdirs} testsuite"
146 fi
147
148
149 case "${enable_sim}" in
150 no)     sim_target=none ;;
151 yes)
152         if test ${only_if_gcc} = yes ; then
153                 if test "${GCC}" != yes ; then
154                         echo "Can't enable simulator since not compiling with GCC."
155                         sim_target=none
156                 fi
157         fi
158         ;;
159 *)
160         if test ${only_if_enabled} = yes ; then
161                 sim_target=none
162         else
163                 if test ${only_if_gcc} = yes ; then
164                         if test "${GCC}" != yes ; then
165                                 sim_target=none
166                         fi
167                 fi
168         fi
169         ;;
170 esac
171
172 if test x"${sim_target}" != xnone ; then
173         configdirs="${extra_subdirs} ${sim_target}"
174         AC_CONFIG_SUBDIRS($configdirs)
175 fi
176
177 AC_OUTPUT(Makefile)
178
179 exit 0