Skip to content
Snippets Groups Projects
Commit 51b6b2de authored by Raymond Toy's avatar Raymond Toy
Browse files

Cleanup.

Remove old comment, and remove the min OSX version on ppc too.
parent 6e2e81b7
No related branches found
No related tags found
No related merge requests found
...@@ -92,12 +92,8 @@ case $uname_s in ...@@ -92,12 +92,8 @@ case $uname_s in
# Extra stuff. For some reason one __LINKEDIT segment is # Extra stuff. For some reason one __LINKEDIT segment is
# mapped just past the dynamic space. This messes things # mapped just past the dynamic space. This messes things
# up, so we move it to another address. This seems to be # up, so we move it to another address. This seems to be
# free, at least on 10.5. # free, at least on 10.5. -no_pie is to get rid of the
# linker warning about PIE.
# Also specify the min version. (See Config.x86_darwin for
# the desired version.) This gets rid of a PIE warning
# when creating the executable on 10.8. (See ticket:112.)
OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -rdynamic -Wl,-no_pie" OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -rdynamic -Wl,-no_pie"
OS_LIBS= OS_LIBS=
;; ;;
...@@ -106,7 +102,7 @@ case $uname_s in ...@@ -106,7 +102,7 @@ case $uname_s in
# just after the dynamic space which messes things up, so # just after the dynamic space which messes things up, so
# we move it to a diffferent address. The address below # we move it to a diffferent address. The address below
# appears to be free. # appears to be free.
OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -mmacosx-version-min=10.4 -static-libgcc" OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -static-libgcc"
OS_LIBS="-lSystem -lc -lm" OS_LIBS="-lSystem -lc -lm"
;; ;;
esac esac
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment