Results 469 comments of Malcolm Smith

> /me grumbles about the state of Android's toolchain documentation. Yes, a lot of these command-line tools are poorly documented because you're really supposed to use them via Gradle. There...

Thanks for the update. Let's leave the issue open as a reminder to fix the documentation, until we're able to add code to Briefcase to fully automate this (#1268).

The code in build.gradle splits the pip options file using `\n`, but on Windows it's written using `\r\n`, so `\r` is treated as part of the option name. In which...

An initial prototype of this is in #1084.

### Remaining features required for production use Feel free to edit this comment as necessary. #### In Briefcase (add links to issues once they exist): * Welcome screen * With...

@rmartin16: This looks like a different problem, so I've moved it to a separate issue (#1060).

Thanks for the report. I guess `$(BLDLIBRARY)` should probably be replaced with `-lpython3.14`. However, I'm not currently aware of anyone who uses the .pc file on Android, so I won't...

This affects any package using Meson, which uses pkgconfig to detect Python, so I'll implement a fix. Example error: ``` FAILED: numpy/_core/_struct_ufunc_tests.cpython-313-aarch64-linux-android.so /Users/msmith/Library/Android/sdk/ndk/27.3.13750724/toolchains/llvm/prebuilt/darwin-x86_64/bin/aarch64-linux-android24-clang -o numpy/_core/_struct_ufunc_tests.cpython-313-aarch64-linux-android.so numpy/_core/_struct_ufunc_tests.cpython-313-aarch64-linux-android.so.p/src_umath__struct_ufunc_tests.c.o -L/private/var/folders/2t/th8vxc813_gcch7lkh1sbbmc0000gp/T/cibw-run-5ef4oo3_/cp313-android_arm64_v8a/python/prefix/lib -I/private/var/folders/2t/th8vxc813_gcch7lkh1sbbmc0000gp/T/cibw-run-5ef4oo3_/cp313-android_arm64_v8a/python/prefix/include -Wl,--as-needed -Wl,--allow-shlib-undefined...

Other ideas mentioned in #2086: * Filter the log with the `--process` option. * Use the `--stdout` and `--stderr` arguments to `open`.

At least for iOS, this may be solved by the method of https://github.com/python/cpython/pull/138018.