iOS simulator build should use PTHREAD_JIT_PERMISSIONS_API
Created attachment 439535 [details] Patch
<rdar://problem/77494871>
Comment on attachment 439535 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=439535&action=review > Source/WTF/wtf/PlatformUse.h:331 > + || (PLATFORM(IOS) && PLATFORM(IOS_SIMULATOR) && __IPHONE_OS_VERSION_MIN_REQUIRED >= 140000) PLATFORM(IOS) is not necessary. Removed.
Created attachment 439536 [details] Patch
*** Bug 228990 has been marked as a duplicate of this bug. ***
Do you perhaps want IOS_FAMILY_SIMULATOR? or is there something special about iOS *specifically*?
(In reply to Tim Horton from comment #6) > Do you perhaps want IOS_FAMILY_SIMULATOR? or is there something special > about iOS *specifically*? IOS_FAMILY_SIMULATOR is better, changed.
Created attachment 439559 [details] Patch for landing
Committed r283211 (242253@main): <https://commits.webkit.org/242253@main>
FWIW the final patch is a bit overkill, because we don't care about (or even successfully build on!) iOS < 14 or watchOS < 7 anymore. (I should have caught this when I said the last thing). Still, your patch is fine.
(In reply to Tim Horton from comment #10) > FWIW the final patch is a bit overkill, because we don't care about (or even > successfully build on!) iOS < 14 or watchOS < 7 anymore. (I should have > caught this when I said the last thing). Still, your patch is fine. Ah! I see. Thanks!!