forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable building NativeAOT for Apple mobile platforms
These changes allow the NativeAOT runtime to compile for and run on iOS, tvOS and MacCatalyst. Contributes to dotnet#81024
- Loading branch information
1 parent
8642a21
commit 268e281
Showing
53 changed files
with
421 additions
and
151 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
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,50 @@ | ||
macro(set_cache_value) | ||
set(${ARGV0} ${ARGV1} CACHE STRING "Result from TRY_RUN" FORCE) | ||
set(${ARGV0}__TRYRUN_OUTPUT "dummy output" CACHE STRING "Output from TRY_RUN" FORCE) | ||
endmacro() | ||
|
||
set_cache_value(HAVE_SCHED_GETCPU_EXITCODE 1) | ||
set_cache_value(HAVE_CLOCK_MONOTONIC_COARSE_EXITCODE 1) | ||
set_cache_value(HAVE_CLOCK_MONOTONIC_EXITCODE 0) | ||
|
||
|
||
# TODO: these are taken from macOS, check these whether they're correct for iOS | ||
# some of them are probably not used by what we use from NativeAOT so could be reduced | ||
set_cache_value(FILE_OPS_CHECK_FERROR_OF_PREVIOUS_CALL_EXITCODE 1) | ||
set_cache_value(GETPWUID_R_SETS_ERRNO_EXITCODE 1) | ||
set_cache_value(HAS_POSIX_SEMAPHORES_EXITCODE 1) | ||
set_cache_value(HAVE_BROKEN_FIFO_KEVENT_EXITCODE 1) | ||
set_cache_value(HAVE_BROKEN_FIFO_SELECT_EXITCODE 1) | ||
set_cache_value(HAVE_CLOCK_REALTIME_EXITCODE 0) | ||
set_cache_value(HAVE_CLOCK_THREAD_CPUTIME_EXITCODE 0) | ||
set_cache_value(HAVE_CLOCK_GETTIME_NSEC_NP_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_ACOS_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_ASIN_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_ATAN2_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_EXP_EXITCODE 1) | ||
set_cache_value(HAVE_COMPATIBLE_ILOGB0_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_ILOGBNAN_EXITCODE 1) | ||
set_cache_value(HAVE_COMPATIBLE_LOG10_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_LOG_EXITCODE 0) | ||
set_cache_value(HAVE_COMPATIBLE_POW_EXITCODE 0) | ||
set_cache_value(HAVE_FUNCTIONAL_PTHREAD_ROBUST_MUTEXES_EXITCODE 1) | ||
set_cache_value(HAVE_LARGE_SNPRINTF_SUPPORT_EXITCODE 0) | ||
set_cache_value(HAVE_MMAP_DEV_ZERO_EXITCODE 1) | ||
set_cache_value(HAVE_PROCFS_CTL_EXITCODE 1) | ||
set_cache_value(HAVE_PROCFS_MAPS_EXITCODE 1) | ||
set_cache_value(HAVE_PROCFS_STATUS_EXITCODE 1) | ||
set_cache_value(HAVE_PROCFS_STAT_EXITCODE 1) | ||
set_cache_value(HAVE_SCHED_GET_PRIORITY_EXITCODE 0) | ||
set_cache_value(HAVE_VALID_NEGATIVE_INF_POW_EXITCODE 0) | ||
set_cache_value(HAVE_VALID_POSITIVE_INF_POW_EXITCODE 0) | ||
set_cache_value(HAVE_WORKING_CLOCK_GETTIME_EXITCODE 0) | ||
set_cache_value(HAVE_WORKING_GETTIMEOFDAY_EXITCODE 0) | ||
set_cache_value(MMAP_ANON_IGNORES_PROTECTION_EXITCODE 1) | ||
set_cache_value(ONE_SHARED_MAPPING_PER_FILEREGION_PER_PROCESS_EXITCODE 1) | ||
set_cache_value(PTHREAD_CREATE_MODIFIES_ERRNO_EXITCODE 1) | ||
set_cache_value(REALPATH_SUPPORTS_NONEXISTENT_FILES_EXITCODE 1) | ||
set_cache_value(SEM_INIT_MODIFIES_ERRNO_EXITCODE 1) | ||
set_cache_value(SSCANF_CANNOT_HANDLE_MISSING_EXPONENT_EXITCODE 1) | ||
set_cache_value(SSCANF_SUPPORT_ll_EXITCODE 0) | ||
set_cache_value(UNGETC_NOT_RETURN_EOF_EXITCODE 1) | ||
set_cache_value(HAVE_SHM_OPEN_THAT_WORKS_WELL_ENOUGH_WITH_MMAP_EXITCODE 1) |
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
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
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
Oops, something went wrong.