Eric Engestrom
Eric Engestrom
I just realized that's relying on `eglBindClientWaylandDisplayWL` from the extension `EGL_WL_bind_client_wayland_display` which doesn't exist yet (not published anywhere as far as ddg or google can tell), so I guess someone...
> Moreover, the ld program doesn't accept a -Werror option, and for that matter it doesn't have an --error option either. Ah, I tried `c_linker_args=-Werror` on my machine without thinking...
Just as an update, I was actually right the first time, both exist, but `-Werror` is what `-werror=true` should enable. https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20375#note_1745417
Makes sense for LTO needing all the compiler args, but in the non-LTO case do you still think `meson setup -werror=true` should *not* treat linker warnings as error? I don't...
I'm sorry, I guess I misread your comment, I thought what you were saying was only for the LTO case. I'm glad I was wrong 😊
log with `WAYLAND_DEBUG=1` ```text Running `target/debug/examples/multiple_windows` [2m2025-11-26T14:29:22.163283Z[0m [32m INFO[0m [2mbevy_diagnostic::system_information_diagnostics_plugin::internal[0m[2m:[0m SystemInfo { os: "Linux (Fedora Linux Asahi Remix 42)", kernel: "6.16.8-400.asahi.fc42.aarch64+16k", cpu: "Blizzard-M2", core_count: "8", memory: "23.0 GiB" } [...
@tychedelia I saw that you mentioned elsewhere that you work with multi-window apps, so perhaps you have already encountered this and I'm just "holding it wrong", or perhaps you have...
@Freyja-moth thanks for taking a look :) as for the code, it's literally the example in this repo, have a look at https://github.com/bevyengine/bevy/blob/main/examples/window/multiple_windows.rs, there's nothing else (other than the `primary_window:...
I would be interested in whether you can reproduce this btw; could you test it please? (and what OS/window system you are using) I have only tested `wayland`, I just...
I just left it running almost an hour and nothing happened (with `WAYLAND_DEBUG=1` to see if there is even an attempt at creating a window). > Otherwise my best guess...