From ba6ee8cce5d165cf080f536f1575411e92514424 Mon Sep 17 00:00:00 2001 From: westonCoder Date: Fri, 28 Jul 2023 09:15:49 -0500 Subject: [PATCH] Force luac 5.4 Compile one line change in makefile for skeletool, simply requires that user use luac5.4 just incase they have multiple luac/lua versions. --- skelatool64/makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/skelatool64/makefile b/skelatool64/makefile index 55b78b4..9f30098 100644 --- a/skelatool64/makefile +++ b/skelatool64/makefile @@ -20,7 +20,7 @@ default: skeletool64 build/lua/%.o: lua/%.lua @mkdir -p $(@D) - luac -o $(@:%.o=%.out) $< + luac5.4 -o $(@:%.o=%.out) $< ld -r -b binary -o $@ $(@:%.o=%.out) build/%.o: %.cpp