MCJack123 / craftos2

A fast, modern, and feature-filled ComputerCraft emulator written in C++.
https://www.craftos-pc.cc
Other
217 stars 25 forks source link

Fix compilation on Linux with MUSL libc #341

Closed Ocawesome101 closed 5 months ago

Ocawesome101 commented 5 months ago

platform/linux.cpp uses backtrace which doesn't exist on MUSL. Building against libexecinfo fixes this.

Right now this just fixes compilation. Linking doesn't work yet because i don't have a solution for detecting musl in the Makefile. could just require make MUSL=1 or something?