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
using a cross-compiler as explained at https://github.com/Ogeon/rust-on-raspberry-pi.
Notice that i do not call unwrap on the result, so the variable display is of type std::result::Result<_, _>.
On raspbian i started X, opened a terminal and started the application. The error
thread '<main>' panicked at 'callled `Result::unwrap()` on an `Err` value: XNotSupported', src/libcore/result.rs:731
was reported.
There is a function calling unwrap inside the glium::glutin lib thats causing the panic. I think this should be reported as an error-result instead.
But what can i do to make it run on the Raspberry Pi?
The text was updated successfully, but these errors were encountered:
I cross-compiled the application
with the Cargo.toml
using a cross-compiler as explained at https://github.com/Ogeon/rust-on-raspberry-pi.
Notice that i do not call unwrap on the result, so the variable display is of type
std::result::Result<_, _>
.On raspbian i started X, opened a terminal and started the application. The error
was reported.
There is a function calling unwrap inside the glium::glutin lib thats causing the panic. I think this should be reported as an error-result instead.
But what can i do to make it run on the Raspberry Pi?
The text was updated successfully, but these errors were encountered: