When running on Wayland, bun run tauri build fails with:
failed to bundle project `failed to run linuxdeploy`
Error failed to bundle project `failed to run linuxdeploy`
error: script "tauri" exited with code 1
The development build is more descriptive - bun run tauri dev:
Gdk-Message: 14:51:53.115: Error 71 (Protocol error) dispatching to Wayland display.
error: script "tauri" exited with code 1
I can fix this by setting the WEBKIT_DISABLE_DMABUF_RENDERER environment variable:
WEBKIT_DISABLE_DMABUF_RENDERER=1 bun run tauri dev
and I can get the IDE to display.
When running on Wayland,
bun run tauri buildfails with:The development build is more descriptive -
bun run tauri dev:I can fix this by setting the WEBKIT_DISABLE_DMABUF_RENDERER environment variable:
and I can get the IDE to display.