How would I install the axoloti patcher and runtimes on arch linux? There's an AUR package but it's out-of-date.
Installing axoloti software and runtime on arch linux
el.atomo
#2
I'm also using arch and got it working without major issues. If I recall correctly, you'll just have to:
- Clone the repository https://github.com/axoloti/axoloti
- Under
platform_linux
, runsudo build.sh
- If everything went fine, run
sh Axoloti.sh
to launch the patcher.
If you get an error on compile_firmware.sh
like:
make: arm-none-eabi-gcc: Command not found
make: *** [../chibios/os/ports/GCC/ARMCMx/rules.mk:190: build/obj/arm_bitreversal2.o] Error 127
It probably means that both lib32-ncurses
and lib32-bzip2
were not installed. For getting them in arch (64), you'll have to enable the multilib repository. See https://wiki.archlinux.org/index.php/multilib
Hope it helps!