Closed atlaste closed 1 year ago
Just had a new thought while trying to solve this one step at a time. According to https://stackoverflow.com/questions/74734500/cant-find-entry-point-zst28-throw-bad-array-new-lengthv-in-dll-filepath - the order of items in the path is relevant. So I moved msys to the top, and that seems to do something: the executable seems to work now. Still weird though, the whole idea of static compilation is of course that this isn't needed...
Unfortunately the path gets overwritten by the IDF initialization script...
Correct:
ldd .\managed_components\joltwallet__littlefs\mklittlefs\mklittlefs.exe [...] libstdc++-6.dll => /mingw64/bin/libstdc++-6.dll (0x7fff909f0000) libgcc_s_seh-1.dll => /mingw64/bin/libgcc_s_seh-1.dll (0x7fffd3530000) libwinpthread-1.dll => /mingw64/bin/libwinpthread-1.dll (0x7fffcc6f0000) libwinpthread-1.dll => /mingw64/bin/libwinpthread-1.dll (0x1b639230000)
Incorrect:
PS C:\Projects\CNC\Accelerometer\Accelerometer> ldd .\managed_components\joltwallet__littlefs\mklittlefs\mklittlefs.exe [...] libstdc++-6.dll => /c/Espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/libstdc++-6.dll (0x57970000) USER32.dll => /c/WINDOWS/System32/USER32.dll (0x7fffdfa30000) libgcc_s_seh-1.dll => /c/Espressif/tools/xtensa-esp32-elf/esp-2022r1-11.2.0/xtensa-esp32-elf/bin/libgcc_s_seh-1.dll (0x58820000) [...]
After further inspection, I found a bug in the Makefile:
TARGET_OS := win32
...
ifeq ($(TARGET_OS),windows)
After changing win32 to windows, ldd seemed to be happy, and so is PowerShell,
Thanks for opening an issue!
fix seems to be what @eldendiss mentioned in #102. Closing this issue in favor of #102. Will close #102 once changes are merged.
Context:
Behavior:
The behavior is different in IDF powershell, IDF command, and regular CMD.
What I've tried:
The popup appears to be related to the wrong SO being loaded. I'm unfortunately not really custom to the GCC toolchain, but nonetheless:
I'm starting to get a bit fresh out of ideas here. Perhaps more eyes are needed here.