-
Notifications
You must be signed in to change notification settings - Fork 17.9k
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
cmd/link: allow specifying the macOS SDK in internal linking mode #58722
Comments
You can use external linking and specify it as a flag to the linker. |
Thank you, this got me further and you are correct that
works if I'm compiling from macOS. However I didn't do a great job of describing my use case. I would like to be able to cross-compile a Go binary for macOS (from a Linux host) while also being able to set the target minimum macOS SDK. In this case I need to be able to use the internal linker. Would it be possible to reopen this bug as a feature request to add a flag to the internal linker so that the target minimum macOS version could be specified during cross-compilation? The context for this is that we were building a Go binary that read |
Reopening. |
CC @cherrymui @thanm |
This seems doable in principle, although I worry a bit about adding this sort of flag/knob, since each flag increases the number of scenarios/permutations that we have to test (and if we have N flags, then potentially we have to test all possible combinations). |
Sorry, I'm not sure I really understand the purpose of increasing the SDK version, or what exactly does that kernel code do. Could you add more information? Are you trying to enable new feature? Or is that some macOS feature is not compatible with older version of SDK? Thanks. |
You can do this as a postprocess on your binary. This little program will change the version from the default of 10.13 to 10.14:
|
The kernel code changes the contents of
if you compile this with
running the program on any macOS from 11.1 up to 13.3 will print
instead of the true contents. Taking the same code and compiling it with
and running it on, say macOS 13.2.1:
In our case we ended up We found an acceptable workaround for this particular example, but all of this is mostly to say that things are kind of weird and it would be nice to be able to easily set the |
Looking at https://eclecticlight.co/2020/08/13/macos-version-numbering-isnt-so-simple, it sounds as though you can just change your program to exec the equivalent of
then read and interpret the result. Seems like that would solve your problem without needing any changes to the Go linker. |
We have a workaround for the specific example provided; I'm more interested in having a general solution. It makes a bit more sense to me to be able to enforce that our binaries target a recent SDK as Apple seems to expect, rather than finding new workarounds for each thing that might break because of this. I tried to find some other instances of where this might have been an issue, but the only thing that's come up is #30488, where the hardcoded value was breaking notarization. If the recommended solution is to make a second pass over the binary with an external tool, I suppose that is fine, though not ideal from my perspective. I understand the reluctance to have an exploding list of platform-specific linker options. |
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: crc-org#4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: crc-org#4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: crc-org#4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: crc-org#4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: crc-org#4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: crc-org#4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: #4086
Looks like `syscall.Sysctl` is not reliable when it comes to get macOS version on different arch (Intel vs silicon) because of [0]. This PR uses `sw_vers` cmd result which seems to be consistent on both platform. [0] golang/go#58722 fixes: #4086
It appears that the linker hardcodes the LC_BUILD_VERSION1 to target a min SDK of 10.13.0 for amd64 and 11.0 for arm64.
Is there a way to set this during "go build"?
Footnotes
https://github.com/golang/go/blob/203e59ad41bd288e1d92b6f617c2f55e70d3c8e3/src/cmd/link/internal/ld/macho.go#L486 ↩
The text was updated successfully, but these errors were encountered: