This is the mail archive of the gdb-patches@sources.redhat.com 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]

[maint/commit] Buildable target updates


Hello,

The attached patch first mentions --enable-sim-build-warnings and second updates the build status of a number of targets:

x86_64-linux-gnu:
This target is now buildable with -Werror (thanks to MichalL for fixing this).

m68hc11-elf:
The simulator for this target is marked as not buildable with -Werror - the -Werror is identifying real bugs!

m32r-elf:
This is marked as broken and an obsolete candidate. I'm not exactly motivated to fixing its build problems.

arm-elf:
Replaces ``-w'' with ``,''. This stops the warnings being supressed but doesn't require -Werror (ARM's RDI code isn't very -Werror friendly).

enjoy,
Andrew
2002-07-12  Andrew Cagney  <cagney@redhat.com>

	* MAINTAINERS: Mention --enable-sim-build-warnings.
	(m68hc11-elf): Disable sim build warnings.
	(m32r-elf): Mark as broken obsolete candidate.
	(x86_64-linux-gnu): Mark as buildable with -Werror.
	(arm-elf): Change -w to ``,'' which enables warnings but not
	-Werror.

Index: MAINTAINERS
===================================================================
RCS file: /cvs/src/src/gdb/MAINTAINERS,v
retrieving revision 1.186
diff -u -r1.186 MAINTAINERS
--- MAINTAINERS	10 Jul 2002 17:34:02 -0000	1.186
+++ MAINTAINERS	12 Jul 2002 15:34:13 -0000
@@ -63,7 +63,7 @@
 			Maintenance only
 			OBSOLETE candidate, not multi-arch
 
-	arm		--target=arm-elf -w
+	arm		--target=arm-elf ,
 			Fernando Nasser		fnasser@redhat.com
 			Scott Bambrough		scottb@netwinder.org
 			Richard Earnshaw	rearnsha@arm.com
@@ -107,11 +107,11 @@
 	ia64		--target=ia64-linux ,-Werror
 			Kevin Buettner		kevinb@redhat.com
 
-	m32r		--target=m32r-elf -Werror
+	m32r		(--target=m32r-elf broken)
 			Michael Snyder		msnyder@redhat.com
-			Not multi-arch
+			OBSOLETE candidate, not multi-arch
 
-	m68hc11		--target=m68hc11-elf ,-Werror
+	m68hc11		--target=m68hc11-elf ,-Werror ,
 			Stephane Carrez		stcarrez@nerim.fr
 
 	m68k		--target=m68k-elf ,-Werror
@@ -167,7 +167,7 @@
 
 	w65		Deleted.
 
-	x86-64		(--target=x86_64-linux-gnu broken)
+	x86-64		--target=x86_64-linux-gnu ,-Werror
 			Maintenance only
 
 	xstormy16	--target=xstormy16-elf ,-Werror
@@ -208,10 +208,14 @@
 p
 '
 
-can be used to generate a complete list of --target=
---enable-gdb-build-warnings= pairs of the form:
+can be used to generate a list of buildable targets.  The list
+containing values for the configure options --target=,
+--enable-gdb-build-warnings= and optionally
+--enable-sim-build-warnings vis:
 
 	arc-elf ,-Werror
+	...
+	m68hc11-elf ,-Werror ,
 	...
 	hppa1.1-hp-proelf broken
 	...

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