You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Build product step for the iossimulator arm64 Release Mono leg fails to compile src/native/minipal/conditionvariable.c because pthread_cond_timedwait_relative_np is called without a visible declaration under the iOS Simulator SDK. -Wimplicit-function-declaration is an error, so the build breaks and every downstream test leg is skipped.
Failure signature
src/native/minipal/conditionvariable.c:115:17: error: call to undeclared function 'pthread_cond_timedwait_relative_np'; ISO C99 and later do not support implicit function declarations [-Wimplicit-function-declaration]
Build information
Pipeline: runtime-extra-platforms (definition 154), branch main
Confirmed still failing in follow-up build 1564198
Line 115 of conditionvariable.c calls pthread_cond_timedwait_relative_np guarded by #if HAVE_CLOCK_GETTIME_NSEC_NP; on the current iOS Simulator SDK that symbol is not declared, so the guard admits a call to an undeclared function.
{
"ErrorMessage": "conditionvariable.c:115:17: error: call to undeclared function 'pthread_cond_timedwait_relative_np'",
"ErrorPattern": "",
"BuildRetry": false,
"ExcludeConsoleLog": false
}
Agentic workflow metadata
Verified match count: 1 hits in failure.log
Source: CI Outer-Loop Failure Scanner (detection-only)
Definition 154 is part of the required runtime-extra-platforms gate → blocking-clean-ci
Note
This issue was generated by the CI Outer-Loop Failure Scanner (AI/Copilot-generated).
Build break: iossimulator Mono build fails compiling
conditionvariable.cThe
Build productstep for theiossimulator arm64 ReleaseMono leg fails to compilesrc/native/minipal/conditionvariable.cbecausepthread_cond_timedwait_relative_npis called without a visible declaration under the iOS Simulator SDK.-Wimplicit-function-declarationis an error, so the build breaks and every downstream test leg isskipped.Failure signature
Build information
runtime-extra-platforms(definition 154), branchmainiossimulator arm64 ReleaseMono, Xcode 26.3.0 / iPhoneSimulator SDKLine 115 of
conditionvariable.ccallspthread_cond_timedwait_relative_npguarded by#if HAVE_CLOCK_GETTIME_NSEC_NP; on the current iOS Simulator SDK that symbol is not declared, so the guard admits a call to an undeclared function.{ "ErrorMessage": "conditionvariable.c:115:17: error: call to undeclared function 'pthread_cond_timedwait_relative_np'", "ErrorPattern": "", "BuildRetry": false, "ExcludeConsoleLog": false }Agentic workflow metadata
runtime-extra-platformsgate →blocking-clean-ciNote
This issue was generated by the CI Outer-Loop Failure Scanner (AI/Copilot-generated).
Report
Summary