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
{{ message }}
This repository has been archived by the owner on Oct 10, 2023. It is now read-only.
I think the build is failing on mac OS because it can't compile the ffi-helpers crate
Compiling keystore-ffi v0.1.0(/Users/4meta5/flutter-bin/sunshine-flutter/keystore/keystore-ffi)
error[E0080]: it is undefined behavior to use this value
--> /Users/4meta5/.cargo/registry/src/github.com-1ecc6299db9ec823/ffi_helpers-0.1.0/src/nullable.rs:20:13
|
20 | constNULL:Self = 0as $type;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed:encountered uninitialized raw pointer
...
38 | impl_nullable!(*constT, <T>);
| ------------------------------ in this macro invocation
|
= note:The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous.Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error[E0080]: it is undefined behavior to use this value
--> /Users/4meta5/.cargo/registry/src/github.com-1ecc6299db9ec823/ffi_helpers-0.1.0/src/nullable.rs:20:13
|
20 | constNULL:Self = 0as $type;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered uninitialized raw pointer
...
39 | impl_nullable!(*mutT, <T>);
| ---------------------------- in this macro invocation
|
= note:The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous.Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0080`.
error: could not compile `ffi_helpers`.To learn more, run the command again with --verbose.
warning: build failed, waiting for other jobs to finish...
error: build failed
so I bumped the version from 0.1.0 to 0.2.0 and now I get this error
Compiling keystore-ffi v0.1.0(/Users/4meta5/flutter-bin/sunshine-flutter/keystore/keystore-ffi)
error[E0080]: it is undefined behavior to use this value
--> /Users/4meta5/.cargo/registry/src/github.com-1ecc6299db9ec823/ffi_helpers-0.2.0/src/nullable.rs:29:5
|
29 | constNULL:Self = std::ptr::null();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ typevalidation failed:encountered uninitialized raw pointer
|
= note:The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous.Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.error[E0080]: it is undefined behavior to use this value
--> /Users/4meta5/.cargo/registry/src/github.com-1ecc6299db9ec823/ffi_helpers-0.2.0/src/nullable.rs:36:5
|
36 | constNULL:Self = std::ptr::null_mut();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ type validation failed: encountered uninitialized raw pointer
|
= note:The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous.Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0080`.error: could not compile `ffi_helpers`.To learn more, run the command again with --verbose.warning: build failed, waiting for other jobs to finish...
error: build failed
note: The rules on what exactly is undefined behavior aren't clear, so this check might be overzealous. Please open an issue on the rustc repository if you believe it should not be considered undefined behavior.
LOL, idk about that
The text was updated successfully, but these errors were encountered:
I think the build is failing on mac OS because it can't compile the
ffi-helpers
crateso I bumped the version from
0.1.0
to0.2.0
and now I get this errorLOL, idk about that
The text was updated successfully, but these errors were encountered: