aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/configure.ac
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-09-09 02:44:59 -0400
committerMike Frysinger <vapier@gentoo.org>2021-09-09 02:46:35 -0400
commitb728479074067064ed997a161d3b53feab3476f2 (patch)
tree1f1a37163db54407a85c6a620a3d32ad017b1fe3 /sim/ppc/configure.ac
parenta13ab747e7abc67fca3568195bf943708261a39e (diff)
downloadgdb-b728479074067064ed997a161d3b53feab3476f2.zip
gdb-b728479074067064ed997a161d3b53feab3476f2.tar.gz
gdb-b728479074067064ed997a161d3b53feab3476f2.tar.bz2
sim: ppc: drop support for std-config.h overrides
Only the ppc arch supports this kind of source file override logic. All the others expose knobs via configure flags, and for some of these, the ppc code does as well. For others, it doesn't make sense to ever change them. Since it's unlikely anyone is using this, drop it all to simplify the code (and to get us a little closer to the common sim code).
Diffstat (limited to 'sim/ppc/configure.ac')
-rw-r--r--sim/ppc/configure.ac22
1 files changed, 0 insertions, 22 deletions
diff --git a/sim/ppc/configure.ac b/sim/ppc/configure.ac
index e264c87..b837c5b 100644
--- a/sim/ppc/configure.ac
+++ b/sim/ppc/configure.ac
@@ -16,27 +16,6 @@ if test x"$silent" != x"yes" && test x"$sim_bitsize" != x""; then
fi],[sim_bitsize=""])dnl
-AC_ARG_ENABLE(sim-config,
-[ --enable-sim-config=file Override default config file],
-[case "${enableval}" in
- yes|no) AC_MSG_ERROR("No value supplied for --enable-sim-config=file");;
- *) if test -f "${srcdir}/${enableval}"; then
- sim_config="${enableval}";
- elif test -f "${srcdir}/${enableval}-config.h"; then
- sim_config="${enableval}-config.h"
- else
- AC_MSG_ERROR("Config file $enableval was not found");
- sim_config=std-config.h
- fi;;
-esac
-if test x"$silent" != x"yes" && test x"$sim_config" != x""; then
- echo "Setting config flags = $sim_config" 6>&1
-fi],[sim_config="std-config.h"
-if test x"$silent" != x"yes"; then
- echo "Setting config flags = $sim_config" 6>&1
-fi])dnl
-
-
AC_ARG_ENABLE(sim-decode-mechanism,
[ --enable-sim-decode-mechanism=which Specify the instruction decode mechanism.],
[case "${enableval}" in
@@ -621,7 +600,6 @@ else
fi
AC_SUBST(sim_line_nr)
-AC_SUBST(sim_config)
AC_SUBST(sim_opcode)
AC_SUBST(sim_switch)
AC_SUBST(sim_dup)