This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 3/4] sim: mcore: use common configure options


In preparation for converting to nrun, call the common functions that
are needed.  This doesn't produce any new warnings, and the generated
code should be the same.

Committed.
---
 sim/mcore/ChangeLog    |   7 +
 sim/mcore/config.in    |  15 ++
 sim/mcore/configure    | 417 ++++++++++++++++++++++++++++++++++++++++++++++++-
 sim/mcore/configure.ac |   5 +
 4 files changed, 442 insertions(+), 2 deletions(-)

diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog
index f6089c8..88e67d2 100644
--- a/sim/mcore/ChangeLog
+++ b/sim/mcore/ChangeLog
@@ -1,5 +1,12 @@
 2015-03-29  Mike Frysinger  <vapier@gentoo.org>
 
+	* configure.ac: Call SIM_AC_OPTION_ENDIAN, SIM_AC_OPTION_ALIGNMENT,
+	SIM_AC_OPTION_HOSTENDIAN, SIM_AC_OPTION_ENVIRONMENT, and
+	SIM_AC_OPTION_INLINE.
+	* config.in, configure: Regenerate.
+
+2015-03-29  Mike Frysinger  <vapier@gentoo.org>
+
 	* interp.c (heap_ptr, int_sbrk): Delete.
 	(handle_trap1): Change case 69 (sbrk) to always return -1.
 	(sim_load): Delete bss checks and heap_ptr setup.
diff --git a/sim/mcore/config.in b/sim/mcore/config.in
index 5ded703..6003e58 100644
diff --git a/sim/mcore/configure b/sim/mcore/configure
index c7e82ec..af6e579 100755
diff --git a/sim/mcore/configure.ac b/sim/mcore/configure.ac
index 0daa1af..96d0ffd 100644
--- a/sim/mcore/configure.ac
+++ b/sim/mcore/configure.ac
@@ -5,6 +5,11 @@ sinclude(../common/acinclude.m4)
 
 SIM_AC_COMMON
 
+SIM_AC_OPTION_ENDIAN
+SIM_AC_OPTION_ALIGNMENT(STRICT_ALIGNMENT,STRICT_ALIGNMENT)
+SIM_AC_OPTION_HOSTENDIAN
+SIM_AC_OPTION_ENVIRONMENT
+SIM_AC_OPTION_INLINE
 SIM_AC_OPTION_WARNINGS
 
 SIM_AC_OUTPUT
-- 
2.3.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]