From 30ea81a1f89e46e3c762a65642b40aae27cf1d53 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Fri, 5 Sep 2008 02:54:43 +0000
Subject: [PATCH] Use new compute_offset for ppc too.  Fixes the same unknown
 breakpoint at offset 0 error that happens on sparc.  Still has the same
 segfault problem that sparc has.

---
 lisp/breakpoint.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/breakpoint.c b/lisp/breakpoint.c
index 369e78401..ab1747009 100644
--- a/lisp/breakpoint.c
+++ b/lisp/breakpoint.c
@@ -1,6 +1,6 @@
 /*
 
- $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/breakpoint.c,v 1.21 2008/09/04 22:31:47 rtoy Exp $
+ $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/breakpoint.c,v 1.22 2008/09/05 02:54:43 rtoy Exp $
 
  This code was written as part of the CMU Common Lisp project at
  Carnegie Mellon University, and has been placed in the public domain.
@@ -102,7 +102,7 @@ find_code(os_context_t * scp)
 }
 #endif
 
-#if defined(sparc) && defined(__GNUC__)
+#if (defined(DARWIN) && defined(__ppc__)) || (defined(sparc) && defined(__GNUC__))
 /*
  * For some unknown reason, if you compile this code with Sun C, CMUCL
  * is unable to build itself anymore.  This is bizarre because this
-- 
GitLab