Fix build breakage on GNU/Linux AArch64
authorSergio Durigan Junior <sergiodj@redhat.com>
Sun, 10 Sep 2017 16:16:54 +0000 (12:16 -0400)
committerSergio Durigan Junior <sergiodj@redhat.com>
Sun, 10 Sep 2017 16:33:28 +0000 (12:33 -0400)
commitcc397f3a236509257acfd5cd17c2f15f87a482d7
tree78d0f666cad6cade770bbb59d66016ade35650d2
parent72542b8ee6558677bed21dd880b68dc2e541c9c7
Fix build breakage on GNU/Linux AArch64

This patch fixes the build breakage that has been happening on AArch64
since September 5th.  The breakage was introduced by the following
commit:

  author        Yao Qi <yao.qi@linaro.org>
          Tue, 5 Sep 2017 04:54:52 -0400 (09:54 +0100)
  committer     Yao Qi <yao.qi@linaro.org>
          Tue, 5 Sep 2017 04:54:52 -0400 (09:54 +0100)
  commit        f7000548a2b79d7e5cb924468117ca4245e6b820

  Use VEC for target_desc.reg_defs

The build log for this commit can be seen here:

  <https://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-native-gdbserver-m64/builds/2696/steps/compile%20gdb/logs/stdio>

And the underlying problem is that the code is not calling the new
function "allocate_target_description" to allocate the "struct
target_desc" using "new" instead of XNEW, which end up not properly
initializing the fields of the structure.

Regtested on BuildBot.

gdb/gdbserver/ChangeLog:
2017-09-10  Sergio Durigan Junior  <sergiodj@redhat.com>

* linux-low.c (handle_extended_wait): Use
"allocate_target_description" instead of "XNEW".
* linux-x86-low.c (initialize_low_arch): Likewise.
gdb/gdbserver/ChangeLog
gdb/gdbserver/linux-low.c
gdb/gdbserver/linux-x86-low.c
This page took 0.026438 seconds and 4 git commands to generate.