-
-
Notifications
You must be signed in to change notification settings - Fork 12.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
llvm@19: Incorrect use of deployment target to find SDK version #197532
Comments
If you really want to use configuration files, my suggested fix would just be to only have four of them: |
I discussed this with @Bo98, and using a non-matching SDK only works if your source makes use of Apple's availability API -- a lot of software (e.g. This is also the reason why we didn't use the unversioned |
Huh, how so? I'd be very interested in examples of this! |
You do raise a point that It's tricky to get the perfect solution here because ideally what we'd do what Apple does: have a wrapper around
I don't have a recent example as Apple recently backported a bunch of things in macOS 13.6.8 so curl versions are now aligned (which is rare), but this previously compiled fine on macOS 13 with the macOS 14 SDK with no warnings but crashed at runtime. There'll be another example with macOS 15 SDK on older macOS when 8.8.0+ arrives in the SDK. #include <curl/multi.h>
int main() {
CURLM *m = curl_multi_init();
curl_multi_get_handles(m);
return 0;
} $ clang -mmacos-version-min=13 -lcurl foo.c
$ ./a.out The way it works with Apple APIs is different: #include <math.h>
int main() {
__fabsf16(0);
return 0;
}
Which lead to a second problem: occasionally you would get configure scripts that detect the availability of a function by whether it compiles but not if it runs. This somewhat makes sense for the cross-compile case, so I guess that's why some did it. But a significant number of scripts did not set We previously had to do crazy workarounds for this every macOS version: https://github.com/Homebrew/brew/blob/bc31f731eaede602b3707fe2eadb61b4f5df4472/Library/Homebrew/extend/os/mac/extend/ENV/super.rb#L115-L131. Note how we don't need to do that anymore - we changed how the SDK selection to match the host OS around the time when 10.15 was current (at which point 10.12 and earlier wasn't in our CI anymore so we just kept those lines as a precaution). |
Thanks for the detailed answer! Makes sense that this would fail with bad configure scripts, didn't consider that.
Huh, indeed! Though it's odd that it does, since it translates the target internally to have the version before passing it to LLVM (can be seen with both I'll have to reconsider our method for passing the deployment target to Clang given that piece of information. |
brew gist-logs <formula>
link ORbrew config
ANDbrew doctor
outputVerification
brew doctor
output saysYour system is ready to brew.
and am still able to reproduce my issue.brew update
and am still able to reproduce my issue.brew doctor
and that did not fix my problem.What were you trying to do (and why)?
The changes in #196094 and #197410 have an issue; they conflate the SDK version with the deployment target, but these two are not the same!
In almost all cases, you want to use the latest SDK available, since:
vtool -show a.out
), and may have subtle effects at runtime.In particular, the version in
-target
is the deployment target, and shouldn't be used to determine the SDK version, because a user might want to compile for a lower deployment target than the SDK that they have installed.See also related #197278 and #197277.
CC @carlocab @Bo98
What happened (include all command output)?
As an example, the following results in a link error if the macOS 11.0 SDK is not installed:
What did you expect to happen?
Linking succeeded.
Step-by-step reproduction instructions (by running
brew
commands)The text was updated successfully, but these errors were encountered: