diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2022-04-30 14:28:11 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2022-04-30 14:28:11 +0200 |
| commit | 008f5913e915cab6d1ad82d62deb7ccc6d03d08d (patch) | |
| tree | a010935c732bc6c2cd10eba891180e65dc5793e6 /src/main.c | |
| parent | 349736b0a54a7488f1a4cc7e5a7372e46c9d9da3 (diff) | |
| download | box64-008f5913e915cab6d1ad82d62deb7ccc6d03d08d.tar.gz box64-008f5913e915cab6d1ad82d62deb7ccc6d03d08d.zip | |
Added fake libunwind wrapping
Diffstat (limited to 'src/main.c')
| -rwxr-xr-x | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main.c b/src/main.c index 1a123f21..37a8b6a9 100755 --- a/src/main.c +++ b/src/main.c @@ -756,6 +756,7 @@ void LoadEnvVars(box64context_t *context) AddPath("libssl.so.1.0.0", &context->box64_emulated_libs, 0); AddPath("libcrypto.so.1", &context->box64_emulated_libs, 0); AddPath("libcrypto.so.1.0.0", &context->box64_emulated_libs, 0); + AddPath("libunwind.so.8", &context->box64_emulated_libs, 0); if(getenv("BOX64_PREFER_WRAPPED")) { if (strcmp(getenv("BOX64_PREFER_WRAPPED"), "1")==0) { |