-
Notifications
You must be signed in to change notification settings - Fork 4.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
Add support for building and using Mac Catalyst offsets #52777
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -893,6 +893,9 @@ | |
/* The JIT/AOT targets tvOS */ | ||
#cmakedefine TARGET_TVOS 1 | ||
|
||
/* The JIT/AOT targets Mac Catalyst */ | ||
#cmakedefine TARGET_MACCAT 1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. nit: I think we should call this There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That came in with #51669, I'm innocent |
||
|
||
/* The JIT/AOT targets OSX */ | ||
#cmakedefine TARGET_OSX 1 | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: if I understand this correctly this job builds the AOT offsets for all archs, not just
iOS_arm64
orMacCatalyst_x64
right? we should add a comment to explain it since this is quite confusing.