Replies: 2 comments 6 replies
-
can you do two things please: change that file ( if (/^glibc-/.test(line)) {
console.log(line)
if (/\.i[36]86$/.test(line)) {
result.glibc = true;
} else if (result.glibc !== true) {
result.glibc = false;
}
}
result.glibc = true; and build again. It will log the libs you have so we can add a check for those AND it will just set the resut to true so we can check if it will launch the emulator and if the check is still needed. I'm using Fedora and it will list
so it will still hit the last two modules. Update: |
Beta Was this translation helpful? Give feedback.
-
Thanks @Axemark38 for reporting this issue! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
The following code from this JS file stops my Android emulator from launching with error
32-bit glibc library is not installed
.I don't think I can install the 32-bit glibc package on my OpenMandriva system but modifying the RegExp pattern to match the glibc package's x86_64 architecture allows the emulator to launch just fine. I don't know if this is intended behavior or not but thought I'd share my issue.
Beta Was this translation helpful? Give feedback.
All reactions