You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am writing a sample password manager app that uses gui.cs, and I created a Dockerfile for building it for an Alpine Linux. Build goes fine, but once I execute the generated binary I get errors about libgcc_s.so and libstdc++.so
I did build it with -r linux-musl-x64 and since Terminal.Gui is the only package refence in my project, I assume this issue is somehow related to ncurses
I am very sorry if I misunderstood something and this is not gui.cs related at all.
Try to execute the binary with ./WhisperDragon_CLI
Expected behavior
No crash / errors
Additional context
List of first three errors:
/app # ./WhisperDragon_CLI
Error loading shared library libgcc_s.so.1: No such file or directory (needed by ./WhisperDragon_CLI)
Error loading shared library libstdc++.so.6: No such file or directory (needed by ./WhisperDragon_CLI)
Error relocating ./WhisperDragon_CLI: _ZNKSt8__detail20_Prime_rehash_policy11_M_next_bktEm: symbol not found
The text was updated successfully, but these errors were encountered:
You are right. RUN apk upgrade --no-cache && apk add --no-cache libgcc libstdc++ icu-libs got rid of those errors. Now there is the libcoreclr.so issue.
Describe the bug
I am writing a sample password manager app that uses gui.cs, and I created a Dockerfile for building it for an Alpine Linux. Build goes fine, but once I execute the generated binary I get errors about libgcc_s.so and libstdc++.so
I did build it with
-r linux-musl-x64
and since Terminal.Gui is the only package refence in my project, I assume this issue is somehow related to ncursesI am very sorry if I misunderstood something and this is not gui.cs related at all.
To Reproduce
docker build .
docker image ls
and get the image iddocker run -it IMAGEID
./WhisperDragon_CLI
Expected behavior
No crash / errors
Additional context
List of first three errors:
The text was updated successfully, but these errors were encountered: