Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
cmucl
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Carl Shapiro
cmucl
Commits
df425339
Commit
df425339
authored
10 years ago
by
Raymond Toy
Browse files
Options
Downloads
Patches
Plain Diff
Fix ticket:112 by specifying -mmacosx-version-min=10.5 when linking
the new executable.
parent
0ec33685
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/tools/linker.sh
+5
-1
5 additions, 1 deletion
src/tools/linker.sh
with
5 additions
and
1 deletion
src/tools/linker.sh
+
5
−
1
View file @
df425339
...
@@ -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?
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment