rust3ds / ctru-rs

Rust wrapper for libctru
https://rust3ds.github.io/ctru-rs/
Other
117 stars 17 forks source link

fix dependency build issue #89

Closed adryzz closed 1 year ago

adryzz commented 1 year ago

Fixes #88

Tested by making forks of ctru-rs, pthread-3ds and rust-linker-fix-3ds.

With this change, making a new project and adding just this to the Config.toml should make the project build (provided the environment is set up properly, of course)

[dependencies]
ctru-rs = { git = "https://github.com/rust3ds/ctru-rs.git" }
Meziu commented 1 year ago

My steps for a new app are:

Works fine to me. My guess is that you probably have an old version cached, since what you described used to be a problem. Try doing cargo clean and cargo update to refresh the git repos.

adryzz commented 1 year ago

yup seems i had an old version cached, everything works now.

sorry for the hassle