How does the BangleJS emulator link with the Espruino repo #6640
Replies: 1 comment
-
Posted at 2024-02-23 by user156811 So i see there's the linux_build_bangleJS2, but not one for the bangleJS1. Posted at 2024-02-23 by @gfwilliams The emulator for the IDE is build with this script: https://github.com/espruino/EspruinoWebIDE/blob/master/extras/create_emulator.sh So the actual board targets are (confusingly) just EMSCRIPTEN.py and EMSCRIPTEN2.py The Linux build was an unused attempt at making a linux executable for testing Bangle.js apps, but in the end I figured it was safer just to use the JS Emscripten app for that Posted at 2024-02-28 by user156811 With the latest build Espruino, EsperuinoWebIDE and EMCC, i'm getting this error when i try to build the Emulator. error: undefined symbol: emscripten_memcpy_js (referenced by root reference (e.g. compiled C/C++ code)) NodeJS -v 20 - but i don't know if this matters because EMCC uses its own NodeJS Posted at 2024-02-28 by user156811 So i tried to add it to the EXPORTED_FUNCTIONS, but i get this error. wasm-ld: error: symbol exported via --export not found: emscripten_memcpy_js I don't really get the error. I feel like a memcpy function should be fairly universal? Posted at 2024-02-28 by @gfwilliams That's odd - I'm not sure to be honest. Currently it's feeling like just playing catch-up with all the stuff everyone else randomly changes is a full-time job. I'm building with Emscripten Posted at 2024-02-28 by user156811 I can see that. That's the beauty and problem with coding. Its always changing. haha So that change is from So I'll look through the change log and see what's changed. Logs Posted at 2024-02-28 by user156811 Its interesting from if i'm inside the esperuino repo and build it. Its fine.
But when the same command runs in the esperuinoWebIDE. It fails? Have to look into this more. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2024-02-23 by user156811
So i want to make changes to BangleJS software and i want to make sure the changes i make don't effect the emulator functionality.
So what I'm curious how does the webIDE link up with the Espruino library. I see there's a webpages for the different bangle watches. I see there is this blob that I'm guessing is the emulator.
So I know i need to build this in Espruino repo and then i guess copy it to this folder?
Beta Was this translation helpful? Give feedback.
All reactions