What is the best way to remove or omit a Lua standard library package? For example remove the os library functions in a particular environment. The project in question is building Lua from the source files so I can edit the source, although I would rather do it through the API if possible.
|
feedback
|
|
See the file See the file Common practice is to copy that file to your application's source, and modify it to suit your needs, calling that copy's Of course, you also don't need to compile or link to the sources for any library (such as The only library that you probably can't leave out completely is the base library that provides things like Edit: Another approach to including a different list of libraries in the interpreter is to not call Chapter 5 of the reference manual talks about this:
That last sentence is occasionally the source of trouble, since older versions of Lua did not have that restriction. Each of the individual module's Here's a function that creates a new Lua state and opens only the base and package libraries:
It returns the new | |||||||||||
feedback
|
|
I think that post answers your question, but a little more info on the subject. Be aware you can also just 'nil' entire tables. So in your example the "os" lib you can do a "os = nil" then poof!, the "os" lib/table is gone. Doing a "os.time()" after this example would return an error for a now nonexistent lib/table. Furthermore if you just wanted to nix the "time" method alone in "os" you could just do "os.time = nil". | |||||
feedback
|