public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] Don't check relocations in excluded sections
@ 2016-04-21  0:21 sergiodj+buildbot
  2016-04-21  0:21 ` Failures on Fedora-i686, branch master *** BREAKAGE *** sergiodj+buildbot
                   ` (13 more replies)
  0 siblings, 14 replies; 26+ messages in thread
From: sergiodj+buildbot @ 2016-04-21  0:21 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 5ce03cea78d4d8bf00e29e4dfa4952d53f3b1064 ***

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

Don't check relocations in excluded sections

When checking relocations after gc-sections has run, the unused sections
have been removed.  Don't check relocations in excluded sections.

	* elflink.c (_bfd_elf_link_check_relocs): Don't check relocations
	in excluded sections


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] Remove x86 gc_sweep_hook
@ 2016-04-21  0:25 sergiodj+buildbot
  2016-04-21  0:32 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-04-21  0:25 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e66cdd681f47dc51beaeee3d813f1c9cba27dedf ***

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

Remove x86 gc_sweep_hook

Since x86 backends never see the removed sections, there is no need
for gc_sweep_hook.

	* elf32-i386.c (elf_i386_gc_sweep_hook): Removed.
	(elf_backend_gc_sweep_hook): Likewise.
	* elf64-x86-64.c (elf_x86_64_gc_sweep_hook): Likewise.
	(elf_backend_gc_sweep_hook): Likewise.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] Build GDB as a C++ program by default
@ 2016-04-20 22:27 sergiodj+buildbot
  2016-04-20 23:42 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-04-20 22:27 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT a23585089d7ba710b238d3d1ab3d34320afa48d0 ***

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

Build GDB as a C++ program by default

This makes --enable-build-with-cxx be "yes" by default.

One must now configure with --enable-build-with-cxx=no in order to
build with a C compiler.

gdb/ChangeLog:
2016-04-20  Pedro Alves  <palves@redhat.com>

	* build-with-cxx.m4 (GDB_AC_BUILD_WITH_CXX): Default to yes.
	* configure: Renegerate.

gdb/gdbserver/ChangeLog:
2016-04-20  Pedro Alves  <palves@redhat.com>

	* configure: Renegerate.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] Add arm epilogue unwinder
@ 2016-03-30 16:08 sergiodj+buildbot
  2016-03-30 17:57 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-30 16:08 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 779aa56f2c160ef508ca98fac1ffd23cad6fc63f ***

Author: Yao Qi <yao.qi@linaro.org>
Branch: master
Commit: 779aa56f2c160ef508ca98fac1ffd23cad6fc63f

Add arm epilogue unwinder

Nowadays, GDB can't unwind successfully from epilogue on arm,

 (gdb) bt
 #0  0x76ff65a2 in shr1 () from /home/yao/Source/gnu/build/gdb/testsuite/gdb.reverse/shr1.sl
 #1  0x0000869e in main () at /home/yao/Source/gnu/build/gdb/testsuite/../../../binutils-gdb/gdb/testsuite/gdb.reverse/solib-reverse.c:34
 Backtrace stopped: previous frame inner to this frame (corrupt stack?)

(gdb) disassemble shr1
Dump of assembler code for function shr1:
   ....
   0x76ff659a <+10>:	adds	r7, #12
   0x76ff659c <+12>:	mov	sp, r7
   0x76ff659e <+14>:	ldr.w	r7, [sp], #4
   0x76ff65a2 <+18>:	bx	lr
End of assembler dump.

in this case, prologue unwinder is used.  It analyzes the prologue and
get the offsets of saved registers to SP.  However, in epilogue, the
SP has been restored, prologue unwinder gets the registers from the
wrong address, and even the frame id is wrong.

In reverse debugging, this case (program stops at the last instruction
of function) happens quite frequently due to the reverse execution.
There are many test fails due to missing epilogue unwinder.

This adds epilogue unwinder, but the frame cache is still get by
prologue unwinder except that SP is fixed up separately, because SP
is restored in epilogue.

This patch fixes many fails in solib-precsave.exp, and solib-reverse.exp.

gdb:

2016-03-30  Yao Qi  <yao.qi@linaro.org>

	* arm-tdep.c: (arm_make_epilogue_frame_cache): New function.
	(arm_epilogue_frame_this_id): New function.
	(arm_epilogue_frame_prev_register): New function.
	(arm_epilogue_frame_sniffer): New function.
	(arm_epilogue_frame_unwind): New.
	(arm_gdbarch_init): Append unwinder arm_epilogue_frame_unwind.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] Binutils fails to build with -O0
