-
-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Closed
Labels
bugReproducible Homebrew/homebrew-core bugReproducible Homebrew/homebrew-core bug
Description
brew gist-logs <formula>
link OR brew config
AND brew doctor
output
% brew gist-logs llvm@19
Error: No logs.
% brew config
HOMEBREW_VERSION: 4.4.4
ORIGIN: https://github.com/Homebrew/brew
HEAD: 824efa8836dc226aa92dbbf7404c1b4a66707cca
Last commit: 7 days ago
Core tap JSON: 10 Nov 22:51 UTC
Core cask tap JSON: 10 Nov 22:51 UTC
HOMEBREW_PREFIX: /opt/homebrew
HOMEBREW_CASK_OPTS: []
HOMEBREW_MAKE_JOBS: 8
Homebrew Ruby: 3.3.5 => /opt/homebrew/Library/Homebrew/vendor/portable-ruby/3.3.5/bin/ruby
CPU: octa-core 64-bit dunno
Clang: 16.0.0 build 1600
Git: 2.39.5 => /Library/Developer/CommandLineTools/usr/bin/git
Curl: 8.7.1 => /usr/bin/curl
macOS: 14.6.1-arm64
CLT: 16.1.0.0.1.1729049160
Xcode: N/A
Rosetta 2: false
% brew doctor
Your system is ready to brew.
Note that the system is a clean virtual machine with a newly installed homebrew.
Verification
- My
brew doctor
output saysYour system is ready to brew.
and am still able to reproduce my issue. - I ran
brew update
and am still able to reproduce my issue. - I have resolved all warnings from
brew doctor
and that did not fix my problem. - I searched for recent similar issues at https://github.com/Homebrew/homebrew-core/issues?q=is%3Aissue and found no duplicates.
What were you trying to do (and why)?
#196094 introduced new logic for finding the SDK root.
There are a few problems with it, however, including:
- It conflates SDK root and deployment target (the version in the target triples is the deployment target, and doesn't have much to do with SDK versions).
- It does not support "
macosx
" target triples (such asarm64-apple-macosx
).
Discovered originally in rust-lang/cc-rs#1278.
What happened (include all command output)?
Using Clang from the llvm
package with the -target arm64-apple-macosx10.7
flag fails to link (or compile), because the logic for using a different SDK is not correct.
ld: library 'System' not found
clang: error: linker command failed with exit code 1 (use -v to see invocation)
What did you expect to happen?
Using any macOS target triple supported by Clang compiles, as long as there's at least one installed macOS SDK.
Step-by-step reproduction instructions (by running brew
commands)
brew install llvm@19
echo "int main() { return 0; }" > foo.c
/opt/homebrew/opt/llvm@19/bin/clang -target arm64-apple-macosx10.7 foo.c
Metadata
Metadata
Assignees
Labels
bugReproducible Homebrew/homebrew-core bugReproducible Homebrew/homebrew-core bug