Changes between Initial Version and Version 1 of Ticket #70694, comment 5
- Timestamp:
- Nov 2, 2024, 12:06:22 AM (7 days ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #70694, comment 5
initial v1 1 `pthread_jit_write_protect_np` is only available in macOS 11 and later. 1 `pthread_jit_write_protect_np` is only available in macOS 11 and later. I could not find a web page stating that, but in the file /Library/Developer/CommandLineTools/SDKs/MacOSX12.1.sdk/usr/include/pthread/pthread.h on my system the function is declared as: 2 3 {{{#!c 4 __API_AVAILABLE(macos(11.0)) 5 __API_UNAVAILABLE(ios, tvos, watchos, driverkit) 6 void pthread_jit_write_protect_np(int enabled); 7 }}} 2 8 3 9 The qemu developers deliberately removed the compatibility code that used to allow it to compile on macOS 10.x: