feat(linux-arm): add ARM Linux build support and GTK init fix#1
Open
feat(linux-arm): add ARM Linux build support and GTK init fix#1
Conversation
- Document aarch64 build process in BUILDING.md - Add gtk::init() in tauri-runtime-cef before tray creation - This fixes 'GTK has not been initialized' panic on ARM Linux
- Add aarch64 build and run instructions to BUILDING.md - Add gtk::init() before tray creation in tauri-runtime-cef - Fixes 'GTK has not been initialized' panic on ARM Linux
…e externalBin - Migrate package.json scripts from yarn to pnpm - Add linux deb bundle config with empty depends in tauri.conf.json - Remove duplicate externalBin key in tauri.conf.json - Add pnpm workspace and lockfiles Amp-Thread-ID: https://ampcode.com/threads/T-019dbb86-6270-709c-ba2e-0dc4ed254adc Co-authored-by: Amp <amp@ampcode.com>
The commit 4fc849cc is not yet available in the remote. Using the latest available commit c8ece7c78 from origin/feat/cef. The GTK init fix is available via separate PR: tinyhumansai/tauri-cef#8
) (tinyhumansai#833) Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
…only IDB) (tinyhumansai#735) Co-authored-by: Jwalin Shah <jshah1331@gmail.com>
…inyhumansai#800) Co-authored-by: Jwalin Shah <jshah1331@gmail.com>
…loses tinyhumansai#627) (tinyhumansai#890) - Add Sentry debug symbol upload step to the CI pipeline for production builds. - Implement a helper script for manual symbol uploads with OS and architecture detection. - Configure automatic Sentry release creation and commit association on main branch pushes. - Refine Sentry CLI parameters to correctly handle shallow clones and debug ID indexing. - Initialize CHANGELOG.md to track project changes and infrastructure updates. - Update workflow permissions to allow Sentry to read action metadata for commit mapping. Closes tinyhumansai#627 Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
…ng (tinyhumansai#896) Co-authored-by: unn-Known1 <unn-known1@users.noreply.github.com>
tinyhumansai#873) Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
Resolved conflicts: - package.json: keep main's pinned pnpm SHA (workspaces now defined in pnpm-workspace.yaml) - app/src-tauri/tauri.conf.json: keep main's explicit deb depends list - docs/BUILDING.md: keep main's version-agnostic run/install snippets - pnpm-lock.yaml, app/pnpm-lock.yaml: take main's lockfiles
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/BUILDING.mdgtk::init()in tauri-runtime-cef before system tray creationProblem
ARM Linux builds (aarch64) fail at startup with:
Solution
Added
gtk::init().ok()invendor/tauri-cef/crates/tauri-runtime-cef/src/lib.rsafter CEF initialization.Testing
pnpm tauri build --target aarch64-unknown-linux-gnu