ARM version of the Flutter SDK to windows and Linuх

Pls support !!!, I have a chromebook with arm processor(Mediatek Kompanio Ultra) and I can’t to compile in profile/release Android app, in debug work fine, Someone has managed to compile it?
Thanks.

This is the error => Flutter build fails on linux-arm64 due to missing gen_snapshot for Android · Issue #177936 · flutter/flutter · GitHub

Since the Steam Frame announcement, I have found out about GitHub - FEX-Emu/FEX: A fast usermode x86 and x86-64 emulator for Arm64 Linux

I wonder if this is capable of running android studio and all the necessary things for compilation. It’s kinda geared towards games, but I think it’s worth a try until they make the SDK work on arm.

It seems to be integrated into Fedora New in Fedora: Running x86 programs on ARM systems - Fedora Magazine

You could also try this, seems a bit more straightforward: GitHub - ptitSeb/box64: Box64 - Linux Userspace x86_64 Emulator with a twist, targeted at ARM64, RV64 and LoongArch Linux devices

Theoretically you can also create an x86_64 vm on an arm cpu, it’s not going to be fast, but should work with qemu-system-x86_64

This is what deepseek gave me for testing:

# Download a small x86 test kernel
wget https://github.com/torvalds/linux/raw/v6.7/arch/x86/boot/bzImage

# Try to boot it (will likely fail quickly, but proves it works)
qemu-system-x86_64 -kernel bzImage -nographic -append "console=ttyS0"

I don’t have an arm machine, so no idea what works, but seems like there are options, even full virtualization.

Edit: I just realized it’s a chromebook, so I don’t know how strong is that chip, looks like it was released this year.