public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Fix more linker testsuite failures.
@ 2016-06-28 15:13 sergiodj+buildbot
  2016-06-28 15:13 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, branch master *** BREAKAGE *** sergiodj+buildbot
                   ` (27 more replies)
  0 siblings, 28 replies; 43+ messages in thread
From: sergiodj+buildbot @ 2016-06-28 15:13 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 1b857aeed3f5cfddc4b5b1f5836ccd341aeb9f5d ***

Author: Nick Clifton <nickc@redhat.com>
Branch: master
Commit: 1b857aeed3f5cfddc4b5b1f5836ccd341aeb9f5d

Fix more linker testsuite failures.

bfin	* elf32-bfin.c (bfin_adjust_dynamic_symbol): Fail if a COPY reloc
	is needed.

ld	* testsuite/ld-elf/comm-data.exp: Expect comm-data2 test to fail
	for bfin.
	* testsuite/ld-elf/elf.exp: Expect pr14170 and symbolic function
	tests to fail for bfin.
	* testsuite/ld-elf/endsym.d: Expect to fail with cr16, crx, dlx,
	nds32 and visium.
	* testsuite/ld-elf/var1.d: Expect to fail with d30v, dlx, ft32 and
	microblaze.
	* testsuite/ld-pe/pe.exp: Expect foreign symbol test to fail for
	mcore-pe.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Skip version check for unreferenced and undefined symbol
@ 2016-06-28 15:16 sergiodj+buildbot
  2016-06-28 19:38 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2016-06-28 15:16 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT f4ab0e2d1d4e14cfdddf46ac846c48ae55f4e14a ***

Author: H.J. Lu <hjl.tools@gmail.com>
Branch: master
Commit: f4ab0e2d1d4e14cfdddf46ac846c48ae55f4e14a

Skip version check for unreferenced and undefined symbol

No need to check version if symbol is unreferenced and undefined.

bfd/

	PR ld/20306
	* elflink.c (elf_link_check_versioned_symbol): Return false
	for unreferenced undefined symbol.

ld/testsuite/

	* testsuite/ld-gc/gc.exp: Run pr20306 test.
	* ld-gc/pr20306.c: New file.
	* ld-gc/pr20306.d: Likewise.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Greatly improve the speed if looking up DWARF line number information.
@ 2016-11-08 12:27 sergiodj+buildbot
  2016-11-11 22:24 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2016-11-08 12:27 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 089e3718bd8de11fc4d6bbc8d32701033d467960 ***

Author: Igor Tsimbalist <tigor.tools@gmail.com>
Branch: master
Commit: 089e3718bd8de11fc4d6bbc8d32701033d467960

Greatly improve the speed if looking up DWARF line number information.

	* dwarf2.c (comp_unit): Add new fields 'lookup_funcinfo_table' and
	'number_of_functions' to keep lookup table and number of entries in
	the table.
	(line_sequence): Add new fields 'line_info_lookup' and 'num_lines'
	to keep lookup table and number of entries in the table.
	(lookup_funcinfo): New structure for lookup table for function
	references.
	(build_line_info_table): New function to create and build the lookup
	table for line information.
	(lookup_address_in_line_info_table): Use the lookup table instead of
	traverse a linked list.
	(compare_lookup_funcinfos): New compare fuction used in sorting of
	lookup table for function references.
	(build_lookup_funcinfo_table): New function to create, build and
	sort the lookup table for functions references.
	(lookup_address_in_function_table): Use the table instead of
	traverse a linked list.
	(_bfd_dwarf2_cleanup_debug_info): Free memory from function references
	lookup table.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Add FreeBSD/mips architecture.
@ 2017-01-04 17:49 sergiodj+buildbot
  2017-01-06 16:04 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-01-04 17:49 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 387360daf92ec2e4e02ace51f44400c167bb5c79 ***

Author: John Baldwin <jhb@FreeBSD.org>
Branch: master
Commit: 387360daf92ec2e4e02ace51f44400c167bb5c79

Add FreeBSD/mips architecture.

This has been tested for the n64 and o32 ABIs.  Signal frame unwinders for
both ABIs are provided.  FreeBSD/mips requires custom linkmap offsets since
it contains an additional l_off member in 'struct link_map' that other
FreeBSD platforms do not have.  Support for collecting and supplying
general purpose and floating point register sets are provided.  Common
routines for working with native format register sets are exported for
use by the native target.

gdb/ChangeLog:

	* Makefile.in (ALL_TARGET_OBS): Add mips-fbsd-tdep.o.
	(ALLDEPFILES): Add mips-fbsd-tdep.c.
	* NEWS: Mention new FreeBSD/mips target.
	* configure.tgt: Add mips*-*-freebsd*.
	* mips-fbsd-tdep.c: New file.
	* mips-fbsd-tdep.h: New file.

gdb/doc/ChangeLog:

	* gdb.texinfo (Contributors): Add SRI International and University
	of Cambridge for FreeBSD/mips.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Add native target for FreeBSD/mips.
@ 2017-01-04 17:51 sergiodj+buildbot
  2017-01-06 16:19 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-01-04 17:51 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT b268007c68ec2d4ebd7e1fa239f0444ff59620e2 ***

Author: John Baldwin <jhb@FreeBSD.org>
Branch: master
Commit: b268007c68ec2d4ebd7e1fa239f0444ff59620e2

Add native target for FreeBSD/mips.

This supports the o32 and n64 ABIs.

gdb/ChangeLog:

	* Makefile.in (ALLDEPFILES): Add mips-fbsd-nat.c.
	* NEWS: Mention new FreeBSD/mips native configuration.
	* config/mips/fbsd.mh: New file.
	* configure.host: Add mips*-*-freebsd*.
	* mips-fbsd-nat.c: New file.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Fix PR ld/20995 for cris-linux
@ 2017-01-27  0:53 sergiodj+buildbot
  2017-01-27 10:21 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-01-27  0:53 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 1fbd05e16ebde966e44c1108dc77871f3fba329a ***

Author: Hans-Peter Nilsson <hp@bitrange.com>
Branch: master
Commit: 1fbd05e16ebde966e44c1108dc77871f3fba329a

Fix PR ld/20995 for cris-linux

	PR ld/20995
	* elf32-cris.c (elf_cris_size_dynamic_sections): Handle sdynrelro.
	(elf_cris_adjust_dynamic_symbol): Place variables copied into the
	executable from read-only sections into sdynrelro.
	(elf_cris_finish_dynamic_symbol): Select sreldynrelro for
	dynamic relocs in sdynrelro.
	(elf_backend_want_dynrelro): Define.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] bfd: Rename read_{signed, unsigned}_leb128, safe_read_leb128
@ 2017-02-17  1:29 sergiodj+buildbot
  2017-02-19 19:02 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-17  1:29 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 4265548c65907f095e887148f61af4813b106737 ***

Author: Pedro Alves <palves@redhat.com>
Branch: master
Commit: 4265548c65907f095e887148f61af4813b106737

bfd: Rename read_{signed,unsigned}_leb128, safe_read_leb128

Give these bfd-internal symbols with external linkage a _bfd_ prefix
to avoid collisions in the global symbol namespace.

bfd/ChangeLog:
2017-02-17  Pedro Alves  <palves@redhat.com>

	* dwarf2.c, elf-attrs.c, elf32-nds32.c: Adjust all callers.
	* libbfd.c (read_unsigned_leb128): Rename to ...
	(_bfd_read_unsigned_leb128): ... this.
	(read_signed_leb128): Rename to ...
	(_bfd_read_signed_leb128): ... this.
	(safe_read_leb128): Rename to ...
	(_bfd_safe_read_leb128): ... this.
	* libbfd-in.h (read_unsigned_leb128): Rename to ...
	(_bfd_read_unsigned_leb128): ... this.
	(read_signed_leb128): Rename to ...
	(_bfd_read_signed_leb128): ... this.
	(safe_read_leb128): Rename to ...
	(_bfd_safe_read_leb128): ... this.
	* libbfd.h: Renegerate.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] PR gdb/16188: Verify PTRACE_TRACEME succeeded
@ 2017-02-20 12:53 sergiodj+buildbot
  2017-02-21 14:26 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 12:53 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0db8980cc0ee05727c11f8b7c6674137a4d5de4e ***

Author: Sergio Durigan Junior <sergiodj@redhat.com>
Branch: master
Commit: 0db8980cc0ee05727c11f8b7c6674137a4d5de4e

PR gdb/16188: Verify PTRACE_TRACEME succeeded

This patch fixes PR gdb/16188, which is about the fact that
fork_inferior doesn't verify the return value of the "traceme_fun"
callback.  On most targets, this callback is actually a wrapper to a
ptrace call that does a PTRACE_TRACEME on the forked GDB process that
will eventually become the inferior.

Thanks to Pedro, this second version of the patch is simpler and more
more logical.  Basically, two helper functions are added:
trace_start_error and trace_start_error_with_name.  The former can be
used when there is a customized error message to be printed to the
user.  The latter works like perror_with_name, so you just need to
pass the function that error'd.

Both helper functions mentioned above do basically the same thing:
print the error message to stderr and call _exit, properly terminating
the forked inferior.

Most of the patch takes care of guarding the necessary system calls
against errors on the "traceme_fun" callbacks.  It is not right to
call error on these situations, so I've replaced these calls with the
proper helper function call.

Regression-tested on BuildBot.

Thanks,

gdb/ChangeLog:
2017-02-20  Sergio Durigan Junior  <sergiodj@redhat.com>
	    Pedro Alves  <palves@redhat.com>

	PR gdb/16188
	* darwin-nat.c (darwin_ptrace_me): Check if calls to system
	calls succeeded.
	* fork-child.c (trace_start_error): New function.
	(trace_start_error_with_name): Likewise.
	* gnu-nat.c (gnu_ptrace_me): Check if call to PTRACE succeeded.
	* inf-ptrace.c (inf_ptrace_me): Likewise.
	* inferior.h (trace_start_error): New prototype.
	(trace_start_error_with_name): Likewise.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Sync ZLIB with FSF GCC sources, bringing in version 1.2.11.
@ 2017-02-20 12:56 sergiodj+buildbot
  2017-02-21 14:44 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 12:56 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79 ***

Author: Nick Clifton <nickc@redhat.com>
Branch: master
Commit: 9c7e3b0e6b5234c39d1269fdf1a1413e2a734a79

Sync ZLIB with FSF GCC sources, bringing in version 1.2.11.

- Fix deflate stored bug when pulling last block from window
- Permit immediate deflateParams changes before any deflate input


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] DWARF-5 basic functionality
@ 2017-02-20 21:30 sergiodj+buildbot
  2017-02-22  6:30 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 21:30 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 43988095a5a4c53e6d5b00a6335454919c4fac55 ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: 43988095a5a4c53e6d5b00a6335454919c4fac55

DWARF-5 basic functionality

this is a kitchen-sink patch for everything that did not fit into its own
patch.

DWO is not yet implemented.

gdb/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* defs.h (read_unsigned_leb128): New declaration.
	* dwarf2loc.c (decode_debug_loclists_addresses): New function.
	(decode_debug_loc_dwo_addresses): Update DEBUG_LOC_* to DW_LLE_*.
	(dwarf2_find_location_expression): Call also
	decode_debug_loclists_addresses.  Handle DWARF-5 ULEB128 length.
	* dwarf2loc.h (dwarf2_version): New declaration.
	* dwarf2read.c (struct dwarf2_per_objfile): Add loclists, line_str,
	rnglists.
	(dwarf2_elf_names): Add .debug_loclists, .debug_line_str,
	.debug_rnglists.
	(struct dwop_section_names): Add loclists_dwo.
	(dwop_section_names): Add .debug_loclists.dwo.
	(struct comp_unit_head): Add unit_type, signature, type_offset_in_tu.
	(struct dwarf2_per_cu_data): Add dwarf_version.
	(struct dwo_sections): Add loclists.
	(struct attr_abbrev): Add implicit_const.
	(read_indirect_line_string): New declaration.
	(read_unsigned_leb128): Delete declaration.
	(rcuh_kind): New definition.
	(read_and_check_comp_unit_head): Change parameter
	is_debug_types_section to section_kind.
	(dwarf2_locate_sections): Handle loclists, line_str and rnglists.
	(read_comp_unit_head): Change parameter abfd to section, add parameter
	section_kind.  Handle DWARF-5.
	(error_check_comp_unit_head): Accept also DWARF version 5.
	(read_and_check_comp_unit_head): Change parameter
	is_debug_types_section to section_kind.
	(read_and_check_type_unit_head): Delete function.
	(read_abbrev_offset): Handle DWARF-5.
	(create_debug_type_hash_table): Add parameter section_kind.  Process
	only DW_UT_type.  Use signature and type_offset_in_tu from struct
	comp_unit_head.
	(create_debug_types_hash_table): Update create_debug_type_hash_table
	caller.
	(create_all_type_units): Call create_debug_type_hash_table.
	(read_cutu_die_from_dwo, init_cutu_and_read_dies): Change
	read_and_check_type_unit_head caller to read_and_check_comp_unit_head
	caller.
	(skip_one_die): Handle DW_FORM_implicit_const.
	(dwarf2_rnglists_process): New function.
	(dwarf2_ranges_process): Call dwarf2_rnglists_process for DWARF-5.
	(abbrev_table_read_table): Handle DW_FORM_implicit_const.
	(read_attribute_value): Handle DW_FORM_implicit_const,
	DW_FORM_line_strp.
	(read_attribute): Handle DW_FORM_implicit_const.
	(read_indirect_string_at_offset_from): New function from
	read_indirect_string_at_offset.
	(read_indirect_string_at_offset): Call
	read_indirect_string_at_offset_from.
	(read_indirect_line_string_at_offset): New function.
	(read_indirect_string): New function comment.
	(read_indirect_line_string): New function.
	(read_unsigned_leb128): Make it global.
	(dwarf2_string_attr): Handle DWARF-5.
	(add_include_dir_stub, read_formatted_entries): New functions.
	(dwarf_decode_line_header, dump_die_shallow, cu_debug_loc_section):
	Handle DWARF-5.
	(per_cu_header_read_in): Update read_comp_unit_head caller.
	(dwarf2_version): New function.
	* symfile.h (struct dwarf2_debug_sections): Add loclists, line_str and
	rnglists.
	* xcoffread.c (dwarf2_xcoff_names): Update struct dwarf2_debug_sections
	fields.

gdb/testsuite/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* gdb.dwarf2/dw2-error.exp (file $testfile): Update expected string.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] DWARF-5: call sites
@ 2017-02-20 22:54 sergiodj+buildbot
  2017-02-22  6:52 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 22:54 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 216f72a1ed20a8c9cdaea74e03be24601a1ed974 ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: 216f72a1ed20a8c9cdaea74e03be24601a1ed974

DWARF-5: call sites

this patch updates all call sites related DWARF-5 renames.

gdb/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* block.c (call_site_for_pc): Rename DW_OP_GNU_*, DW_TAG_GNU_* and
	DW_AT_GNU_*.
	* common/common-exceptions.h (enum errors): Likewise.
	* dwarf2-frame.c (class dwarf_expr_executor): Likewise.
	* dwarf2expr.c (dwarf_block_to_dwarf_reg)
	(dwarf_expr_context::execute_stack_op): Likewise.
	* dwarf2expr.h (struct dwarf_expr_context, struct dwarf_expr_piece):
	Likewise.
	* dwarf2loc.c (dwarf_evaluate_loc_desc::get_base_type)
	(dwarf_evaluate_loc_desc::push_dwarf_reg_entry_value)
	(show_entry_values_debug, call_site_to_target_addr)
	(func_addr_to_tail_call_list, func_verify_no_selftailcall)
	(dwarf_expr_reg_to_entry_parameter, dwarf_entry_parameter_to_value)
	(entry_data_value_free_closure, value_of_dwarf_reg_entry)
	(value_of_dwarf_block_entry, indirect_pieced_value)
	(symbol_needs_eval_context::push_dwarf_reg_entry_value):
	(disassemble_dwarf_expression): Likewise.
	* dwarf2read.c (process_die, inherit_abstract_dies)
	(read_call_site_scope): Likewise.
	* gdbtypes.h (struct func_type, struct call_site_parameter)
	(struct call_site): Likewise.
	* stack.c (read_frame_arg): Likewise.
	* std-operator.def (OP_VAR_ENTRY_VALUE): Likewise.

gdb/doc/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* gdb.texinfo (Print Settings, Tail Call Frames): Rename DW_OP_GNU_*,
	DW_TAG_GNU_* and DW_AT_GNU_*.

gdb/testsuite/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* gdb.arch/amd64-entry-value-param-dwarf5.S: New file.
	* gdb.arch/amd64-entry-value-param-dwarf5.c: New file.
	* gdb.arch/amd64-entry-value-param-dwarf5.exp: New file.
	* gdb.arch/amd64-entry-value.exp: Rename DW_OP_GNU_*, DW_TAG_GNU_* and
	DW_AT_GNU_*.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] DWARF-5: Macros
@ 2017-02-20 23:04 sergiodj+buildbot
  2017-02-22  7:14 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 23:04 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0af92d6069f5c43f0090b78d4cb8fda7d9861b22 ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: 0af92d6069f5c43f0090b78d4cb8fda7d9861b22

DWARF-5: Macros

DWARF-5 renamed DW_MACRO_GNU_* to DW_MACRO_*.

gdb/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* dwarf2read.c (read_file_scope): Rename DW_MACRO_GNU_*.
	(dwarf_parse_macro_header): Accept DWARF version 5.
	(dwarf_decode_macro_bytes, dwarf_decode_macros): Rename DW_MACRO_GNU_*.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] DWARF-5: DW_FORM_data16
@ 2017-02-20 23:15 sergiodj+buildbot
  2017-02-22  7:36 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 23:15 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0224619f6085908935f689b87e1ac4e460bb1e71 ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: 0224619f6085908935f689b87e1ac4e460bb1e71

DWARF-5: DW_FORM_data16

DWARF-5 has new form DW_FORM_data16.  The problem is that GDB cannot pass
16-byte constant as a constant value as that would require GDB to use GCC
extension __int128.

Formerly such data was coded as DW_FORM_block* so GDB still decodes
DW_FORM_data16 like DW_FORM_block*.

gdb/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* dwarf2read.c (skip_one_die, read_attribute_value)
	(dwarf2_const_value_attr, dump_die_shallow)
	(dwarf2_get_attr_constant_value, dwarf2_fetch_constant_bytes)
	(skip_form_bytes, attr_form_is_constant): Handle DW_FORM_data16.

gdb/testsuite/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* gdb.dwarf2/formdata16.c: New file.
	* gdb.dwarf2/formdata16.exp: New file.
	* lib/dwarf.exp (Dwarf): Add DW_FORM_data16.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] DWARF-5: NEWS
@ 2017-02-20 23:25 sergiodj+buildbot
  2017-02-22  7:58 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-20 23:25 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 0ae60b631e1648880d326c4a9986d5d522b6ae8a ***

Author: Jan Kratochvil <jan.kratochvil@redhat.com>
Branch: master
Commit: 0ae60b631e1648880d326c4a9986d5d522b6ae8a

DWARF-5: NEWS

a NEWS entry.

gdb/ChangeLog
2017-02-20  Jan Kratochvil  <jan.kratochvil@redhat.com>

	* NEWS (Changes since GDB 7.12): Add DWARF-5.


^ permalink raw reply	[flat|nested] 43+ messages in thread
* [binutils-gdb] Alpha DT_RELA
@ 2017-02-21  1:25 sergiodj+buildbot
  2017-02-22  8:20 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 43+ messages in thread
From: sergiodj+buildbot @ 2017-02-21  1:25 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 24f1a75169e554d418be009d803a02e441584ea7 ***

Author: Alan Modra <amodra@gmail.com>
Branch: master
Commit: 24f1a75169e554d418be009d803a02e441584ea7

Alpha DT_RELA

	* elf64-alpha.c (elf64_alpha_size_dynamic_sections): Only emit
	DT_RELA, DT_RELASZ, and DT_RELAENT when DT_RELASZ is non-zero.


^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2017-02-22  8:20 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-28 15:13 [binutils-gdb] Fix more linker testsuite failures sergiodj+buildbot
2016-06-28 15:13 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m32, branch master *** BREAKAGE *** sergiodj+buildbot
2016-06-28 15:14 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-28 15:14 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2016-06-28 15:14 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2016-06-28 15:15 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
2016-06-28 15:15 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-c-build-m64, " sergiodj+buildbot
2016-06-28 15:15 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2016-06-28 15:15 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-cxx-build-m64, " sergiodj+buildbot
2016-06-28 15:15 ` *** COMPILATION FAILED *** Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2016-06-28 15:16 ` *** COMPILATION FAILED *** Failures on Fedora-i686, " sergiodj+buildbot
2016-06-28 16:01 ` *** COMPILATION FAILED *** Failures on Fedora-s390x-m64, " sergiodj+buildbot
2016-06-28 16:28 ` *** COMPILATION FAILED *** Failures on Debian-x86_64-m64, " sergiodj+buildbot
2016-06-28 16:30 ` *** COMPILATION FAILED *** Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-28 17:13 ` *** COMPILATION FAILED *** Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
2016-06-28 17:14 ` *** COMPILATION FAILED *** Failures on Debian-s390x-m64, " sergiodj+buildbot
2016-06-28 17:14 ` *** COMPILATION FAILED *** Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-28 18:03 ` *** COMPILATION FAILED *** Failures on Debian-i686, " sergiodj+buildbot
2016-06-28 18:04 ` *** COMPILATION FAILED *** Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-06-28 19:28 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
2016-06-28 19:30 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
2016-06-28 19:32 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
2016-06-28 19:34 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-29  1:19 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-06-29  1:21 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64le-cc-with-index, " sergiodj+buildbot
2016-06-29  1:23 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
2016-06-29  1:58 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
2016-07-17  5:01 ` *** COMPILATION FAILED *** Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
2016-07-17  5:03 ` *** COMPILATION FAILED *** Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2016-06-28 15:16 [binutils-gdb] Skip version check for unreferenced and undefined symbol sergiodj+buildbot
2016-06-28 19:38 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2016-11-08 12:27 [binutils-gdb] Greatly improve the speed if looking up DWARF line number information sergiodj+buildbot
2016-11-11 22:24 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-01-04 17:49 [binutils-gdb] Add FreeBSD/mips architecture sergiodj+buildbot
2017-01-06 16:04 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-01-04 17:51 [binutils-gdb] Add native target for FreeBSD/mips sergiodj+buildbot
2017-01-06 16:19 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-01-27  0:53 [binutils-gdb] Fix PR ld/20995 for cris-linux sergiodj+buildbot
2017-01-27 10:21 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-17  1:29 [binutils-gdb] bfd: Rename read_{signed, unsigned}_leb128, safe_read_leb128 sergiodj+buildbot
2017-02-19 19:02 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 12:53 [binutils-gdb] PR gdb/16188: Verify PTRACE_TRACEME succeeded sergiodj+buildbot
2017-02-21 14:26 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 12:56 [binutils-gdb] Sync ZLIB with FSF GCC sources, bringing in version 1.2.11 sergiodj+buildbot
2017-02-21 14:44 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 21:30 [binutils-gdb] DWARF-5 basic functionality sergiodj+buildbot
2017-02-22  6:30 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 22:54 [binutils-gdb] DWARF-5: call sites sergiodj+buildbot
2017-02-22  6:52 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 23:04 [binutils-gdb] DWARF-5: Macros sergiodj+buildbot
2017-02-22  7:14 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 23:15 [binutils-gdb] DWARF-5: DW_FORM_data16 sergiodj+buildbot
2017-02-22  7:36 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-20 23:25 [binutils-gdb] DWARF-5: NEWS sergiodj+buildbot
2017-02-22  7:58 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2017-02-21  1:25 [binutils-gdb] Alpha DT_RELA sergiodj+buildbot
2017-02-22  8:20 ` *** COMPILATION FAILED *** Failures on Fedora-ppc64be-m64, branch master *** BREAKAGE *** sergiodj+buildbot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).