Here, you are building a file designed to run on your PC, not a microcontroller. It'll be a 64 bit x86 build:
make clean && make
Here you're building a binary file to run on the Espruino Wifi's ARM, but because you didn't clear the build, some files will have been built for the wrong platform:
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Here, you are building a file designed to run on your PC, not a microcontroller. It'll be a 64 bit x86 build:
Here you're building a binary file to run on the Espruino Wifi's ARM, but because you didn't clear the build, some files will have been built for the wrong platform:
You also need to build with
RELEASE=1
. It seems there are pretty clear instructions at https://github.com/espruino/Espruino/blob/master/README_Building.md#for-stm32-boards-incl-espruino-boardSo if you run the command listed there:
you may have more success