Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
B
brew
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to JiHu GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KMSCAKKSCFKA AKFACAMADCAS
brew
Commits
cb096605
Commit
cb096605
authored
10 years ago
by
Jack Nagel
Browse files
Options
Downloads
Patches
Plain Diff
Always set sysroot for Xcode-only systems
Fixes Homebrew/homebrew#33431.
parent
6545e6da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Library/ENV/4.3/cc
+2
-2
2 additions, 2 deletions
Library/ENV/4.3/cc
Library/Homebrew/extend/ENV/super.rb
+2
-8
2 additions, 8 deletions
Library/Homebrew/extend/ENV/super.rb
with
4 additions
and
10 deletions
Library/ENV/4.3/cc
+
2
−
2
View file @
cb096605
...
...
@@ -33,7 +33,7 @@ class Cmd
@args
=
args
.
freeze
@brewfix
=
ENV
[
'HOMEBREW_PREFIX'
]
@brewtmp
=
ENV
[
'HOMEBREW_TEMP'
]
@sysroot
=
ENV
[
'HOMEBREW_S
YS
ROOT'
]
@sysroot
=
ENV
[
'HOMEBREW_S
DK
ROOT'
]
end
def
mode
...
...
@@ -93,7 +93,7 @@ class Cmd
if
tool
==
"ld"
args
<<
"-syslibroot"
<<
sysroot
else
args
<<
"--sysroot=
#{
sysroot
}
"
args
<<
"-isysroot"
<<
sysroot
<<
"--sysroot=
#{
sysroot
}
"
end
end
...
...
This diff is collapsed.
Click to expand it.
Library/Homebrew/extend/ENV/super.rb
+
2
−
8
View file @
cb096605
...
...
@@ -46,7 +46,7 @@ module Superenv
self
[
'HOMEBREW_BREW_FILE'
]
=
HOMEBREW_BREW_FILE
.
to_s
self
[
'HOMEBREW_PREFIX'
]
=
HOMEBREW_PREFIX
.
to_s
self
[
'HOMEBREW_TEMP'
]
=
HOMEBREW_TEMP
.
to_s
self
[
'HOMEBREW_SDKROOT'
]
=
"
#{
MacOS
.
sdk_path
}
"
if
MacOS
::
Xcode
.
without_clt?
self
[
'HOMEBREW_SDKROOT'
]
=
effective_sysroot
self
[
'HOMEBREW_OPTFLAGS'
]
=
determine_optflags
self
[
'HOMEBREW_ARCHFLAGS'
]
=
''
self
[
'CMAKE_PREFIX_PATH'
]
=
determine_cmake_prefix_path
...
...
@@ -59,12 +59,6 @@ module Superenv
self
[
"HOMEBREW_INCLUDE_PATHS"
]
=
determine_include_paths
self
[
"HOMEBREW_LIBRARY_PATHS"
]
=
determine_library_paths
# On 10.9 the developer tools honor the correct sysroot by default.
# On 10.7 and 10.8 we need to set it ourselves.
if
MacOS
::
Xcode
.
without_clt?
&&
(
MacOS
.
version
<=
"10.8"
||
compiler
!=
:clang
)
self
[
"HOMEBREW_SYSROOT"
]
=
effective_sysroot
end
# On 10.9, the tools in /usr/bin proxy to the active developer directory.
# This means we can use them for any combination of CLT and Xcode.
self
[
"HOMEBREW_PREFER_CLT_PROXIES"
]
=
"1"
if
MacOS
.
version
>=
"10.9"
...
...
@@ -96,7 +90,7 @@ module Superenv
end
def
effective_sysroot
if
MacOS
::
Xcode
.
without_clt?
then
MacOS
.
sdk_path
.
to_s
else
""
end
MacOS
::
Xcode
.
without_clt?
?
MacOS
.
sdk_path
.
to_s
:
nil
end
def
determine_cxx
...
...
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