@ 2016-03-22  4:01 sergiodj+buildbot
  2016-03-22  4:02 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-22  4:01 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 6f4c0a426c653867c40936a9b8f503628adbd64b ***

Author: Alan Modra <amodra@gmail.com>
Branch: master
Commit: 6f4c0a426c653867c40936a9b8f503628adbd64b

Binutils fails to build with -O0

	PR 19851
	* plugin.c (try_load_plugin): Avoid -Wstack-usage warning.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] arc/nps400: Add first nps400 instructions
@ 2016-03-21 20:10 sergiodj+buildbot
  2016-03-21 20:10 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 20:10 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e23e8ebee364b79556ec05075532da20b317c100 ***

Author: Andrew Burgess <andrew.burgess@embecosm.com>
Branch: master
Commit: e23e8ebee364b79556ec05075532da20b317c100

arc/nps400: Add first nps400 instructions

Adds the first few nps400 instructions.

gas/ChangeLog:

	* testsuite/gas/arc/nps400-0.d: New file.
	* testsuite/gas/arc/nps400-0.s: New file.
	* testsuite/gas/arc/nps400-1.d: New file.
	* testsuite/gas/arc/nps400-1.s: New file.

include/ChangeLog:

	* opcodes/arc.h (insn_class_t): Add BITOP type.

opcodes/ChangeLog:

	* arc-nps400-tbl.h: New file.
	* arc-opc.c: Add top level comment.
	(insert_nps_3bit_dst): New function.
	(extract_nps_3bit_dst): New function.
	(insert_nps_3bit_src2): New function.
	(extract_nps_3bit_src2): New function.
	(insert_nps_bitop_size): New function.
	(extract_nps_bitop_size): New function.
	(arc_flag_operands): Add nps400 entries.
	(arc_flag_classes): Add nps400 entries.
	(arc_operands): Add nps400 entries.
	(arc_opcodes): Add nps400 include.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] arc: Remove EF_ARC_CPU_GENERIC constant.
@ 2016-03-21 18:49 sergiodj+buildbot
  2016-03-21 20:03 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 18:49 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT a9522a2168c8233e8f15c42a32e7376c2a40ac12 ***

Author: Andrew Burgess <andrew.burgess@embecosm.com>
Branch: master
Commit: a9522a2168c8233e8f15c42a32e7376c2a40ac12

arc: Remove EF_ARC_CPU_GENERIC constant.

The constant EF_ARC_CPU_GENERIC is defined in the include/elf/arc.h
file, and is used in a few places in binutils, however, this constant
should never make it into the elf header flags; we always set a valid
cpu type in the assembler, which should then be copied over during
linking.

There are some non-gnu arc compilers that don't write an architecture
type into the e_flags field, instead leaving the field as 0, which is
the EF_ARC_CPU_GENERIC value.  This non-gnu compiler uses the machine
type to distinguish between the old and newer arc architectures, setting
the machine type to EM_ARC_COMPACT for old arc600, arc601, and arc700
architectures, while using EM_ARC_COMPACT2 for newer arcem and archs
architectures.

Previously when displaying the machine flags for an older EM_ARC_COMPACT
machine, if the e_flags had not been filled in, then we relied on the
default case statement to display the message "Generic ARCompact", while
in the EM_ARC_COMPACT2 case we specifically handled EF_ARC_CPU_GENERIC
to print "ARC Generic", leaving the default case to print a message
about unrecognised cpu flag.

After this commit EF_ARC_CPU_GENERIC has been removed, for both machine
types EM_ARC_COMPACT and EM_ARC_COMPACT2 we now rely on the default case
statement to handle the situation where the e_flags has not been filled
in.  The message displayed is now "Unknown ARCompact" (for older arc
architectures) and "Unknown ARC" (for the newer architectures).  The
switch from "Generic" to "Unknown" in the message string is for clarity,
calling the file "Generic" can give the impression that the file is
compiled for a common sub-set of the architectures, and would therefore
run on any type of machine (or at least any type of new or old machine
depending on if the machine type is ARC or ARCv2).  However, this was
not what "Generic" meant, it really meant "Unknown", so that's what we
now say.

As part of the merging of the readelf flag reading code, I have unified
the strings used in displaying the ELF ABI.  This means that for older
arc machines (arc600, arc601, and arc700) the string used for the
original ABI, and ABIv2 have changed, the current ABIv3 remains the
same.  For the newer architectures (arcem and archs) the abi strings
remain unchanged in all cases.

bfd/ChangeLog:

	* elf32-arc.c (arc_elf_print_private_bfd_data): Remove use of
	EF_ARC_CPU_GENERIC.
	(arc_elf_final_write_processing): Don't bother setting cpu field
	in e_flags, this will have been set elsewhere.

binutils/ChangeLog:

	* readelf.c (get_machine_flags): Move arc processing into...
	(decode_ARC_machine_flags): ... new function.  Remove use of
	EF_ARC_CPU_GENERIC, change default case from "generic arc" to
	"unknown arc".  Merged ABI printing between two machine types.

gas/ChangeLog:

	* config/tc-arc.c (arc_select_cpu): Remove use of
	EF_ARC_CPU_GENERIC.

include/ChangeLog:

	* elf/arc.h (EF_ARC_CPU_GENERIC): Delete.  Update related comment.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] arc: Add nps400 machine type, and assembler flag.
@ 2016-03-21 18:10 sergiodj+buildbot
  2016-03-21 20:07 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 18:10 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 8699fc3e88de47be12401fd366fbe1ee0c4294c7 ***

Author: Andrew Burgess <andrew.burgess@embecosm.com>
Branch: master
Commit: 8699fc3e88de47be12401fd366fbe1ee0c4294c7

arc: Add nps400 machine type, and assembler flag.

This commit introduces the nps400 machine type as a variant of arc.
There's a new flag in the assembler to select this machine type.  All
other changes are just adding handling of the new machine type into the
relevant places.

The nps400 is an arc700 variant with some vendor specific instructions
added into the instruction set.  This commit does not add any of the new
instructions, this is just laying the groundwork for future commits.
However, in preparation for these new instructions a new opcode define for
nps400 has been added to include/opcode/arc.h, this new opcode define is
used in the assembler and disassembler along with the existing define
for arc700 such that when assembling and disassembling for nps400 the
user will have access to all arc700 instructions and all the nps400
vendor extension instructions.

bfd/ChangeLog:

	* archures.c (bfd_mach_arc_nps400): Define.
	* bfd-in2.h: Regenerate.
	* cpu-arc.c (arch_info_struct): New entry for nps400, renumber
	some existing entries to make space.
	* elf32-arc.c (arc_elf_object_p): Add nps400 case.
	(arc_elf_final_write_processing): Likewise.

binutils/ChangeLog:

	* readelf.c (decode_ARC_machine_flags): Handle nps400.

gas/ChangeLog:

	* config/tc-arc.c (cpu_types): Add nps400 entry.
	(check_zol): Handle nps400.

include/ChangeLog:

	* elf/arc.h (E_ARC_MACH_NPS400): Define.
	* opcode/arc.h (ARC_OPCODE_NPS400): Define.

opcodes/ChangeLog:

	* arc-dis.c (print_insn_arc): Handle nps400.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] arc/opcodes: Use flag operand class to handle multiple flag matches
@ 2016-03-21 18:03 sergiodj+buildbot
  2016-03-21 20:09 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 18:03 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 1ae8ab4714eaab3d98fd906cfd6a5fedc469643a ***

Author: Andrew Burgess <andrew.burgess@embecosm.com>
Branch: master
Commit: 1ae8ab4714eaab3d98fd906cfd6a5fedc469643a

arc/opcodes: Use flag operand class to handle multiple flag matches

When parsing the operand instruction flags we don't currently detect the
case where multiple flags are provided from the same class set, these
will be accepted and the bit values merged together, resulting in the
wrong instruction being assembled.  For example:

    adc.n.eq r0,r0,r2

Will assemble without error, yet, upon disassembly, the instruction will
actually be:

    adc.c r0,r0,r2

In a later commit the concept of required flags will be introduced.
Required flags are just like normal instruction flags, except that they
must be present for the instruction to match.  Adding this will allow
for simpler instructions in the instruction table, and allow for more
sharing of operand extraction and insertion functions.

To solve both of the above issues (multiple flags being invalid, and
required flags), this commit reworks the flag class mechanism.
Currently the flag class is never used.  Each instruction can reference
multiple flag classes, each flag class has a class type and a set of
flags.  However, at present, the class type is never used.  The current
values identify the type of instruction that the flag will be used in,
but this is not required information.

Instead, this commit discards the old flag classes, and introduces 3 new
classes.  The first F_CLASS_NONE, is just a NULL marker value, and is
only used in the NULL marker flag class.  The other two flag classes are
F_FLAG_OPTIONAL, and F_FLAG_REQUIRED.

The class F_FLAG_OPTIONAL has the property that at most one of the flags
in the flag set for that class must be present in the instruction.  The
"at most" one means that no flags being present is fine.

The class F_FLAG_REQUIRED is not currently used, but will be soon.  With
this class, exactly one of the flags from this class must be present in
the instruction.  If the flag class contains a single flag, then of
course that flag must be present.  However, if the flag class contained
two or more, then one, and only one of them must be present.

gas/ChangeLog:

	* config/tc-arc.c (find_opcode_match): Move lnflg, and i
	declarations to start of block.  Reset code on all flags before
	attempting to match them.  Handle multiple hits on the same flag.
	Handle flag class.
	* testsuite/gas/arc/asm-errors.d: New file.
	* testsuite/gas/arc/asm-errors.err: New file.
	* testsuite/gas/arc/asm-errors.s: New file.

include/ChangeLog:

	* opcode/arc.h (flag_class_t): Remove all old flag classes, add 3
	new classes instead.

opcodes/ChangeLog:

	* arc-opc.c (arc_flag_classes): Convert all flag classes to use
	the new class enum values.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] arc: Remove duplicated constant in include/elf/arc.h
@ 2016-03-21 17:28 sergiodj+buildbot
  2016-03-21 20:02 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 17:28 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT c0334580516d147fb0257a2df47ac7b1072f6e82 ***

Author: Andrew Burgess <andrew.burgess@embecosm.com>
Branch: master
Commit: c0334580516d147fb0257a2df47ac7b1072f6e82

arc: Remove duplicated constant in include/elf/arc.h

In the include/elf/arc.h there are two constants that mask out the
machine architecture field.  One is used lots (EF_ARC_MACH_MSK), the
other is used only once (EF_ARC_MACH).  Remove EF_ARC_MACH.

bfd/ChangeLog:

	* elf32-arc.c (arc_elf_final_write_processing): Switch to using
	EF_ARC_MACH_MSK.

include/ChangeLog:

	* elf/arc.h (EF_ARC_MACH): Delete.
	(EF_ARC_MACH_MSK): Remove out of date comment.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] arc/gas: default mach is arc700, initialised in md_begin
@ 2016-03-21 17:00 sergiodj+buildbot
  2016-03-21 19:59 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 17:00 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 24740d83e4beab0cd8d93944922c62e8a8809391 ***

Author: Andrew Burgess <andrew.burgess@embecosm.com>
Branch: master
Commit: 24740d83e4beab0cd8d93944922c62e8a8809391

arc/gas: default mach is arc700, initialised in md_begin

This commit restructures the selection of the default cpu/mach so that
the choice is made from md_begin (if the user has not provided a command
line choice).  This will reduce the amount of change needed in a later
patch.

At the request of Synopsys, the default architecture changes to ARC700
from this commit, previously the default was a non-existent
super-architecture that contained all instructions from all arc
variants.  There's some clean up associated with removing the default
merged architecture, and a small test fix now that the default is
ARC700.

binutils/ChangeLog:

	* testsuite/binutils-all/objdump.exp (cpus_expected): Add ARC700
	to the architecture list.

gas/ChangeLog:

	* config/tc-arc.c (arc_target): Delay initialisation until
	arc_select_cpu.
	(arc_target_name): Likewise.
	(arc_features): Likewise.
	(arc_mach_type): Likewise.
	(cpu_types): Remove "all" entry.
	(arc_select_cpu): New function, most of the content is from...
	(md_parse_option): ... here.  Call new arc_select_cpu.
	(md_begin): Call arc_select_cpu if needed, default is now arc700.

include/ChangeLog:

	* opcode/arc.h (ARC_OPCODE_BASE): Delete.

opcodes/ChangeLog:

	* arc-opc.c (BASE): Delete.


^ permalink raw reply	[flat|nested] 26+ messages in thread
* [binutils-gdb] Remove use of alloca.
@ 2016-03-21 16:37 sergiodj+buildbot
  2016-03-21 19:57 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
  0 siblings, 1 reply; 26+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 16:37 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e1fa0163505af867009ea73fc5f705162120e795 ***

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

Remove use of alloca.

bfd	* warning.m4 (GCC_WARN_CFLAGS): Add -Wstack-usage=262144
	* configure: Regenerate.
	* elf32-m68hc1x.c (elf32_m68hc11_relocate_section): Replace use of
	alloca with call to xmalloc.
	* elf32-nds32.c: Likewise.
	* elf64-hppa.c: Likewise.
	* elfxx-mips.c: Likewise.
	* pef.c: Likewise.
	* pei-x86_64.c: Likewise.
	* som.c: Likewise.
	* xsym.c: Likewise.

