After executing termux-elf-cleaner, I still have an issue of alignment.
Steps to repoduce:
$ wget https://www.ijg.org/files/jpegsrc.v9f.tar.gz # source code of IJG jpeg tools: https://www.ijg.org
$ # extract and cd into it
$ ./configure --disable-shared
$ make jpegtran # this is used to create static lib
$ clang -mtune=generic -flto -O3 -static jpegtran.c rdswitch.c cdjpeg.c transupp.c .libs/libjpeg.a -o jpegtran
$ ./jpegtran -help
error: "./jpegtran": executable's TLS segment is underaligned: alignment is 64 (skew 56), needs to be at least 64 for ARM64 Bionic
Aborted
$ clang --version
clang version 19.1.7
I don't really what to do (I have ndk-multilib and the static one packages).
Thank you for any answer and help.