]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/configure.ac
Automatic date update in version.in
[thirdparty/binutils-gdb.git] / sim / configure.ac
CommitLineData
b7026657 1dnl Process this file with autoconf to produce a configure script.
b7026657 2AC_INIT(Makefile.in)
136da8cd 3AC_CONFIG_MACRO_DIRS([.. ../config])
b7026657
AC
4
5AC_PROG_CC
6AC_PROG_INSTALL
7AC_CHECK_TOOL(AR, ar)
8AC_CHECK_TOOL(RANLIB, ranlib, :)
9
b7026657
AC
10AC_CANONICAL_SYSTEM
11AC_ARG_PROGRAM
12AC_PROG_CC
5e25901f 13AC_PROG_CPP
b7026657 14AC_SUBST(CFLAGS)
b7026657
AC
15AR=${AR-ar}
16AC_SUBST(AR)
17AC_PROG_RANLIB
18
19# Put a plausible default for CC_FOR_BUILD in Makefile.
5c887dd5
JB
20if test -z "$CC_FOR_BUILD"; then
21 if test "x$cross_compiling" = "xno"; then
22 CC_FOR_BUILD='$(CC)'
23 else
24 CC_FOR_BUILD=gcc
25 fi
b7026657
AC
26fi
27AC_SUBST(CC_FOR_BUILD)
4b164edf
AS
28CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-${CFLAGS}}
29AC_SUBST(CFLAGS_FOR_BUILD)
b7026657
AC
30
31# If a cpu ever has more than one simulator to choose from, use
32# --enable-sim=... to choose.
33AC_ARG_ENABLE(sim,
8d0978fb 34[AS_HELP_STRING([--enable-sim], [Enable the GNU simulator])],
b7026657
AC
35[case "${enableval}" in
36yes | no) ;;
37*) AC_MSG_ERROR(bad value ${enableval} given for --enable-sim option) ;;
38esac])
39
3e8bb3e9
MF
40dnl WHEN ADDING ENTRIES TO THIS MATRIX:
41dnl Make sure that the left side always has two dashes. Otherwise you can get
42dnl spurious matches. Even for unambiguous cases, do this as a convention, else
43dnl the table becomes a real mess to understand and maintain.
b7026657 44if test "${enable_sim}" != no; then
3e8bb3e9
MF
45 sim_igen=no
46 case "${target}" in
47 aarch64*-*-*)
48 AC_CONFIG_SUBDIRS(aarch64)
49 ;;
50 arm*-*-*)
51 AC_CONFIG_SUBDIRS(arm)
52 ;;
53 avr*-*-*)
54 AC_CONFIG_SUBDIRS(avr)
55 ;;
56 bfin-*-*)
57 AC_CONFIG_SUBDIRS(bfin)
58 ;;
59 bpf-*-*)
60 AC_CONFIG_SUBDIRS(bpf)
61 ;;
62 cr16*-*-*)
63 AC_CONFIG_SUBDIRS(cr16)
64 ;;
65 cris-*-* | crisv32-*-*)
66 AC_CONFIG_SUBDIRS(cris)
67 ;;
68 d10v-*-*)
69 AC_CONFIG_SUBDIRS(d10v)
70 ;;
71 frv-*-*)
72 AC_CONFIG_SUBDIRS(frv)
73 ;;
74 h8300*-*-*)
75 AC_CONFIG_SUBDIRS(h8300)
76 ;;
77 iq2000-*-*)
78 AC_CONFIG_SUBDIRS(iq2000)
79 ;;
80 lm32-*-*)
81 AC_CONFIG_SUBDIRS(lm32)
82 ;;
83 m32c-*-*)
84 AC_CONFIG_SUBDIRS(m32c)
85 ;;
86 m32r-*-*)
87 AC_CONFIG_SUBDIRS(m32r)
88 ;;
89 m68hc11-*-*|m6811-*-*)
90 AC_CONFIG_SUBDIRS(m68hc11)
91 ;;
92 mcore-*-*)
93 AC_CONFIG_SUBDIRS(mcore)
94 ;;
95 microblaze-*-*)
96 AC_CONFIG_SUBDIRS(microblaze)
97 ;;
98 mips*-*-*)
99 AC_CONFIG_SUBDIRS(mips)
100 sim_igen=yes
101 ;;
102 mn10300*-*-*)
103 AC_CONFIG_SUBDIRS(mn10300)
104 sim_igen=yes
105 ;;
106 moxie-*-*)
107 AC_CONFIG_SUBDIRS(moxie)
108 ;;
109 msp430*-*-*)
110 AC_CONFIG_SUBDIRS(msp430)
111 ;;
112 or1k-*-* | or1knd-*-*)
113 AC_CONFIG_SUBDIRS(or1k)
114 ;;
115 pru*-*-*)
116 AC_CONFIG_SUBDIRS(pru)
117 ;;
118 riscv*-*-*)
119 AC_CONFIG_SUBDIRS(riscv)
120 ;;
121 rl78-*-*)
122 AC_CONFIG_SUBDIRS(rl78)
123 ;;
124 rx-*-*)
125 AC_CONFIG_SUBDIRS(rx)
126 ;;
127 sh*-*-*)
128 AC_CONFIG_SUBDIRS(sh)
129 ;;
130 sparc-*-rtems*|sparc-*-elf*)
131 AC_CONFIG_SUBDIRS(erc32)
132 ;;
133 powerpc*-*-*)
134 AC_CONFIG_SUBDIRS(ppc)
135 ;;
136 ft32-*-*)
137 AC_CONFIG_SUBDIRS(ft32)
138 ;;
139 v850*-*-*)
140 AC_CONFIG_SUBDIRS(v850)
141 sim_igen=yes
142 ;;
143 esac
bb3eddb5
MF
144 if test "$sim_igen" = yes; then
145 AC_CONFIG_SUBDIRS(igen)
146 fi
b7026657
AC
147fi
148
bb3eddb5
MF
149AC_CONFIG_FILES([Makefile testsuite/Makefile])
150AC_OUTPUT