Исправление utf8-багов, сборка через gcc/musl-gcc

This commit is contained in:
2026-06-11 13:18:07 +03:00
parent f80ee739a4
commit 12ded71115
4 changed files with 18 additions and 6 deletions
+10 -1
View File
@@ -1,3 +1,12 @@
git submodule init
git submodule update
musl-gcc rtracker.c -o rtracker
# Check what compiler we have
if type "musl-gcc" > /dev/null 2>&1; then
CC="musl-gcc"
else
echo "[WARN]: using gcc instead of musl-gcc (recommended)"
CC="gcc"
fi
$CC rtracker.c -o rtracker