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] fix superh detection in sim/configure


the superh detection in sim/configure ignores pretty much all useful superh 
targets and that's no fun ... attached patch should fix things up
-mike

Attachment: pgp00000.pgp
Description: PGP signature

2007-01-28  Manuel Lauss <slauss@resi.at>

	* configure.ac (sh64-*-*): Change to sh64*-*-*.
	(sh-*-*): Change to sh*-*-*.
	* configure: Regenerated.

--- sim/configure.ac
+++ sim/configure.ac
@@ -94,11 +94,11 @@ if test "${enable_sim}" != no; then
            AC_CONFIG_SUBDIRS(mn10300)
 	   igen=yes
 	   ;;
-       sh64-*-*)
+       sh64*-*-*)
            AC_CONFIG_SUBDIRS(sh64)
 	   testsuite=yes
 	   ;;
-       sh-*-*)
+       sh*-*-*)
            AC_CONFIG_SUBDIRS(sh)
 	   testsuite=yes
 	   ;;

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