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
After this correction it was possible to build the project and it generated just following warning:
warning: unused variable: `world_ptr`
--> flecs_ecs/src/core/query_tuple.rs:328:13
|
328 | let world_ptr = query.world_ptr();
| ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_world_ptr`
|
= note: `#[warn(unused_variables)]` on by default
Please, consider implementing a correction.
The text was updated successfully, but these errors were encountered:
As mentioned in Hyperion repo, it's not possible to build
flecs_ecs
on Darwin 24.2.0 with Xcode 16.2.The build fails with:
It seems that terget architecture is not passed correctly to bindgen.
It seems that solution might be similar to spdm-utils, just adding the following line to
flecs_ecs_sys/build.rs
:After this correction it was possible to build the project and it generated just following warning:
Please, consider implementing a correction.
The text was updated successfully, but these errors were encountered: