GithubHelp home page GithubHelp logo

awm / lua Goto Github PK

View Code? Open in Web Editor NEW
0.0 3.0 1.0 386 KB

The Lua programming language with some additional compile-time configuration options.

Home Page: https://www.lua.org

License: MIT License

Makefile 1.44% C 96.74% C++ 1.82%
c lua

lua's Introduction

Lua

Build Status

The Lua programming language with some additional compile-time configuration options.

See lua.org for more infomation on the Lua language.

All additional options are controlled by preprocessor defines in luaconf.h.

Additional Configuration

LUA_DISABLE_FLOAT

Disable all floating point support in Lua. Only integers will be supported for numeric operations. This removes any dependency on the standard C library's <math.h>. Setting this will also remove the following features, which require floating point support:

LUA_DISABLE_FS

Disable file system support in Lua. It is still possible to create io file objects in C code and pass them to Lua scripts. The standard streams (stdin, stdout, and stderr) will continue to exist. Setting this will remove the following features, which require file system support:

Note: this option does not remove the ability to load Lua files from within C code (for example, using luaL_loadfile).

LUA_DISABLE_EXEC

Disable subprocess execution in Lua to prevent Lua from invoking other executables. Setting this will remove the following features, which provide Lua's subprocess capabilities:

LUA_DISABLE_EXIT

Disable ability for Lua scripts to explicitly terminate their own process. This does not prevent other behaviours such as unhandled errors or failed assertions from doing so, however. Setting this will remove the following feature, which provides Lua's exit capability:

lua's People

Contributors

awm avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.