python-build-standalone
python-build-standalone copied to clipboard
Produce redistributable builds of Python
How to add other chip platforms with their own compilers, such as Loongarch64 Linux gnu
Recent Python versions add optional features such as [`os.pidfd_open()`](https://docs.python.org/3/library/os.html#os.pidfd_open) when it is available during the build time. This is going to be the default implementation of asyncio's child process watcher...
Latest build (cpython-3.8.17+20230826-x86_64-apple-darwin-pgo+lto-full) Scripts in `install/bin` directory (e.g. pip) find interpreter by looking in the same directory as `$0`. Meanwhile, if such a script gets symlinked and a symlink is...
Hi there, Wondering if would be a good idea to package this up as a universal binary for both x86_64 and aarch64 to support Intel Macs and Apple M1/M2 chips...
As mentioned in the PyOxidizer issue (https://github.com/indygreg/PyOxidizer/issues/705) a distribution for Android would be great and I'll try and see if I can get something basic to work.
The LLVM 15 upgrade in `main` appears to have also introduced DWARF v5 into ELF binaries. Such modern DWARF may cause issues with older toolchains and debuggers. We should consider...
When building a python distribution for target armv7-unknown-linux-gnueabihf, the resulting file `PYTHON.json` contains several information indicating it was build for x86_64-unknown-linux-gnu. ### How to reproduce: ``` git clone https://github.com/indygreg/python-build-standalone.git cd...
tl;dr: Last release `20221220` fails to compile a simple cython project: `setup.py`: ```python from setuptools import setup from Cython.Build import cythonize ext_modules = cythonize("my.pyx") setup( ext_modules=ext_modules, ) ``` (`my.pyx` can...
Hello! In order to install python on quite old hardware, I want to build 32-bit package with musl (binary libraries are also very old). In my case it is not...
I could not find musl-clang package for linux. Do you know how can I get this package? Python 3.7.7 musl version Error message: unable to execute 'musl-clang': No such file...