crossenv icon indicating copy to clipboard operation
crossenv copied to clipboard

Cross-compiling virtualenv for Python

Results 31 crossenv issues
Sort by recently updated
recently updated
newest added

For #103 , but Python 3.11 still doesn't work. Tested with 3.11 final release. Heres the errors I'm still getting. ``` # python3.11 -m crossenv /build/crosspy/bin/python3.11 /build/venv --sysroot=$(arm-frc2023-linux-gnueabi-gcc -print-sysroot) --env...

Added to conda-forge in https://github.com/conda-forge/crossenv-feedstock/pull/34 and I've tested locally that it works as expected. I suspect there might be some more issues with crossenv that result from https://github.com/python/cpython/issues/89745 and/or https://github.com/python/cpython/issues/89183...

Looks like they removed `sysconfig._is_python_source_dir` in https://github.com/python/cpython/commit/067597522a9002f3b8aff7f46033f10acb2381e4

Really long story short, Our build framework starts by building a minimal python38 and includes the necessary wheels, including crossenv. It happens that all version >=1.0 of `crossenv` makes `PyNaCl`...

Hello! Please help me with cross compiling paramiko module to embedded Linux with ARM. I've crosscompiling from linux x86_64 to armv7 (32 bit). Looks like there is a problem with...

Due to lack of proper bitness detection when cross-compiling a 32-bit target on 64-bit host this leads into inability to properly compile wheels that depends on this (such as using...

Pyinstaller is a packaging tool for python applications. https://pyinstaller.readthedocs.io/en/stable/ But it's not a cross compiler. Therefore, applications packaged on Linux x86 will only run on Linux x86. Applications packaged on...

Is it ok to use the target and host provided openssl and zlib or is it known to cause problems? Also is there an IRC or some other community?

See #73 `os.uname().machine` will never report "arm", but something like "armv7l". There are several options, and we have no way of knowing which one will be correct. We should still...

I've some problem to cross compile a package that uses the cffi dependency. Here is a part of my build script: ``` # install cffi for build env as recommended...