Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Build error when using the git repo in Cargo.toml #168

Open
amcelroy opened this issue May 16, 2024 · 0 comments
Open

Build error when using the git repo in Cargo.toml #168

amcelroy opened this issue May 16, 2024 · 0 comments

Comments

@amcelroy
Copy link

amcelroy commented May 16, 2024

Hi,

I'm trying to use the latest version of the repo that uses embedded-graphics version 0.8.0. The crates.io version of lvgl (version 0.6.2) seems to be using embedded-graphics version 0.7.1 and is causing dependency collisions. The Cargo.toml for the project looks like:

[dependencies.lvgl]
# path = "./lv_binding_rust/lvgl"
# version = "0.6.2"
git = "https://github.com/lvgl/lv_binding_rust"
default-features = false
features = ["embedded_graphics", "unsafe_no_autoinit", "lvgl_alloc"]

However, the following error is generated:

error[E0599]: no method named `into_raw` found for struct `Box<lv_style_t>` in the current scope
   --> /Users/myname/.cargo/git/checkouts/lv_binding_rust-d86feb7597e107b7/45cafea/lvgl/src/lv_core/style.rs:459:58
    |
459 |             lvgl_sys::lv_style_get_prop(self.raw.clone().into_raw() as *const _, prop.bits(), ptr)
    |                                         -----------------^^^^^^^^--
    |                                         |                |
    |                                         |                this is an associated function, not a method
    |                                         help: use associated function syntax instead: `Box::<lv_style_t>::into_raw(self.raw.clone())`
    |
    = note: found the following associated functions; to be used as methods, functions must have a `self` parameter
    = note: the candidate is defined in an impl for the type `Box<T, A>`

For more information about this error, try `rustc --explain E0599`.
error: could not compile `lvgl` (lib) due to 1 previous error
make: *** [build] Error 101

Edit: My build command is:

DEP_LV_CONFIG_PATH=`pwd` RUST_BACKTRACE=full cargo build -Zfeatures=build_dep --target thumbv7em-none-eabihf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants
@amcelroy and others