devgianlu
devgianlu
> ah, so I guess @devgianlu has NDK 26 (?) installed somewhere in the system, and that one does the stripping... but unknowingly The APKs for Google Play and FOSS...
Yes, but the stripping should be done in that CI. The CI that built them does not strip: https://github.com/devgianlu/aria2-android/blob/master/.github/workflows/build.yml
Oh... I thought 5MB was already a lot, but it looks like they are indeed stripped: ``` Aria2App/aria2lib/src/main/jniLibs/arm64-v8a/libaria2c.so: ELF 64-bit LSB shared object, ARM aarch64, version 1 (SYSV), dynamically linked,...
MacOS failure is due to Clang not defining neither `__STDC_IEC_559__` or `__GCC_IEC_559` which are used by LibTomMath to gate the compilation of `mp_set_double` [here](https://github.com/libtom/libtommath/blob/95d80fd8229d05dd6cb4ec88bc8d4f5377ff00ef/bn_mp_set_double.c#L6). Clang explains why [here](https://clang.llvm.org/c_status.html#:~:text=Yes-,IEC%2060559%20support,-Unknown). The fuzzers...
MacOS failure has been fixed by using the same technique used by glibc and musl by defining the required macros. Fuzzers CI failure was caused by LibTomMath not installing pkg-config...
> 🤔 I don't get the motivation, why the shuffling? it seems to just be moving code from one place to another? Title says "refactoring to remove asn.1", is that...
> That reasoning I can accept, please mention it in the commit description as well :) Updated the commit messages and also the PR title! :)
Username - password authentication has been deprecated by Spotify. This project has will not receive substantial support, I suggest switching to [go-librespot](https://github.com/devgianlu/go-librespot).
@dependabot rebase
Very simple script I've used to run test262: ```bash #!/usr/bin/env bash set -e if [ ! -d libjs-test262 ]; then git clone [email protected]:LadybirdBrowser/libjs-test262.git --depth 1 fi if [ ! -d...