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 1/4] sim: arm: 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.
---
 sim/arm/ChangeLog    |   7 +
 sim/arm/config.in    |  15 ++
 sim/arm/configure    | 528 ++++++++++++++++++++++++++++++++++++++++++++++++++-
 sim/arm/configure.ac |   7 +
 4 files changed, 555 insertions(+), 2 deletions(-)

diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog
index 9441a61..6ceed8b 100644
--- a/sim/arm/ChangeLog
+++ b/sim/arm/ChangeLog
@@ -1,5 +1,12 @@
 2015-03-30  Mike Frysinger  <vapier@gentoo.org>
 
+	* configure.ac: Call SIM_AC_OPTION_ENDIAN, SIM_AC_OPTION_ALIGNMENT,
+	SIM_AC_OPTION_HOSTENDIAN, SIM_AC_OPTION_ENVIRONMENT,
+	SIM_AC_OPTION_INLINE, and SIM_AC_OPTION_WARNINGS.
+	* config.in, configure: Regenerate.
+
+2015-03-30  Mike Frysinger  <vapier@gentoo.org>
+
 	* Makefile.in (COPRO): Delete.
 	(SIM_OBJS): Expand COPRO.
 	* configure.ac: Deletd stdint.h check.
diff --git a/sim/arm/config.in b/sim/arm/config.in
index 5ded703..6003e58 100644
diff --git a/sim/arm/configure b/sim/arm/configure
index fa26277..af6e579 100755
diff --git a/sim/arm/configure.ac b/sim/arm/configure.ac
index 799a5df..96d0ffd 100644
--- a/sim/arm/configure.ac
+++ b/sim/arm/configure.ac
@@ -5,4 +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]