-
-
Notifications
You must be signed in to change notification settings - Fork 22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
glibc-for-termux support 32bit arm and bug fixes #3
Comments
glibc-for-termux will support all architectures, it's just a matter of time. So I understand what you mean by 32bit - |
Yes |
can i help you with compiling for arm since i have a armv8l (but armv7 compatible) device with termux? |
Yes can i help you with compiling for arm since i have a armv8l (but armv7 compatible) device with termux? |
bruh its my device but if you have smth like that cool |
my device samsung a10 galaxy |
Hi all. Now you can install glibc packages for armv7 architecture and experiment with packages for compiling in termux (note: in the termux section, not all packages are configured to compile in armv7). https://github.com/Maxython/glibc-for-termux/releases/tag/20221005 |
Thanks for reporting the bug. I'll fix it soon and update the package archive in the release. Is it just gcc or all glibc commands not working? |
@Randomxdp, I need you to do the following:
I need this so that I understand whether you have a |
Now, I would like to get the result of the |
Similar case: libuv/libuv#2282 (I left it for further action) |
@Randomxdp, install this glibc and try to compile something based on gcc-glibc.
|
The result of |
@Randomxdp, now try using this glibc. After you install it, you must compile one program written below based on gcc-glibc and send me the result. #include <stdio.h>
#include <time.h>
#include <fcntl.h>
int main () {
struct timespec tp;
if (clock_gettime(CLOCK_REALTIME, &tp) == -1) {
perror("clock_gettime");
}
else {
printf("clock_gettime success: %ld\n", tp.tv_nsec);
}
return 0;
} |
this strace was big so i made it as a video |
Run this
|
Bruh, you didn't copy the |
@Randomxdp, install this glibc. After that, try to compile the last file and run it (send the result). |
help2.mp4 |
@Randomxdp, try to do the same but only with this glibc. |
Great, you now have a working glibc (in theory). As a test, try compiling a program that doesn't require additional glibc libraries (for example, vitetris). |
yep, its working, thank you! |
glibc 32
The text was updated successfully, but these errors were encountered: