Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [Bug 6554] New: gdb needs to dependents on host texinfo
@ 2013-10-17  1:34 bugzilla at busybox.net
  2013-11-14  0:03 ` [Buildroot] [Bug 6554] " bugzilla at busybox.net
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: bugzilla at busybox.net @ 2013-10-17  1:34 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=6554

           Summary: gdb needs to dependents on host texinfo
           Product: buildroot
           Version: 2013.02
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P5
         Component: Other
        AssignedTo: unassigned at buildroot.uclibc.org
        ReportedBy: feng.haibo at gmail.com
                CC: buildroot at uclibc.org
   Estimated Hours: 0.0


When I tried to build a broadcom chipset target with 2013.02 on Fedora 19, and
met a compilation error when installing gdb to the target. The error is that
the gdbint.texinfo files can't be correctly parsed:
./gdbint.texinfo:38: misplaced {
./gdbint.texinfo:38: misplaced }
make[7]: *** [gdbint.info] Error 1
....
make[7]: *** [gdb.info] Error 1
make[6]: *** [subdir_do] Error 1
make[5]: *** [install-only] Error 2
make[4]: *** [install] Error 2
make[3]: *** [install-gdb] Error 2
make[2]: *** [install] Error 2

The reason is that host-texinfo isn't compiled yet, to fix we need to add the
dependency in gdb.mk

ifeq ($(BR2_PACKAGE_GDB_DEBUGGER),)
GDB_SUBDIR = gdb/gdbserver
HOST_GDB_SUBDIR = .
else
GDB_DEPENDENCIES = ncurses
endif

GDB_DEPENDENCIES += host-texinfo

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 6554] gdb needs to dependents on host texinfo
  2013-10-17  1:34 [Buildroot] [Bug 6554] New: gdb needs to dependents on host texinfo bugzilla at busybox.net
@ 2013-11-14  0:03 ` bugzilla at busybox.net
  2013-11-28 19:03 ` bugzilla at busybox.net
  2013-11-29  1:28 ` bugzilla at busybox.net
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla at busybox.net @ 2013-11-14  0:03 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=6554

--- Comment #1 from Thomas Petazzoni <thomas.petazzoni@free-electrons.com> 2013-11-14 00:03:18 UTC ---
Hum, right. However, I believe it would be nicer to completely disable the
generation of the documentation in gdb, because we typically don't need it in
the context of Buildroot.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 6554] gdb needs to dependents on host texinfo
  2013-10-17  1:34 [Buildroot] [Bug 6554] New: gdb needs to dependents on host texinfo bugzilla at busybox.net
  2013-11-14  0:03 ` [Buildroot] [Bug 6554] " bugzilla at busybox.net
@ 2013-11-28 19:03 ` bugzilla at busybox.net
  2013-11-29  1:28 ` bugzilla at busybox.net
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla at busybox.net @ 2013-11-28 19:03 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=6554

Gustavo Zacarias <gustavo@zacarias.com.ar> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |ASSIGNED
         AssignedTo|unassigned at buildroot.uclibc |gustavo at zacarias.com.ar
                   |.org                        |

--- Comment #2 from Gustavo Zacarias <gustavo@zacarias.com.ar> 2013-11-28 19:03:49 UTC ---
Please try the patch at http://patchwork.ozlabs.org/patch/295009/
It should fix your problem.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

* [Buildroot] [Bug 6554] gdb needs to dependents on host texinfo
  2013-10-17  1:34 [Buildroot] [Bug 6554] New: gdb needs to dependents on host texinfo bugzilla at busybox.net
  2013-11-14  0:03 ` [Buildroot] [Bug 6554] " bugzilla at busybox.net
  2013-11-28 19:03 ` bugzilla at busybox.net
@ 2013-11-29  1:28 ` bugzilla at busybox.net
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla at busybox.net @ 2013-11-29  1:28 UTC (permalink / raw)
  To: buildroot

https://bugs.busybox.net/show_bug.cgi?id=6554

Gustavo Zacarias <gustavo@zacarias.com.ar> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|ASSIGNED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #3 from Gustavo Zacarias <gustavo@zacarias.com.ar> 2013-11-29 01:28:29 UTC ---
Fixed in commit df8d0b90eb78fcafe2f30ffd8483309a5a38c0be for the upcoming
2013.11 release.
Reopen if you still got issues with this.

-- 
Configure bugmail: https://bugs.busybox.net/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.

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

end of thread, other threads:[~2013-11-29  1:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-10-17  1:34 [Buildroot] [Bug 6554] New: gdb needs to dependents on host texinfo bugzilla at busybox.net
2013-11-14  0:03 ` [Buildroot] [Bug 6554] " bugzilla at busybox.net
2013-11-28 19:03 ` bugzilla at busybox.net
2013-11-29  1:28 ` bugzilla at busybox.net

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox