I assumed you’re using this repo. I cloned the repo, and the build script BuildLinux.sh
didn’t work at first. It looks like they only had it set to work with x86, so I added this to the check.
elif [[ $(uname -m) == "aarch64" || $(uname -m) == "aarch64" ]]; then
echo "$(tput setaf 2)Linux 64-bit found$(tput sgr0)\n"
Processor="64"
Running ./BuildLinux.sh -d
built all the dependencies fine but when I would compile the main program with ./BuildLinux.sh -s
my machine would lockup between 45-60 mins each time, tried 3 times. Not sure why, temps were warm at 62°c but I get higher compiling the kernel.
Is that the same superslicer you were building and how were you compiling it?