We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9087bdf commit 190b3dcCopy full SHA for 190b3dc
lib/Basic/Subprocess.cpp
@@ -102,6 +102,9 @@ static int posix_spawn_file_actions_addchdir_polyfill(posix_spawn_file_actions_t
102
// - FreeBSD 13.1 (May 2022)
103
// - Android 14 (October 2023)
104
return posix_spawn_file_actions_addchdir_np((posix_spawn_file_actions_t *)file_actions, path);
105
+#elif defined(__ANDROID__)
106
+ // - Android < 14
107
+ return ENOSYS;
108
#else
109
// Standardized posix_spawn_file_actions_addchdir version (POSIX.1-2024, June 2024) available in:
110
// - Solaris 11.4 (August 2018)
0 commit comments