-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AppleAppBuilder] Entitlements to run tests on catalyst using the JIT (…
…#50637) * [catalyst] Add jit entitlements to AppleAppBuilder to use the JIT on MacCatalyst we need the hardened runtime and the JIT entitlement. Otherwise mmap() with a MAP_JIT argument fails with EINVAL. * [catalyst] also add disable library validation entitlement To load libSystem.Native.dylib from the Resources/ directory in the .app bundle. (And possibly to load libicu from homebrew) * [AppleAppBuilder] cleanup entitlements generation a little Use a list in the builder instead of hardcoding in the template. * [mono] update iOS sample to run on Catalyst too use `make run-catalyst` * fix typos and address feedback
- Loading branch information
1 parent
59c592c
commit b7a1648
Showing
6 changed files
with
85 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
src/tasks/AppleAppBuilder/Templates/app.entitlements.template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
%Entitlements% | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters