hikari_no_yume

Results 417 comments of hikari_no_yume

If you would like access to the developer Discord rooms, send me an email to my git email address.

Hi, thanks for testing this! Do you know which libraries the problem happens with? There's several different native builds going on in this project: some using the `cc` crate, some...

Re: SDL2, maybe you can edit `Cargo.toml` so we don't use the static linking feature of the crate `sdl2`. That might work as a quick fix. You'll need to get...

It's probably just a missing `#include ` in one of dynarmic's files. Does the latest master version of dynarmic (cd into `vendor/dynarmic`) work? If not, maybe file a bug on...

Ah, the `fmtd` thing will probably be related to which paths (specified by `src/cpu/dynarmic_wrapper/build.rs`) are searched for libraries. Uhh, can you have a look in `/Users/Jofkos/Developer/touchHLE/target/x86_64-apple-darwin/debug/build/touchHLE_dynarmic_wrapper-e27898037933d9b7/out/` and see what the...

Another possibility is that it's looking for `libfmtd.a` but the library is actually `libfmt.a`. The name is supposed to vary depending on whether it's a debug or release build, but...

Okay, then I think you can hack this bit of `src/cpu/dynarmic_wrapper/build.rs`: ``` link_lib(if cfg!(debug_assertions) { "fmtd" } else { "fmt" }); ```