dhruv chopra
dhruv chopra

Reputation: 498

Generating a single lua bytecode file from multiple lua files for Corona

I am developing a lua library for Corona which contains code spread across files. I am using luac to generate a single bytecode file which I can share with other developers so that they can use my library easily and without looking at code. Problem is that I am getting "bad header in precompiled chunk" error. From searching around, I find that its because I need to compile for ARM.

What would be right approach for me here?

Upvotes: 3

Views: 1445

Answers (1)

Lua bytecode is not portable neither across version, nor across platforms; see luac docs.

Update

If you are just trying to pack some files together you could see Squish.

If you need a real deploying system for Lua there is Luarocks.

Upvotes: 2

Related Questions