Raspberry Pi builds (#30)
Instructions, plus build option for running full-screen applications (without X11) on vanilla 32-bit Raspbian installations. This doesn't commit the actual .so binaries, since there are at least two possible variants (as described in the README).
This commit is contained in:
parent
8dfee10e60
commit
76121e34a9
3 changed files with 75 additions and 0 deletions
23
raylib/static/build_rpi_nox_multi.sh
Executable file
23
raylib/static/build_rpi_nox_multi.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/usr/bin/env bash
|
||||
if ! command -v pyenv &> /dev/null
|
||||
then
|
||||
echo "Pyenv required: https://github.com/pyenv/pyenv-installer"
|
||||
exit
|
||||
fi
|
||||
rm *arm-linux-gnueabihf.so
|
||||
pyenv install -s 3.9.1
|
||||
pyenv global 3.9.1
|
||||
pip3 install cffi
|
||||
python3 build_rpi_nox.py
|
||||
pyenv install -s 3.8.7
|
||||
pyenv global 3.8.7
|
||||
pip3 install cffi
|
||||
python3 build_rpi_nox.py
|
||||
pyenv install -s 3.7.9
|
||||
pyenv global 3.7.9
|
||||
pip3 install cffi
|
||||
python3 build_rpi_nox.py
|
||||
pyenv install -s 3.6.12
|
||||
pyenv global 3.6.12
|
||||
pip3 install cffi
|
||||
python3 build_rpi_nox.py
|
Reference in a new issue