Bug 9356

Summary: gdb package
Product: buildroot Reporter: kosyak <gmg.kostik>
Component: OtherAssignee: unassigned
Status: RESOLVED FIXED    
Severity: normal CC: buildroot
Priority: P5    
Version: unspecified   
Target Milestone: ---   
Hardware: All   
OS: Linux   
Host: Target:
Build:

Description kosyak 2016-10-14 12:02:22 UTC
commit https://git.buildroot.net/buildroot/commit/?id=12306a81f8edc6db84e4e3c5e58e707ba9e4c9f5 not working

host-texinfo install error.
Comment 1 Thomas Petazzoni 2016-10-14 13:02:17 UTC
What is happening? What error messages do you see? What is your host distribution?
Comment 2 kosyak 2016-10-14 15:18:13 UTC
Soory for my English.

Lubuntu x86 16.04.

make raspberrypi3_defconfig


Toolchain (Linaro ARM 2014.09)  --->

Toolchain  --->
  [*] Build cross gdb for the host

Target packages  --->
   Debugging, profiling and benchmark  --->
      [*] gdb
      -*-   gdbserver


make -j4 2>&1 > log.txt


https://dl.dropboxusercontent.com/u/15370742/log.txt

I replaced the file package/gdb/gdb.mk on the version from buildroot-2016.08.1 - 
compile with no error.
Comment 3 Peter Korsgaard 2016-10-14 21:47:54 UTC
I take it you refer to the recent issue installing gdb(server)? That is now fixed in git by:

commit 8ae8d1162d92f14a0445fc497f473fde0aee6c3c
Author: Peter Korsgaard <peter@korsgaard.com>
Date:   Fri Oct 14 19:32:43 2016 +0200

    gdb: unbreak host/target install step

    Commit 12306a81f8edc (gdb: get rid of host-texinfo dependency) tried to
    append MAKEINFO=true to the host/target make install arguments, but as the
    default values for these are only added when (host-)autotools-package is
    evaluated (and only if empty), this effectively drops the default values and
    we ended up without the 'install' target and nothing got installed.

    To fix this, specify the full install arguments.

    Signed-off-by: Peter Korsgaard <peter@korsgaard.com>