Rok Mandeljc
Rok Mandeljc
What if we implemented this as "directory sideloading"? The `onefile` mode already supports package sideloading, i.e., instead of embedding CArchive, it can be written to `progname.pkg` and placed next to...
While our docs often contain questionable information, I'd say that the linked section is specifically referring to the standard *C* library, `libc`, and not to the standard C++ library, `libstdc++`....
> Might I suggest that the docs be updated with some of this information to help future developers? Yeah, that sounds like a good idea. But like you mentioned, this...
> So tl;dr, if you're going down the _build on old docker image_ route, you should unconditionally leave libc++ behind? I suppose in _build in old docker image route_, it...
> Would mirroring manylinux would be a good default policy? i.e. Any of the libraries listed [here](https://peps.python.org/pep-0513/#the-manylinux1-policy) should be excluded? (Possibly we'd chuck openssl in there too.) Hmm, perhaps. I'm...
A bit of a context behind this change: the other day, I was looking into implementing support for `loky` process execution framework (and therefore `joblib` that uses `loky` as its...
Yes, we currently do not properly support `setuptools`-provided `distutils` in the frozen application (the custom loader would have to be installed via runtime hook, but if I remember correctly, we...
> @dennisvang thanks for the solution. Is there any work around that is "permanent" to ship the executable without always defining the system variable? Downgrade your `setuptools` to < 60.0....
Actually, the existing splash screen implementation should already be displaying names of files being extracted from the onefile build: [here](https://github.com/pyinstaller/pyinstaller/blob/111232eba245e8d6cf370072b90aff7778b34184/bootloader/src/pyi_launch.c#L330-L332), by calling [this](https://github.com/pyinstaller/pyinstaller/blob/111232eba245e8d6cf370072b90aff7778b34184/bootloader/src/pyi_splash.c#L610) and in turn [this](https://github.com/pyinstaller/pyinstaller/blob/111232eba245e8d6cf370072b90aff7778b34184/bootloader/src/pyi_splash.c#L589). But you probably...
> I am not using the "onedir" options, so not sure if that affects progress. That snippet of python code can start running only once the frozen application is fully...