billzez

Results 5 comments of billzez

pthread_rwlock_t is now an opaque type in the latest bionic/ndk: https://android.googlesource.com/platform/bionic/+/master/libc/include/pthread.h https://android.googlesource.com/platform/bionic/+/master/libc/include/bits/pthread_types.h ``` typedef struct { #if defined(__LP64__) int32_t __private[14]; #else int32_t __private[10]; #endif } pthread_rwlock_t; ``` The internal definition...

I hit this issue, and I was able to workaround it by disabling "vfp3d16sp". I'm wondering if zig is setting an illegal combination of cpu features.

Is there an ETA on this? I was surprised these fixes did not go into 0.10.

Please don't take away stage1 until we can create multi-file modules again: https://github.com/ziglang/zig/issues/13077 I have multiple projects that are blocked by this (and async/await).

I can use `@Type` for now, until its removed from the language. ``` const E = @Type(std.builtin.Type{ .ErrorSet = &[_]std.builtin.Type.Error{.{ .name = "NotFound", }}, }); var e = @field(E, "NotFound");...