SpartanJ / ecode

Lightweight multi-platform code editor designed for modern hardware with a focus on responsiveness and performance.
MIT License
940 stars 13 forks source link

Question: Does ecode support ARM architecture? #249

Closed ghost closed 7 months ago

ghost commented 7 months ago

https://github.com/brechtsanders/winlibs_recipes/issues/41

emeraldtip commented 7 months ago

Ecode does have aarch64 builds under releases and I have a build of ecode from this discussion on my phone.

Not sure if it's possible to build it for windows on arm tho

SpartanJ commented 7 months ago

It does support ARM, we are currently providing ARM builds for Linux and macOS. Windows should work but I don't have ARM hardware to install ARM Windows (and never tried to cross-compile it), the only thing that changes when building arm is the debug/release name in make: instead of: make config=release_x86_64 -C make/windows ecode use make config=release_arm64 -C make/windows ecode If you use premake4 instead of premake5 the config names are just debug or release, so you can build with host architecture usin jut config=release.