From 1b393626cef48974502e7077b191555b56680ee6 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Sat, 26 Dec 2015 20:20:23 -0500 Subject: [PATCH] sim: punt WITH_DEVICES & tconfig.h support No arch is using this anymore, and we want all new ports using the hardware framework instead. Punt WITH_DEVICES and the two callbacks device_io_{read,write}_buffer. We can also punt the tconfig.h file as no port is using it anymore. This fixes in-tree builds that get confused by picking up the wrong one (common/ vs /) caused by commit ae7d0cac8ce971f7108d270c. Any port that needs to set up a global define can use their own sim-main.h file that they must provide regardless. --- sim/ChangeLog | 4 +++ sim/README-HACKING | 11 -------- sim/aarch64/ChangeLog | 4 +++ sim/aarch64/config.in | 2 -- sim/aarch64/configure | 6 ++--- sim/arm/ChangeLog | 4 +++ sim/arm/config.in | 2 -- sim/arm/configure | 6 ++--- sim/avr/ChangeLog | 4 +++ sim/avr/config.in | 2 -- sim/avr/configure | 6 ++--- sim/bfin/ChangeLog | 4 +++ sim/bfin/config.in | 2 -- sim/bfin/configure | 6 ++--- sim/common/ChangeLog | 19 ++++++++++++++ sim/common/Make-common.in | 3 +-- sim/common/acinclude.m4 | 3 --- sim/common/config.in | 2 -- sim/common/configure | 6 ++--- sim/common/sim-core.c | 54 --------------------------------------- sim/common/sim-core.h | 17 ------------ sim/common/sim-n-core.h | 23 ----------------- sim/common/tconfig.h | 3 --- sim/cr16/ChangeLog | 4 +++ sim/cr16/config.in | 2 -- sim/cr16/configure | 6 ++--- sim/cris/ChangeLog | 5 ++++ sim/cris/Makefile.in | 2 +- sim/cris/config.in | 2 -- sim/cris/configure | 6 ++--- sim/d10v/ChangeLog | 4 +++ sim/d10v/config.in | 2 -- sim/d10v/configure | 6 ++--- sim/erc32/ChangeLog | 4 +++ sim/erc32/config.in | 2 -- sim/erc32/configure | 6 ++--- sim/frv/ChangeLog | 4 +++ sim/frv/config.in | 2 -- sim/frv/configure | 6 ++--- sim/ft32/ChangeLog | 4 +++ sim/ft32/config.in | 2 -- sim/ft32/configure | 6 ++--- sim/h8300/ChangeLog | 4 +++ sim/h8300/config.in | 2 -- sim/h8300/configure | 6 ++--- sim/iq2000/ChangeLog | 4 +++ sim/iq2000/config.in | 2 -- sim/iq2000/configure | 6 ++--- sim/lm32/ChangeLog | 4 +++ sim/lm32/config.in | 2 -- sim/lm32/configure | 6 ++--- sim/m32c/ChangeLog | 4 +++ sim/m32c/config.in | 2 -- sim/m32c/configure | 6 ++--- sim/m32r/ChangeLog | 4 +++ sim/m32r/config.in | 2 -- sim/m32r/configure | 6 ++--- sim/m68hc11/ChangeLog | 4 +++ sim/m68hc11/config.in | 2 -- sim/m68hc11/configure | 6 ++--- sim/mcore/ChangeLog | 4 +++ sim/mcore/config.in | 2 -- sim/mcore/configure | 6 ++--- sim/microblaze/ChangeLog | 4 +++ sim/microblaze/config.in | 2 -- sim/microblaze/configure | 6 ++--- sim/mips/ChangeLog | 4 +++ sim/mips/config.in | 2 -- sim/mips/configure | 6 ++--- sim/mn10300/ChangeLog | 4 +++ sim/mn10300/config.in | 2 -- sim/mn10300/configure | 6 ++--- sim/moxie/ChangeLog | 4 +++ sim/moxie/config.in | 2 -- sim/moxie/configure | 6 ++--- sim/msp430/ChangeLog | 4 +++ sim/msp430/config.in | 2 -- sim/msp430/configure | 6 ++--- sim/ppc/ChangeLog | 6 +++++ sim/ppc/Makefile.in | 9 +------ sim/rl78/ChangeLog | 4 +++ sim/rl78/config.in | 2 -- sim/rl78/configure | 6 ++--- sim/rx/ChangeLog | 4 +++ sim/rx/config.in | 2 -- sim/rx/configure | 6 ++--- sim/sh/ChangeLog | 4 +++ sim/sh/config.in | 2 -- sim/sh/configure | 6 ++--- sim/sh64/ChangeLog | 4 +++ sim/sh64/config.in | 2 -- sim/sh64/configure | 6 ++--- sim/v850/ChangeLog | 4 +++ sim/v850/config.in | 2 -- sim/v850/configure | 6 ++--- 95 files changed, 197 insertions(+), 290 deletions(-) delete mode 100644 sim/common/tconfig.h diff --git a/sim/ChangeLog b/sim/ChangeLog index 19327de7b21..0e25046268c 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * README-HACKING: Delete mention of tconfig.h. + 2015-11-24 Nick Clifton * configure.tgt: Add aarch64 entry. diff --git a/sim/README-HACKING b/sim/README-HACKING index 188ca3c1122..26dbde29320 100644 --- a/sim/README-HACKING +++ b/sim/README-HACKING @@ -7,7 +7,6 @@ Contents - Common Makefile Support - TAGS support - Generating "configure" files -- tconfig.h - C Language Assumptions - "dump" commands under gdb @@ -158,16 +157,6 @@ To add the entries to an alternative ChangeLog file, use: $ make ChangeLog=MyChangeLog .... - -tconfig.h -========== - -File tconfig.h defines one or more target configuration macros -(e.g. a tm.h file). There are very few that need defining. -For a list of all of them, see common/tconfig.h. -It contains them all, commented out. -The intent is that a new port can just copy this file and -define the ones it needs. C Language Assumptions ====================== diff --git a/sim/aarch64/ChangeLog b/sim/aarch64/ChangeLog index cd0cd41189d..13e026be636 100644 --- a/sim/aarch64/ChangeLog +++ b/sim/aarch64/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * interp.c (sim_create_inferior): Update comment and argv check. diff --git a/sim/aarch64/config.in b/sim/aarch64/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/aarch64/config.in +++ b/sim/aarch64/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/aarch64/configure b/sim/aarch64/configure index 5f078bf657b..d909324e33b 100755 --- a/sim/aarch64/configure +++ b/sim/aarch64/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog index d60ac4bb2bc..950a307109b 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-25 Mike Frysinger * Makefile.in (SIM_OBJS): Delete bag.o. diff --git a/sim/arm/config.in b/sim/arm/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/arm/config.in +++ b/sim/arm/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/arm/configure b/sim/arm/configure index 215f0c45bfa..d46ffcb66b0 100755 --- a/sim/arm/configure +++ b/sim/arm/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog index 6bc7b7dcaf0..62bf5b26f94 100644 --- a/sim/avr/ChangeLog +++ b/sim/avr/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-15 Dominik Vogt * interp.c (sign_ext): Fix left shift of negative value. diff --git a/sim/avr/config.in b/sim/avr/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/avr/config.in +++ b/sim/avr/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/avr/configure b/sim/avr/configure index b9530e20bda..fded2838593 100755 --- a/sim/avr/configure +++ b/sim/avr/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog index 2bdfc6e0faf..4cdc81cf868 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * devices.c (bfin_mmr_invalid): Delete cpu arg and add missing arg. diff --git a/sim/bfin/config.in b/sim/bfin/config.in index 6b995a7b823..c5223be188c 100644 --- a/sim/bfin/config.in +++ b/sim/bfin/config.in @@ -210,5 +210,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/bfin/configure b/sim/bfin/configure index 76cbc6af9b5..8edee2514b7 100755 --- a/sim/bfin/configure +++ b/sim/bfin/configure @@ -8323,8 +8323,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12340,7 +12338,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12343 "configure" +#line 12341 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12446,7 +12444,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12449 "configure" +#line 12447 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 05cdda8086f..9d15f640572 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,22 @@ +2015-12-26 Mike Frysinger + + * acinclude.m4 (AH_BOTTOM): Delete tconfig.h appending. + * config.in, configure: Regenerate. + * Make-common.in (sim-basics_h): Delete tconfig.h. + (distclean): Likewise. + * sim-core.c (device_io_read_buffer, device_io_write_buffer): Delete. + (new_sim_core_mapping): Delete WITH_HW and device *device. + (sim_core_map_attach, sim_core_attach): Likewise. + (sim_core_read_buffer): Delete WITH_DEVICES logic. + (sim_core_write_buffer): Likewise. + * sim-core.h (struct _sim_core_mapping): Delete WITH_HW and device + *device. + (sim_core_attach): Likewise. + (device_io_read_buffer, device_io_write_buffer): Delete. + * sim-n-core.h (sim_core_read_aligned_N): Delete WITH_DEVICES logic. + (sim_core_write_aligned_N): Likewise. + * tconfig.h: Delete file. + 2015-12-26 Mike Frysinger * sim-core.c (sim_core_read_buffer): Move cia decl to top of func. diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 2566bf4bf5b..d2a84d42a9f 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -361,7 +361,6 @@ sim-base_h = $(srccom)/sim-base.h \ $(sim-cpu_h) sim-basics_h = $(srccom)/sim-basics.h \ ../common/cconfig.h \ - tconfig.h \ $(sim-config_h) \ $(callback_h) \ $(sim-inline_h) \ @@ -536,7 +535,7 @@ clean: $(SIM_EXTRA_CLEAN) distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN) rm -f TAGS rm -f Makefile config.cache config.log config.status .gdbinit - rm -f tconfig.h config.h stamp-h + rm -f config.h stamp-h rm -f targ-vals.def .c.o: diff --git a/sim/common/acinclude.m4 b/sim/common/acinclude.m4 index 672227ea416..ebb6d1bc29e 100644 --- a/sim/common/acinclude.m4 +++ b/sim/common/acinclude.m4 @@ -53,9 +53,6 @@ AR=${AR-ar} AC_SUBST(AR) AC_PROG_RANLIB -dnl Pull in the target configuration file directly. -AH_BOTTOM([#include "tconfig.h"]) - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. diff --git a/sim/common/config.in b/sim/common/config.in index 1904046bd07..4f3c89f5db9 100644 --- a/sim/common/config.in +++ b/sim/common/config.in @@ -207,5 +207,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/common/configure b/sim/common/configure index 7f1ef528041..d58935d59bc 100755 --- a/sim/common/configure +++ b/sim/common/configure @@ -6547,8 +6547,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -10564,7 +10562,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10567 "configure" +#line 10565 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -10670,7 +10668,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 10673 "configure" +#line 10671 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/common/sim-core.c b/sim/common/sim-core.c index 68212e9c24f..eb4cbb2757b 100644 --- a/sim/common/sim-core.c +++ b/sim/common/sim-core.c @@ -28,8 +28,6 @@ #if (WITH_HW) #include "sim-hw.h" -#define device_io_read_buffer(client, ...) device_io_read_buffer ((device *)(client), __VA_ARGS__) -#define device_io_write_buffer(client, ...) device_io_write_buffer ((device *)(client), __VA_ARGS__) #endif /* "core" module install handler. @@ -141,11 +139,7 @@ new_sim_core_mapping (SIM_DESC sd, address_word addr, address_word nr_bytes, unsigned modulo, -#if WITH_HW struct hw *device, -#else - device *device, -#endif void *buffer, void *free_buffer) { @@ -174,11 +168,7 @@ sim_core_map_attach (SIM_DESC sd, address_word addr, address_word nr_bytes, unsigned modulo, -#if WITH_HW struct hw *client, /*callback/default*/ -#else - device *client, /*callback/default*/ -#endif void *buffer, /*raw_memory*/ void *free_buffer) /*raw_memory*/ { @@ -264,11 +254,7 @@ sim_core_attach (SIM_DESC sd, address_word addr, address_word nr_bytes, unsigned modulo, -#if WITH_HW struct hw *client, -#else - device *client, -#endif void *optional_buffer) { sim_core *memory = STATE_CORE (sd); @@ -485,26 +471,6 @@ sim_core_read_buffer (SIM_DESC sd, 0 /*dont-abort*/, NULL, NULL_CIA); if (mapping == NULL) break; -#if (WITH_DEVICES) - if (mapping->device != NULL) - { - int nr_bytes = len - count; - sim_cia cia = cpu ? CPU_PC_GET (cpu) : NULL_CIA; - if (raddr + nr_bytes - 1> mapping->bound) - nr_bytes = mapping->bound - raddr + 1; - if (device_io_read_buffer (mapping->device, - (unsigned_1*)buffer + count, - mapping->space, - raddr, - nr_bytes, - sd, - cpu, - cia) != nr_bytes) - break; - count += nr_bytes; - continue; - } -#endif #if (WITH_HW) if (mapping->device != NULL) { @@ -563,26 +529,6 @@ sim_core_write_buffer (SIM_DESC sd, 0 /*dont-abort*/, NULL, NULL_CIA); if (mapping == NULL) break; -#if (WITH_DEVICES) - if (mapping->device != NULL) - { - int nr_bytes = len - count; - sim_cia cia = cpu ? CPU_PC_GET (cpu) : NULL_CIA; - if (raddr + nr_bytes - 1 > mapping->bound) - nr_bytes = mapping->bound - raddr + 1; - if (device_io_write_buffer (mapping->device, - (unsigned_1*)buffer + count, - mapping->space, - raddr, - nr_bytes, - sd, - cpu, - cia) != nr_bytes) - break; - count += nr_bytes; - continue; - } -#endif #if (WITH_HW) if (mapping->device != NULL) { diff --git a/sim/common/sim-core.h b/sim/common/sim-core.h index bf982325bc1..6fdf1203b89 100644 --- a/sim/common/sim-core.h +++ b/sim/common/sim-core.h @@ -57,11 +57,7 @@ struct _sim_core_mapping { void *free_buffer; void *buffer; /* callback map */ -#if (WITH_HW) struct hw *device; -#else - device *device; -#endif /* tracing */ int trace; /* growth */ @@ -144,11 +140,7 @@ extern void sim_core_attach address_word addr, address_word nr_bytes, unsigned modulo, -#if (WITH_HW) struct hw *client, -#else - device *client, -#endif void *optional_buffer); @@ -347,13 +339,4 @@ DECLARE_SIM_CORE_READ_N(misaligned,7,8) #undef DECLARE_SIM_CORE_READ_N - -#if (WITH_DEVICES) -/* TODO: create sim/common/device.h */ -/* These are defined with each particular cpu. */ -int device_io_read_buffer(device *me, void *dest, int space, address_word addr, unsigned nr_bytes, SIM_DESC sd, sim_cpu *processor, sim_cia cia); -int device_io_write_buffer(device *me, const void *source, int space, address_word addr, unsigned nr_bytes, SIM_DESC sd, sim_cpu *processor, sim_cia cia); -#endif - - #endif diff --git a/sim/common/sim-n-core.h b/sim/common/sim-n-core.h index 3393f19c252..0867cc2248f 100644 --- a/sim/common/sim-n-core.h +++ b/sim/common/sim-n-core.h @@ -164,18 +164,6 @@ sim_core_read_aligned_N(sim_cpu *cpu, mapping = sim_core_find_mapping (core, map, addr, N, read_transfer, 1 /*abort*/, cpu, cia); do { -#if (WITH_DEVICES) - if (mapping->device != NULL) - { - unsigned_M data; - if (device_io_read_buffer (mapping->device, &data, mapping->space, addr, N, CPU_STATE (cpu), cpu, cia) != N) - sim_engine_abort (CPU_STATE (cpu), cpu, cia, - "internal error - %s - io_read_buffer should not fail", - XSTRING (sim_core_read_aligned_N)); - val = T2H_M (data); - break; - } -#endif #if (WITH_HW) if (mapping->device != NULL) { @@ -296,17 +284,6 @@ sim_core_write_aligned_N(sim_cpu *cpu, mapping = sim_core_find_mapping (core, map, addr, N, write_transfer, 1 /*abort*/, cpu, cia); do { -#if (WITH_DEVICES) - if (mapping->device != NULL) - { - unsigned_M data = H2T_M (val); - if (device_io_write_buffer (mapping->device, &data, mapping->space, addr, N, CPU_STATE (cpu), cpu, cia) != N) - sim_engine_abort (CPU_STATE (cpu), cpu, cia, - "internal error - %s - io_write_buffer should not fail", - XSTRING (sim_core_read_aligned_N)); - break; - } -#endif #if (WITH_HW) if (mapping->device != NULL) { diff --git a/sim/common/tconfig.h b/sim/common/tconfig.h deleted file mode 100644 index eaa48322f8e..00000000000 --- a/sim/common/tconfig.h +++ /dev/null @@ -1,3 +0,0 @@ -/* Default target configuration file. - To override this, create file `tconfig.in' in the simulator's - source directory. */ diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog index b23e0cbb6f1..004d729ce45 100644 --- a/sim/cr16/ChangeLog +++ b/sim/cr16/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-24 Mike Frysinger * sim-if.c (cris_option_install): Delete. diff --git a/sim/cr16/config.in b/sim/cr16/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/cr16/config.in +++ b/sim/cr16/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/cr16/configure b/sim/cr16/configure index b44e895990c..676e9a9270f 100755 --- a/sim/cr16/configure +++ b/sim/cr16/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog index 82cffd34e23..f2be067e12b 100644 --- a/sim/cris/ChangeLog +++ b/sim/cris/ChangeLog @@ -1,3 +1,8 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + * Makefile.in (rvdummy.o): Delete tconfig.h. + 2015-12-26 Mike Frysinger * sim-if.c (sim_open): Delete cpu variable. Pass NULL/NULL_CIA to diff --git a/sim/cris/Makefile.in b/sim/cris/Makefile.in index a0520ac3d8e..887407c4f4a 100644 --- a/sim/cris/Makefile.in +++ b/sim/cris/Makefile.in @@ -72,7 +72,7 @@ check: rvdummy$(EXEEXT) rvdummy$(EXEEXT): rvdummy.o $(EXTRA_LIBDEPS) $(CC) $(ALL_CFLAGS) -o rvdummy$(EXEEXT) rvdummy.o $(EXTRA_LIBS) -rvdummy.o: rvdummy.c config.h tconfig.h $(remote_sim_h) $(callback_h) +rvdummy.o: rvdummy.c config.h $(remote_sim_h) $(callback_h) # CRISV10 objs diff --git a/sim/cris/config.in b/sim/cris/config.in index d2184e64866..1734eead908 100644 --- a/sim/cris/config.in +++ b/sim/cris/config.in @@ -174,5 +174,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/cris/configure b/sim/cris/configure index 46daa182002..eb1e7f4296d 100755 --- a/sim/cris/configure +++ b/sim/cris/configure @@ -8311,8 +8311,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12328,7 +12326,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12331 "configure" +#line 12329 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12434,7 +12432,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12437 "configure" +#line 12435 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog index dd494c1781c..d51ede7171d 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-15 Mike Frysinger * Makefile.in (SIM_OBJS): Delete sim-reason.o and sim-stop.o. diff --git a/sim/d10v/config.in b/sim/d10v/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/d10v/config.in +++ b/sim/d10v/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/d10v/configure b/sim/d10v/configure index 215f0c45bfa..d46ffcb66b0 100755 --- a/sim/d10v/configure +++ b/sim/d10v/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog index d3582e638c9..e9a324118b8 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-06-23 Mike Frysinger * configure: Regenerate. diff --git a/sim/erc32/config.in b/sim/erc32/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/erc32/config.in +++ b/sim/erc32/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/erc32/configure b/sim/erc32/configure index cf91fa9511a..94c6fa44132 100755 --- a/sim/erc32/configure +++ b/sim/erc32/configure @@ -8280,8 +8280,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12297,7 +12295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12300 "configure" +#line 12298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12403,7 +12401,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12406 "configure" +#line 12404 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog index 936bbf23203..d61d12c2f84 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * sim-if.c (sim_create_inferior): Replace old #if 0 code with dupargv. diff --git a/sim/frv/config.in b/sim/frv/config.in index 99be0a634fa..0f50442c897 100644 --- a/sim/frv/config.in +++ b/sim/frv/config.in @@ -162,5 +162,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/frv/configure b/sim/frv/configure index 0cc04c12623..ca3363c6a13 100755 --- a/sim/frv/configure +++ b/sim/frv/configure @@ -8306,8 +8306,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12323,7 +12321,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12326 "configure" +#line 12324 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12429,7 +12427,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12432 "configure" +#line 12430 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/ft32/ChangeLog b/sim/ft32/ChangeLog index b24646755c1..0f3941a43c0 100644 --- a/sim/ft32/ChangeLog +++ b/sim/ft32/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * interp.c (sim_create_inferior): Update comment and argv check. diff --git a/sim/ft32/config.in b/sim/ft32/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/ft32/config.in +++ b/sim/ft32/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/ft32/configure b/sim/ft32/configure index 753c3ac15c7..d16b9c5e00d 100755 --- a/sim/ft32/configure +++ b/sim/ft32/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog index d566a652317..d8f38567993 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-24 Mike Frysinger * compile.c (H8300_OPTIONS): New enum from common/sim-options.c. diff --git a/sim/h8300/config.in b/sim/h8300/config.in index d64ad4852c1..3abf1949dc7 100644 --- a/sim/h8300/config.in +++ b/sim/h8300/config.in @@ -144,5 +144,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/h8300/configure b/sim/h8300/configure index 0c558e890b6..3c4902006be 100755 --- a/sim/h8300/configure +++ b/sim/h8300/configure @@ -8275,8 +8275,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12292,7 +12290,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12295 "configure" +#line 12293 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12398,7 +12396,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12401 "configure" +#line 12399 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog index 67529e491d4..966c27a77aa 100644 --- a/sim/iq2000/ChangeLog +++ b/sim/iq2000/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * sim-if.c (sim_create_inferior): Replace old #if 0 code with dupargv. diff --git a/sim/iq2000/config.in b/sim/iq2000/config.in index 99be0a634fa..0f50442c897 100644 --- a/sim/iq2000/config.in +++ b/sim/iq2000/config.in @@ -162,5 +162,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/iq2000/configure b/sim/iq2000/configure index d2c9629dac9..26937d375ed 100755 --- a/sim/iq2000/configure +++ b/sim/iq2000/configure @@ -8306,8 +8306,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12323,7 +12321,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12326 "configure" +#line 12324 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12429,7 +12427,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12432 "configure" +#line 12430 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog index a3da5608b86..68e8d619548 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * sim-if.c (sim_create_inferior): Replace old #if 0 code with dupargv. diff --git a/sim/lm32/config.in b/sim/lm32/config.in index 99be0a634fa..0f50442c897 100644 --- a/sim/lm32/config.in +++ b/sim/lm32/config.in @@ -162,5 +162,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/lm32/configure b/sim/lm32/configure index e5643be2ed2..be10750066e 100755 --- a/sim/lm32/configure +++ b/sim/lm32/configure @@ -8303,8 +8303,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12320,7 +12318,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12323 "configure" +#line 12321 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12426,7 +12424,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12429 "configure" +#line 12427 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog index c44e7eb7e0a..19f31149eb3 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-09 Mike Frysinger * Makefile.in (sample.x, sample.mot, sample2.x, sample2.o, gloss.o): diff --git a/sim/m32c/config.in b/sim/m32c/config.in index 7d735571910..7164bccea18 100644 --- a/sim/m32c/config.in +++ b/sim/m32c/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/m32c/configure b/sim/m32c/configure index f51664b4102..ac419987827 100755 --- a/sim/m32c/configure +++ b/sim/m32c/configure @@ -8283,8 +8283,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12300,7 +12298,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12303 "configure" +#line 12301 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12406,7 +12404,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12409 "configure" +#line 12407 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog index c492bd63fd1..ecbf4cf97bd 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * sim-if.c (sim_create_inferior): Replace old #if 0 code with dupargv. diff --git a/sim/m32r/config.in b/sim/m32r/config.in index 99be0a634fa..0f50442c897 100644 --- a/sim/m32r/config.in +++ b/sim/m32r/config.in @@ -162,5 +162,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/m32r/configure b/sim/m32r/configure index 6b9c76ef385..5c263dacce2 100755 --- a/sim/m32r/configure +++ b/sim/m32r/configure @@ -8308,8 +8308,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12325,7 +12323,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12328 "configure" +#line 12326 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12431,7 +12429,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12434 "configure" +#line 12432 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog index 4a20b5510d6..46e243e5864 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-24 Mike Frysinger * sim-main.h (SIM_HANDLES_LMA): Delete. diff --git a/sim/m68hc11/config.in b/sim/m68hc11/config.in index 99be0a634fa..0f50442c897 100644 --- a/sim/m68hc11/config.in +++ b/sim/m68hc11/config.in @@ -162,5 +162,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index 5d7749d1149..6870e8cf641 100755 --- a/sim/m68hc11/configure +++ b/sim/m68hc11/configure @@ -8296,8 +8296,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12313,7 +12311,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12316 "configure" +#line 12314 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12419,7 +12417,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12422 "configure" +#line 12420 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog index d6f0cd1a63d..1d5fa35a40b 100644 --- a/sim/mcore/ChangeLog +++ b/sim/mcore/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-15 Mike Frysinger * Makefile.in (SIM_OBJS): Delete sim-reason.o, sim-reg.o, and diff --git a/sim/mcore/config.in b/sim/mcore/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/mcore/config.in +++ b/sim/mcore/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/mcore/configure b/sim/mcore/configure index 215f0c45bfa..d46ffcb66b0 100755 --- a/sim/mcore/configure +++ b/sim/mcore/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog index 5712f289e4d..ed97275c6db 100644 --- a/sim/microblaze/ChangeLog +++ b/sim/microblaze/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-15 Mike Frysinger * Makefile.in (SIM_OBJS): Delete sim-reason.o and sim-stop.o. diff --git a/sim/microblaze/config.in b/sim/microblaze/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/microblaze/config.in +++ b/sim/microblaze/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/microblaze/configure b/sim/microblaze/configure index 215f0c45bfa..d46ffcb66b0 100755 --- a/sim/microblaze/configure +++ b/sim/microblaze/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog index eb076e460c2..7d7725d41b1 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * interp.c (sim_write, sim_read): Delete. diff --git a/sim/mips/config.in b/sim/mips/config.in index e6e3dc38799..70bf5caadd3 100644 --- a/sim/mips/config.in +++ b/sim/mips/config.in @@ -171,5 +171,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/mips/configure b/sim/mips/configure index e1a838ddbdb..6f1d13659fa 100755 --- a/sim/mips/configure +++ b/sim/mips/configure @@ -8332,8 +8332,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12349,7 +12347,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12352 "configure" +#line 12350 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12455,7 +12453,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12458 "configure" +#line 12456 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog index bce17726d88..65fa03efab1 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-24 Mike Frysinger * sim-main.h (SIM_HANDLES_LMA): Delete. diff --git a/sim/mn10300/config.in b/sim/mn10300/config.in index e4603adaa4a..664dc350658 100644 --- a/sim/mn10300/config.in +++ b/sim/mn10300/config.in @@ -183,5 +183,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/mn10300/configure b/sim/mn10300/configure index 703063f93d5..6e4246eec16 100755 --- a/sim/mn10300/configure +++ b/sim/mn10300/configure @@ -8305,8 +8305,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12322,7 +12320,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12325 "configure" +#line 12323 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12428,7 +12426,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12431 "configure" +#line 12429 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/moxie/ChangeLog b/sim/moxie/ChangeLog index 40fa592d2c8..016c61f5af9 100644 --- a/sim/moxie/ChangeLog +++ b/sim/moxie/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-15 Mike Frysinger * Makefile.in (SIM_OBJS): Delete sim-reason.o and sim-stop.o. diff --git a/sim/moxie/config.in b/sim/moxie/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/moxie/config.in +++ b/sim/moxie/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/moxie/configure b/sim/moxie/configure index 53bc48b97d4..3232de3a52a 100755 --- a/sim/moxie/configure +++ b/sim/moxie/configure @@ -8301,8 +8301,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12318,7 +12316,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12321 "configure" +#line 12319 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12424,7 +12422,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12427 "configure" +#line 12425 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog index 53fece0c623..0d57e7f46af 100644 --- a/sim/msp430/ChangeLog +++ b/sim/msp430/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-15 Dominik Vogt * msp430-sim.c (get_op, put_op): Fix left shift of negative value. diff --git a/sim/msp430/config.in b/sim/msp430/config.in index 531fe199859..a52fc2ba4e5 100644 --- a/sim/msp430/config.in +++ b/sim/msp430/config.in @@ -144,5 +144,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/msp430/configure b/sim/msp430/configure index b5d166c8cd4..796741b31bd 100755 --- a/sim/msp430/configure +++ b/sim/msp430/configure @@ -8293,8 +8293,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12310,7 +12308,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12313 "configure" +#line 12311 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12416,7 +12414,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12419 "configure" +#line 12417 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 9d85c4c6109..413a99d7a6b 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,3 +1,9 @@ +2015-12-26 Mike Frysinger + + * Makefile.in (TCONFIG_H): Delete. + (sim-fpu.o): Delete $(TCONFIG_H). + (tconfig.h): Delete rule. + 2015-11-21 Mike Frysinger PR sim/13834 diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index bac36a99754..5f689091271 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -446,9 +446,6 @@ SUPPORT_H = \ TARG_VALS_H = \ targ-vals.h -TCONFIG_H = \ - tconfig.h - INLINE = \ inline.h \ inline.c @@ -659,13 +656,9 @@ callback.o: $(srcdir)/../common/callback.c $(TARG_VALS_H) $(CONFIG_H) targ-map.o: targ-map.c $(ANSIDECL_H) $(GDB_CALLBACK_H) $(TARG_VALS_H) -sim-fpu.o: $(srcdir)/../common/sim-fpu.c $(CONFIG_H) $(TCONFIG_H) +sim-fpu.o: $(srcdir)/../common/sim-fpu.c $(CONFIG_H) $(CC) -c $(STD_CFLAGS) -DHAVE_CONFIG_H $(srcdir)/../common/sim-fpu.c -tconfig.h: - rm -f tconfig.h - echo > tconfig.h - # Rebuild options whenever something changes so the date/time is up to date. options.o: options.c $(CPU_H) $(OPTIONS_H) $(DEFINES_H) $(BASICS_H) $(IDECODE_H) $(INLINE) $(LIB_SRC) $(BUILT_SRC) config.status Makefile $(CC) -c $(STD_CFLAGS) '-DOPCODE_RULES="@sim_opcode@"' '-DIGEN_FLAGS="$(IGEN_FLAGS)"' '-DDGEN_FLAGS="$(DGEN_FLAGS)"' $(srcdir)/options.c diff --git a/sim/rl78/ChangeLog b/sim/rl78/ChangeLog index d9d38177396..5a1546137d1 100644 --- a/sim/rl78/ChangeLog +++ b/sim/rl78/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-06-23 Mike Frysinger * configure: Regenerate. diff --git a/sim/rl78/config.in b/sim/rl78/config.in index 531fe199859..a52fc2ba4e5 100644 --- a/sim/rl78/config.in +++ b/sim/rl78/config.in @@ -144,5 +144,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/rl78/configure b/sim/rl78/configure index 433cad30684..6b45e05916c 100755 --- a/sim/rl78/configure +++ b/sim/rl78/configure @@ -8275,8 +8275,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12292,7 +12290,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12295 "configure" +#line 12293 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12398,7 +12396,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12401 "configure" +#line 12399 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog index 15bc12f45ad..43c715c6d13 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-10 Nick Clifton * rx.c (id_names): Add nop4, nop5, nop6 and nop7. diff --git a/sim/rx/config.in b/sim/rx/config.in index 077a1e80acd..236f6a4560a 100644 --- a/sim/rx/config.in +++ b/sim/rx/config.in @@ -150,5 +150,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/rx/configure b/sim/rx/configure index e36b80d21a6..4bd0e582507 100755 --- a/sim/rx/configure +++ b/sim/rx/configure @@ -8280,8 +8280,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12297,7 +12295,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12300 "configure" +#line 12298 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12403,7 +12401,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12406 "configure" +#line 12404 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog index 427333d97d5..b744ac29400 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-11-21 Mike Frysinger * gencode.c (tab): Pass sd into trap calls. diff --git a/sim/sh/config.in b/sim/sh/config.in index 3152bea4600..fc7af77d99b 100644 --- a/sim/sh/config.in +++ b/sim/sh/config.in @@ -156,5 +156,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/sh/configure b/sim/sh/configure index 215f0c45bfa..d46ffcb66b0 100755 --- a/sim/sh/configure +++ b/sim/sh/configure @@ -8300,8 +8300,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12317,7 +12315,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12320 "configure" +#line 12318 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12423,7 +12421,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12426 "configure" +#line 12424 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/sh64/ChangeLog b/sim/sh64/ChangeLog index 8a2b58b13ef..7fc3982cb53 100644 --- a/sim/sh64/ChangeLog +++ b/sim/sh64/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-26 Mike Frysinger * sim-if.c (sim_create_inferior): Replace old #if 0 code with dupargv. diff --git a/sim/sh64/config.in b/sim/sh64/config.in index 99be0a634fa..0f50442c897 100644 --- a/sim/sh64/config.in +++ b/sim/sh64/config.in @@ -162,5 +162,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/sh64/configure b/sim/sh64/configure index 2a3e660ed07..6310f429c12 100755 --- a/sim/sh64/configure +++ b/sim/sh64/configure @@ -8306,8 +8306,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12323,7 +12321,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12326 "configure" +#line 12324 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12429,7 +12427,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12432 "configure" +#line 12430 "configure" #include "confdefs.h" #if HAVE_DLFCN_H diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog index 82652f009b0..14fe2ebdd64 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2015-12-26 Mike Frysinger + + * config.in, configure: Regenerate. + 2015-12-24 Mike Frysinger * sim-main.h (WITH_WATCHPOINTS): Delete. diff --git a/sim/v850/config.in b/sim/v850/config.in index 18ad3ac7715..d32d83b06e1 100644 --- a/sim/v850/config.in +++ b/sim/v850/config.in @@ -177,5 +177,3 @@ /* Define to 1 if you need to in order for `stat' and other things to work. */ #undef _POSIX_SOURCE - -#include "tconfig.h" diff --git a/sim/v850/configure b/sim/v850/configure index 46d9ffed8a8..97113c3caaf 100755 --- a/sim/v850/configure +++ b/sim/v850/configure @@ -8299,8 +8299,6 @@ else fi - - # Some of the common include files depend on bfd.h, and bfd.h checks # that config.h is included first by testing that the PACKAGE macro # is defined. @@ -12316,7 +12314,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12319 "configure" +#line 12317 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -12422,7 +12420,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 12425 "configure" +#line 12423 "configure" #include "confdefs.h" #if HAVE_DLFCN_H -- 2.39.2