Rok Mandeljc
Rok Mandeljc
Considering [what `sysconfig.get_platform` seems to be doing](https://github.com/python/cpython/blob/77b45fa6d0b8c0c14657b5117b21a3f3f2ce97d8/Lib/sysconfig/__init__.py#L553-L581), `PROCESSOR_ARCHITECTURE` gets my vote as well.
Hmm, I think I would expect it to build the bootloader for the (emulated) python's architecture, because that is going to be used when user tries to run PyInstaller in...
Hmm, indeed. Looks like `--clean` option also fails to remove the build directory (workpath) when the path contains square brackets - because it messes up [this glob due to lack...
> Probably easiest to switch to `pathlib.Path().glob()`? Not necessarily the easiest (I think there's some subtle differences between `pathlib.Path.glob()` and `glob.glob()`, but I don't remember what exactly they are and...
Is that PyQt5 from Arch repository (i.e., system-installed) or from PyPI wheel? Our hooks are tailored to the latter, so you will likely have more luck if you set up...
Yeah, collecting Qt stuff from distribution packages is a mess. I know for sure that it doesn't work on Fedora, either. It's a very low-priority thing as far as I'm...
Hmm, but perhaps just forcing the target path for `QtWebEngineProcess` might do the trick. On Fedora PyQt6, it is under `/lib64/qt6/libexec`, so it ends up collected under `_internal/PyQt6/Qt6/lib64/qt6/libexec` (whereas under...
> > Is that PyQt5 from Arch repository (i.e., system-installed) or from PyPI wheel? Our hooks are tailored to the latter, so you will likely have more luck if you...
@letkan Can you check if https://github.com/rokm/pyinstaller/tree/linux-distro-qtwebengine fixes the problem on Arch? (It seems to do the trick on my Fedora system with Fedora-packaged Qt6 and PyQt6).
> > @letkan Can you check if https://github.com/rokm/pyinstaller/tree/linux-distro-qtwebengine fixes the problem on Arch? (It seems to do the trick on my Fedora system with Fedora-packaged Qt6 and PyQt6). > >...