This is the mail archive of the gdb-cvs@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]

src/gdb ChangeLog dwarf2read.c


CVSROOT:	/cvs/src
Module name:	src
Changes by:	palves@sourceware.org	2013-05-23 18:31:29

Modified files:
	gdb            : ChangeLog dwarf2read.c 

Log message:
	dwarf2read.c: Don't assume uint32_t is unsigned int on all hosts.
	
	Building gdb on GNU/Linux, for --host=i586-pc-msdosdjgpp, I get:
	
	../../src/gdb/dwarf2read.c: In function 'create_dwp_hash_table':
	../../src/gdb/dwarf2read.c:8626:7: error: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'uint32_t' [-Werror=format]
	../../src/gdb/dwarf2read.c:8632:7: error: format '%u' expects argument of type 'unsigned int', but argument 2 has type 'uint32_t' [-Werror=format]
	../../src/gdb/dwarf2read.c: In function 'create_dwo_in_dwp':
	../../src/gdb/dwarf2read.c:8754:6: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'uint32_t' [-Werror=format]
	../../src/gdb/dwarf2read.c: In function 'open_and_init_dwp_file':
	../../src/gdb/dwarf2read.c:9248:6: error: format '%u' expects argument of type 'unsigned int', but argument 3 has type 'long unsigned int' [-Werror=format]
	../../src/gdb/dwarf2read.c:9248:6: error: format '%u' expects argument of type 'unsigned int', but argument 4 has type 'long unsigned int' [-Werror=format]
	
	And:
	
	$ grep uint32_t /usr/i586-pc-msdosdjgpp/sys-include/*
	/usr/i586-pc-msdosdjgpp/sys-include/stdint.h:typedef unsigned long uint32_t;
	
	As decided on the discussion at
	<http://sourceware.org/ml/gdb-patches/2013-05/msg00788.html>, use
	pulongest rather than PRIu32.
	
	Tested on F17.  Also confirmed GDB still builds OK with
	--host=i686-w64-mingw32.
	
	gdb/
	2013-05-23  Pedro Alves  <palves@redhat.com>
	
	* dwarf2read.c (create_dwp_hash_table, create_dwo_in_dwp)
	(open_and_init_dwp_file): Use %s/pulongest instead of %u for
	printing uint32_t variables.

Patches:
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.15623&r2=1.15624
http://sourceware.org/cgi-bin/cvsweb.cgi/src/gdb/dwarf2read.c.diff?cvsroot=src&r1=1.801&r2=1.802


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