mara004

Results 316 comments of mara004

@mgiessing Incidentally, do you have a hint how to build the `libclang_rt.builtins` ? Did you cross-compile from x86_64, or build them on ppc directly? (I was trying to build pdfium...

Thanks for the pointers! Yes, I can see building it natively being the usual way to go. However, in the case of arm32 (Raspberry Pi 2B), I'm afraid the device...

FWIW, a user recently [pointed out](https://github.com/pypdfium2-team/pypdfium2/issues/339#issuecomment-3126417389) to me that project maintainers can now ask for access to IBM's PowerPC/s390x actions runners here: https://github.com/IBM/actionspz I.e., theoretically we might be able to...

Ok, I think I've finally managed to cross-compile for ppc64le at pypdfium2, largely thanks to the pointers here, with this change: https://github.com/pypdfium2-team/pypdfium2/commit/45c8084a0745b6a5384a0719a5cf86228559a731 The main updates are: - Upstream sysroot has...

Thank you! > Would you like me to integrate your changes right away, or should I wait? > Or, do you prefer opening a PR? Do as you like :)...

Given \[1\], I believe it might also be possible to make builds for riscv64 and mips. If build support for these platforms is also incomplete, I'm guessing it could be...

From the docs one would expect the OP's [`FPDFPage_Flatten()`](https://pdfium.googlesource.com/pdfium/+/832a694e52c44e206598eff8c7d1797d47117d1b/public/fpdf_flatten.h#38) call to achieve the same, but last time I tested it seemed to take no visible effect, neither with rendering nor...

From a quick search, I saw [Bug 2055](https://bugs.chromium.org/p/pdfium/issues/detail?id=2055) in pdfium's issue tracker, where @kmoon-chromium mentions that `FPDFPage_Flatten()` requires that you reload the page afterwards. Also, it is stated that flattening...

[PDFium Bug 1626](https://bugs.chromium.org/p/pdfium/issues/detail?id=1626&q=mips64&can=1) seems to suggest that it's possible somehow?

`gn help target_cpu` lists the following: ``` Possible values - "x86" - "x64" - "arm" - "arm64" - "mipsel" - "mips64el" - "s390x" - "ppc64" - "riscv32" - "riscv64" -...