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
fix(compat.opencv): force Apple SDK libc++ headers on macOS (-nostdinc++)
Previous --no-default-config didn't switch headers: clang finds its bundled
LLVM-20 libc++ (<llvm>/include/c++/v1) toolchain-relative, where __hash_memory
is unconditional, so deployment-target guards can't help. Add -nostdinc++ and
-isystem $SDKROOT/usr/include/c++/v1 to build OpenCV against Apple's
availability-guarded libc++ headers; with the 14.0 target pin the guard inlines
the hash -> no external std::__1::__hash_memory the system dylib lacks.
0 commit comments