I have often built 64bit LE using following simple recipe
git clone https://github.com/kszaq/LibreELEC.tv.git
cd LibreELEC.tv
git checkout -b 7.0.3.012c 7.0.3.012c (or older tag)
PROJECT=S905 ARCH=aarch64 make -j13 image
from the moment only 32bit images were available I had to do (as you kindly told)
cp projects/S905/linux/linux.arm.conf projects/S905/linux/linux.aarch64.conf
rm projects/S905/patches/Python/*
but, from 7.0.3.012d onward I have several issues building 64bit LE
- for example aarch64-linux-gnu-gcc not found
(which I hack by linking aarch64-libreelec-linux-gnueabi-xxx to aarch64-linux-gnu-xxx in build.LibreELEC-S905.aarch64-7.0-devel/toolchain/bin)
- but eventually I run into funny errors such as in xbmc:
[Fatal Error] classXBMCAddon_1_1xbmcgui_1_1ControlSpin.xml:58:271: XML document structures must start and end within the same entity.
What I would like to request from you:
Can you, moving forward, keep repository such that you check if 64bit continues to build.
If it does build for you, then it should also for others.
Thank you very very much for your amazing work !