hikari_no_yume

Results 417 comments of hikari_no_yume

Looks like the OpenAL Soft wrapper is failing to link something, that seems familiar. Maybe poke at `src/audio/openal_soft_wrapper/build.rs`?

Oh wait that's also dynarmic failing. Uhh. I'm guessing some components are getting compiled for AArch64 instead of x64, not sure how you'd figure out which…

Thank you for trying my suggestions! I guess I can try doing the opposite thing to what you're doing (build for AArch64 from my x64 Mac) and see if I...

> when compiling it this way, you need to explicitly link to macOS frameworks Ah, yeah, I think I remember having this issue when I tried to dynamically link SDL2....

I wonder if that means the `build.rs` script is getting built for AArch64 rather than x64. 🤔

Well, the build script runs on the host, not the target, so in a cross-compilation scenario like this, maybe my assumption that the architectures would match was wrong :p

Just out of curiosity, why are you targeting x64? I think things might Just Work if you targeted AArch64.

I'm honestly not sure what's up with that, I'll have to look into it later.

Hmm, adding achievements for games that don't have built-in support for them seems like a complicated enhancement. Maybe we can eventually have a plugin system of some kind so that...

Is this about whether it _accepts_ non-boolean values or _returns_ them? Because PHP's `||` and `&&` always return a boolean, but accept non-boolean values; on the other hand, PHP's `?:`...