binutils * dlltool.c: Replace use of alloca with call to xmalloc.
	* dllwrap.c: Likewise.
	* nlmconv.c: Likewise.
	* objdump.c: Likewise.
	* resrc.c: Likewise.
	* winduni.c: Likewise.
	* configure: Regenerate.

gas	* atof-generic.c: Replace use of alloca with call to xmalloc.
	* cgen.c: Likewise.
	* dwarf2dbg.c: Likewise.
	* macro.c: Likewise.
	* remap.c: Likewise.
	* stabs.c: Likewise.
	* symbols.c: Likewise.
	* config/obj-elf.c: Likewise.
	* config/tc-aarch64.c: Likewise.
	* config/tc-arc.c: Likewise.
	* config/tc-arm.c: Likewise.
	* config/tc-avr.c: Likewise.
	* config/tc-ia64.c: Likewise.
	* config/tc-mips.c: Likewise.
	* config/tc-msp430.c: Likewise.
	* config/tc-nds32.c: Likewise.
	* config/tc-ppc.c: Likewise.
	* config/tc-sh.c: Likewise.
	* config/tc-tic30.c: Likewise.
	* config/tc-tic54x.c: Likewise.
	* config/tc-xstormy16.c: Likewise.
	* config/te-vms.c: Likewise.
	* configure: Regenerate.

ld	* emultempl/msp430.em: Replace use of alloca with call to xmalloc.
	* plugin.c: Likewise.
	* pe-dll.c: Likewise.


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

end of thread, other threads:[~2016-04-25 15:50 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-21  0:21 [binutils-gdb] Don't check relocations in excluded sections sergiodj+buildbot
2016-04-21  0:21 ` Failures on Fedora-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-04-21  0:22 ` Failures on RHEL-s390x-m64, " sergiodj+buildbot
2016-04-21  0:23 ` Failures on Debian-i686, " sergiodj+buildbot
2016-04-21  0:27 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-04-21  0:30 ` Failures on AIX-POWER7-plain, " sergiodj+buildbot
2016-04-21  0:45 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
2016-04-21  0:45 ` Failures on Fedora-x86_64-native-gdbserver-m64, branch master sergiodj+buildbot
2016-04-21 14:15 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
2016-04-21 15:10 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-04-21 17:36 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj+buildbot
2016-04-21 19:58 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
2016-04-25 15:45 ` Failures on Debian-s390x-native-gdbserver-m64, branch master *** BREAKAGE *** sergiodj+buildbot
2016-04-25 15:48 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
2016-04-25 15:50 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
  -- strict thread matches above, loose matches on Subject: below --
2016-04-21  0:25 [binutils-gdb] Remove x86 gc_sweep_hook sergiodj+buildbot
2016-04-21  0:32 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-04-20 22:27 [binutils-gdb] Build GDB as a C++ program by default sergiodj+buildbot
2016-04-20 23:42 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-30 16:08 [binutils-gdb] Add arm epilogue unwinder sergiodj+buildbot
2016-03-30 17:57 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-22  4:01 [binutils-gdb] Binutils fails to build with -O0 sergiodj+buildbot
2016-03-22  4:02 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 20:10 [binutils-gdb] arc/nps400: Add first nps400 instructions sergiodj+buildbot
2016-03-21 20:10 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 18:49 [binutils-gdb] arc: Remove EF_ARC_CPU_GENERIC constant sergiodj+buildbot
2016-03-21 20:03 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 18:10 [binutils-gdb] arc: Add nps400 machine type, and assembler flag sergiodj+buildbot
2016-03-21 20:07 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 18:03 [binutils-gdb] arc/opcodes: Use flag operand class to handle multiple flag matches sergiodj+buildbot
2016-03-21 20:09 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 17:28 [binutils-gdb] arc: Remove duplicated constant in include/elf/arc.h sergiodj+buildbot
2016-03-21 20:02 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 17:00 [binutils-gdb] arc/gas: default mach is arc700, initialised in md_begin sergiodj+buildbot
2016-03-21 19:59 ` Failures on Debian-i686, branch master *** BREAKAGE *** sergiodj+buildbot
2016-03-21 16:37 [binutils-gdb] Remove use of alloca sergiodj+buildbot
2016-03-21 19:57 ` Failures on Debian-i686, 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).