Posts by skitzo2000

    Thanks Hias, this does appear to have solved it. The locale on the ubuntu docker was not set. Installing locale was required first, and then setting en_US.UTF-8 by editing /etc/default/locale and inserting en_US.UTF-8

    Code
    $ sudo apt-get install locale
    
    $ cat /etc/default/locale
    
    insert the following line to the file: LANG=en_US.UTF-8

    Hey Guys,

    I've been trying to compile my own copy of libre from Git. My goal is to add some support for AppleSMC and eventually mbpfan so I can run Libre on an older mac mini without the fan running constantly.

    But I can't get it to compile at all. Note I've made no changes yet, just try to compile the source right off of Git(current stable release) using "PROJECT=Generic ARCH=x86_64 make image"

    I've tried in two different dockers. The first was and ubuntu 16.04 LTS docker, and then I tried the more recent 18.04 docker, and both times I get stopped at the same spot:

    File "/home/paul/http://LibreELEC.tv/build.LibreELEC-Generic.x86_64-9.0-devel/toolchain/lib/python3.6/subprocess.py", line 740, in _translate_newlines data = data.decode(encoding, errors) UnicodeDecodeError: 'ascii' codec can't decode byte 0xc5 in position 144: ordinal not in range(128) ninja: build stopped: subcommand failed. Makefile:12: recipe for target 'image' failed

    I've tried searching to no avail. I'm sure I'm missing something simple, as this is the first time I've built Libre.

    Your help and guidance is appreciated.