public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug gdb/17046] New: Will not build on Yosemite.
@ 2014-06-10 14:58 adaminsull at me dot com
2014-06-10 15:00 ` [Bug gdb/17046] " adaminsull at me dot com
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: adaminsull at me dot com @ 2014-06-10 14:58 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=17046
Bug ID: 17046
Summary: Will not build on Yosemite.
Product: gdb
Version: 7.7
Status: NEW
Severity: normal
Priority: P2
Component: gdb
Assignee: unassigned at sourceware dot org
Reporter: adaminsull at me dot com
I have used MacPorts to try to update this but it failed with
"darwin-nat.c:45:10: fatal error: 'machine/setjmp.h' file not found". I found
out that it is because in the code for darwin-nat.c says "<machine/setjmp.h>"
when it should be "<setjmp.h>". I just wanted to make this report so it can be
fixed for other users.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug gdb/17046] Will not build on Yosemite.
2014-06-10 14:58 [Bug gdb/17046] New: Will not build on Yosemite adaminsull at me dot com
@ 2014-06-10 15:00 ` adaminsull at me dot com
2014-08-04 21:49 ` [Bug gdb/17046] Will not build on OS X 10.10 Yosemite rickard.von.essen at gmail dot com
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: adaminsull at me dot com @ 2014-06-10 15:00 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=17046
adaminsull at me dot com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adaminsull at me dot com
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug gdb/17046] Will not build on OS X 10.10 Yosemite.
2014-06-10 14:58 [Bug gdb/17046] New: Will not build on Yosemite adaminsull at me dot com
2014-06-10 15:00 ` [Bug gdb/17046] " adaminsull at me dot com
@ 2014-08-04 21:49 ` rickard.von.essen at gmail dot com
2014-09-15 21:34 ` jrtc27 at jrtc27 dot com
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: rickard.von.essen at gmail dot com @ 2014-08-04 21:49 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=17046
Rickard von Essen <rickard.von.essen at gmail dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rickard.von.essen at gmail dot com
Summary|Will not build on Yosemite. |Will not build on OS X
| |10.10 Yosemite.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug gdb/17046] Will not build on OS X 10.10 Yosemite.
2014-06-10 14:58 [Bug gdb/17046] New: Will not build on Yosemite adaminsull at me dot com
2014-06-10 15:00 ` [Bug gdb/17046] " adaminsull at me dot com
2014-08-04 21:49 ` [Bug gdb/17046] Will not build on OS X 10.10 Yosemite rickard.von.essen at gmail dot com
@ 2014-09-15 21:34 ` jrtc27 at jrtc27 dot com
2015-01-12 17:19 ` cvs-commit at gcc dot gnu.org
2015-01-12 17:22 ` brobecker at gnat dot com
4 siblings, 0 replies; 6+ messages in thread
From: jrtc27 at jrtc27 dot com @ 2014-09-15 21:34 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=17046
James Clarke <jrtc27 at jrtc27 dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jrtc27 at jrtc27 dot com
--- Comment #1 from James Clarke <jrtc27 at jrtc27 dot com> ---
Patch submitted to the mailing list:
https://sourceware.org/ml/gdb-patches/2014-09/msg00509.html
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug gdb/17046] Will not build on OS X 10.10 Yosemite.
2014-06-10 14:58 [Bug gdb/17046] New: Will not build on Yosemite adaminsull at me dot com
` (2 preceding siblings ...)
2014-09-15 21:34 ` jrtc27 at jrtc27 dot com
@ 2015-01-12 17:19 ` cvs-commit at gcc dot gnu.org
2015-01-12 17:22 ` brobecker at gnat dot com
4 siblings, 0 replies; 6+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2015-01-12 17:19 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=17046
--- Comment #2 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Joel Brobecker <brobecke@sourceware.org>:
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=4ac15b59f2f506ff0ad59f148275cd7406b8d765
commit 4ac15b59f2f506ff0ad59f148275cd7406b8d765
Author: James Clarke <jrtc27@jrtc27.com>
Date: Mon Jan 12 21:13:54 2015 +0400
[darwin/gdb] Use <setjmp.h> instead of <machine/setjmp.h>
The `machine/setjmp.h' header is no longer present on OS X 10.10, and is
non-standard. Instead, `darwin-nat.c' should be using the standard
`setjmp.h' header.
gdb/ChangeLog:
2015-01-12 James Clarke <jrtc27@jrtc27.com> (tiny patch)
PR gdb/17046
* darwin-nat.c: Replace <machine/setjmp.h> #include by
<setjmp.h> #include.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 6+ messages in thread
* [Bug gdb/17046] Will not build on OS X 10.10 Yosemite.
2014-06-10 14:58 [Bug gdb/17046] New: Will not build on Yosemite adaminsull at me dot com
` (3 preceding siblings ...)
2015-01-12 17:19 ` cvs-commit at gcc dot gnu.org
@ 2015-01-12 17:22 ` brobecker at gnat dot com
4 siblings, 0 replies; 6+ messages in thread
From: brobecker at gnat dot com @ 2015-01-12 17:22 UTC (permalink / raw)
To: gdb-prs
https://sourceware.org/bugzilla/show_bug.cgi?id=17046
Joel Brobecker <brobecker at gnat dot com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
CC| |brobecker at gnat dot com
Resolution|--- |FIXED
--- Comment #3 from Joel Brobecker <brobecker at gnat dot com> ---
should now be fixed. Closing.
--
You are receiving this mail because:
You are on the CC list for the bug.
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2015-01-12 17:22 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-06-10 14:58 [Bug gdb/17046] New: Will not build on Yosemite adaminsull at me dot com
2014-06-10 15:00 ` [Bug gdb/17046] " adaminsull at me dot com
2014-08-04 21:49 ` [Bug gdb/17046] Will not build on OS X 10.10 Yosemite rickard.von.essen at gmail dot com
2014-09-15 21:34 ` jrtc27 at jrtc27 dot com
2015-01-12 17:19 ` cvs-commit at gcc dot gnu.org
2015-01-12 17:22 ` brobecker at gnat dot com
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).