Closed efirshik closed 4 years ago
Looks like livesplit-core is failing to compile on your machine. Can you give me more information about what you are trying to run this on (other than the fact that you are trying to run this on a Raspberry Pi)?
Specifically stuff like your OS and Rust toolchain version.
pi@testpi:~ $ cat /proc/cpuinfo
processor : 0
model name : ARMv6-compatible processor rev 7 (v6l)
BogoMIPS : 697.95
Features : half thumb fastmult vfp edsp java tls
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x0
CPU part : 0xb76
CPU revision : 7
Hardware : BCM2835
Revision : 000e
Model : Raspberry Pi Model B Rev 2
pi@testpi:~ $ lsb_release -a
Distributor ID: Raspbian
Description: Raspbian GNU/Linux 10 (buster)
Release: 10
Codename: buster
pi@testpi:~ $ rustup show
Default host: arm-unknown-linux-gnueabihf stable-arm-unknown-linux-gnueabihf (default)
rustc 1.41.1 (f3e1a954d 2020-02-24)
It looks like you ran out of memory when trying to build.
I cant help you much with that but you could try changing line 42 in the makefile to:
cargo build --release -p staticlib -j 1; \
In particular you probably want to modify the release profile of livesplit-core to something like this: https://github.com/rust-lang/cargo/issues/6489#issuecomment-546635180