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 libc/include/pthread.yaml for pthread_setspecific should return int, not void*.
Otherwise the following error is observed when building libcxxabi against llvm-libc:
/llvm-project-main/build/include/c++/v1/__thread/support/pthread.h:216:10: error: cannot initialize return object of type 'int' with an rvalue of type 'void *'
216 | return pthread_setspecific(__key, __p);
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~