Compile Lua 5.4 and lua-cjson using -std=c99

This commit is contained in:
Jeremy Baxter 2023-07-01 09:48:15 +12:00
parent 0d7604cb96
commit 2d78ec849e
3 changed files with 61 additions and 3 deletions

View file

@ -13,7 +13,7 @@
##### Build defaults #####
CC = cc
AR = ar rcu
CFLAGS = -O2 -Wall -Wno-unused-function -pedantic -fpic -DNDEBUG -I../../lua-5.4
CFLAGS = -std=c99 -O2 -Wall -Wno-unused-function -pedantic -fpic -DNDEBUG -I../../lua-5.4
OBJS = dtoa.o fpconv.o g_fmt.o lua_cjson.o strbuf.o
##### End customisable sections #####