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
Note:
libfltk_sys-f36605dd3c8b153c.rlib(cfl_utils.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' (libesaxx_rs-ff41f22f3b7dace1.rlib(2e40c9e35e9506f4-esaxx.o)
Simple code:
use fltk::{app, prelude::*, window::Window};
fn main() {
let _suffix = esaxx_rs::suffix("abracadabra").unwrap();
let app = app::App::default();
let mut wind = Window::new(100, 100, 400, 300, "Hello from rust");
wind.end();
wind.show();
app.run().unwrap();
}
Do we need any special setting?
The text was updated successfully, but these errors were encountered:
Note:
libfltk_sys-f36605dd3c8b153c.rlib(cfl_utils.obj) : error LNK2038: mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MT_StaticRelease' (libesaxx_rs-ff41f22f3b7dace1.rlib(2e40c9e35e9506f4-esaxx.o)
Simple code:
use fltk::{app, prelude::*, window::Window};
fn main() {
let _suffix = esaxx_rs::suffix("abracadabra").unwrap();
}
Do we need any special setting?
The text was updated successfully, but these errors were encountered: