2014-05-17 23:55:34 +00:00
|
|
|
require "formula"
|
2011-02-14 19:21:59 +00:00
|
|
|
|
2013-02-16 23:34:33 +00:00
|
|
|
class UniversalBrewedPython < Requirement
|
|
|
|
satisfy { archs_for_command("python").universal? }
|
|
|
|
|
|
|
|
def message; <<-EOS.undent
|
|
|
|
A build of GDB using a brewed Python was requested, but Python is not
|
|
|
|
a universal build.
|
|
|
|
|
|
|
|
GDB requires Python to be built as a universal binary or it will fail
|
|
|
|
if attempting to debug a 32-bit binary on a 64-bit host.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-04-14 02:46:01 +00:00
|
|
|
class Gdb < Formula
|
2014-05-17 23:55:34 +00:00
|
|
|
homepage "http://www.gnu.org/software/gdb/"
|
2014-10-30 03:08:03 +00:00
|
|
|
url "http://ftpmirror.gnu.org/gdb/gdb-7.8.1.tar.xz"
|
|
|
|
mirror "http://ftp.gnu.org/gnu/gdb/gdb-7.8.1.tar.xz"
|
|
|
|
sha1 "f597f6245898532eda9e85832b928e3416e0fd34"
|
2011-02-14 19:21:59 +00:00
|
|
|
|
2014-08-23 08:38:51 +00:00
|
|
|
depends_on "pkg-config" => :build
|
2014-05-17 23:55:34 +00:00
|
|
|
depends_on "readline"
|
2014-08-23 08:38:51 +00:00
|
|
|
depends_on "xz"
|
|
|
|
depends_on "guile" => :optional
|
2014-05-17 23:55:34 +00:00
|
|
|
|
|
|
|
if build.with? "brewed-python"
|
2013-02-16 23:34:33 +00:00
|
|
|
depends_on UniversalBrewedPython
|
|
|
|
end
|
|
|
|
|
2014-05-17 23:55:34 +00:00
|
|
|
option "with-brewed-python", "Use the Homebrew version of Python"
|
|
|
|
option "with-version-suffix", "Add a version suffix to program"
|
2014-08-23 08:38:51 +00:00
|
|
|
option "with-all-targets", "Build with support for all targets"
|
2011-05-01 02:20:20 +00:00
|
|
|
|
2014-10-12 23:09:47 +00:00
|
|
|
# Fix compilation on 10.10
|
|
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=17046
|
|
|
|
# https://sourceware.org/ml/gdb-patches/2014-09/msg00510.html
|
|
|
|
patch :DATA
|
|
|
|
|
2012-03-17 20:13:36 +00:00
|
|
|
def install
|
2013-02-21 23:34:33 +00:00
|
|
|
args = [
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2014-08-23 08:38:51 +00:00
|
|
|
"--with-system-readline",
|
|
|
|
"--with-lzma"
|
2013-02-21 23:34:33 +00:00
|
|
|
]
|
2013-02-16 23:34:33 +00:00
|
|
|
|
2014-08-23 08:38:51 +00:00
|
|
|
args << "--with-guile" if build.with? "guile"
|
|
|
|
args << "--enable-targets=all" if build.with? "all-targets"
|
|
|
|
|
2014-05-17 23:55:34 +00:00
|
|
|
if build.with? "brewed-python"
|
2013-02-16 23:34:33 +00:00
|
|
|
args << "--with-python=#{HOMEBREW_PREFIX}"
|
|
|
|
else
|
|
|
|
args << "--with-python=/usr"
|
|
|
|
end
|
|
|
|
|
2014-05-17 23:55:34 +00:00
|
|
|
if build.with? "version-suffix"
|
2013-09-04 18:12:41 +00:00
|
|
|
args << "--program-suffix=-#{version.to_s.slice(/^\d/)}"
|
|
|
|
end
|
|
|
|
|
2013-02-16 23:34:33 +00:00
|
|
|
system "./configure", *args
|
2011-02-14 19:21:59 +00:00
|
|
|
system "make"
|
2013-09-04 18:12:41 +00:00
|
|
|
system "make", "install"
|
2013-08-18 07:48:26 +00:00
|
|
|
|
|
|
|
# Remove conflicting items with binutils
|
|
|
|
rm_rf include
|
|
|
|
rm_rf lib
|
2014-05-17 23:55:34 +00:00
|
|
|
rm_rf share/"locale"
|
2014-11-02 00:19:31 +00:00
|
|
|
rm_rf share/"info"
|
2011-02-14 19:21:59 +00:00
|
|
|
end
|
2011-05-01 02:20:20 +00:00
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2011-10-27 01:05:10 +00:00
|
|
|
gdb requires special privileges to access Mach ports.
|
|
|
|
You will need to codesign the binary. For instructions, see:
|
2011-05-01 02:20:20 +00:00
|
|
|
|
2011-10-27 01:05:10 +00:00
|
|
|
http://sourceware.org/gdb/wiki/BuildingOnDarwin
|
2011-05-01 02:20:20 +00:00
|
|
|
EOS
|
|
|
|
end
|
2011-02-14 19:21:59 +00:00
|
|
|
end
|
2014-10-12 23:09:47 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/gdb/darwin-nat.c b/gdb/darwin-nat.c
|
|
|
|
index 5714288..38f768f 100644
|
|
|
|
--- a/gdb/darwin-nat.c
|
|
|
|
+++ b/gdb/darwin-nat.c
|
|
|
|
@@ -42,7 +42,7 @@
|
|
|
|
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
-#include <machine/setjmp.h>
|
|
|
|
+#include <setjmp.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <signal.h>
|