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

Fix ticket:112 by specifying -mmacosx-version-min=10.5 when linking

the new executable.
parent 0ec33685
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,11 @@ case $uname_s in ...@@ -94,7 +94,11 @@ case $uname_s in
# 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.
OPT_EXTRA="-segaddr __LINKEDIT 0x99000000 -rdynamic" # 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 -mmacosx-version-min=10.5"
;; ;;
powerpc) powerpc)
# Nothing needed for ppc? # Nothing needed for ppc?
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment