From 85c9daef724604a5c84b13aa8fc88255e380d0be Mon Sep 17 00:00:00 2001
From: Raymond Toy <toy.raymond@gmail.com>
Date: Mon, 1 Dec 2014 23:14:31 -0800
Subject: [PATCH] Add support for ppc. Not yet working, but OPT_EXTRA value
 appears to be needed, especially the __LINKEDIT address, like on i386.

---
 src/tools/linker.sh | 11 +++++++----
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/tools/linker.sh b/src/tools/linker.sh
index a0050b94b..a5a99ef66 100755
--- a/src/tools/linker.sh
+++ b/src/tools/linker.sh
@@ -99,14 +99,17 @@ case $uname_s in
 	    # when creating the executable on 10.8.  (See ticket:112.)
 
 	    OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -rdynamic -mmacosx-version-min=10.5"
+	    OS_LIBS=
 	    ;;
 	powerpc)
-	    # Nothing needed for ppc?
+	    # See Config.ppc_darwin Like i386, __LINKEDIT is linked
+	    # just after the dynamic space which messes things up, so
+	    # we move it to a diffferent address. The address below
+	    # appears to be free.
+	    OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -mmacosx-version-min=10.4 -static-libgcc"
+	    OS_LIBS="-lSystem -lc -lm"
 	    ;;
       esac
-
-      # See Config.x86_darwin
-      OS_LIBS=
       ;;
   SunOS)
       # A quick test indicates that gcc will accept the following
-- 
GitLab