lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


=============================================================================
README for LuaPlusJit 1.0.0.0 05/13/2013
------------------------------------------------------------------------------

LuaPlusJit combines LuaPlus with LuaJit projects to deliver LuaJit
performance to LuaPlus solutions.

==============================================================================
Release Notes
------------------------------------------------------------------------------

The current version of LuaPlusJit does not support any of the enhancements
to Lua that LuaPlus adds and does not include any of the extra tools included
with LuaPlus.

Additionally LuaJit include headers maybe differently named than Lua include
headers.

 

==============================================================================

Download

------------------------------------------------------------------------------
https://dl.dropboxusercontent.com/u/87007051/LuaPlusJit/LuaPlusJit_1_0_0_0_05132013.zip

 

==============================================================================
Using
------------------------------------------------------------------------------

To statically link:

+ add includes folders
<LuaPlusJit>\LuaJit
<LuaPlusJit>\LuaPlus

+ add libraries
<LuaPlusJit>\[Debug|Release]\LuaJitLib.lib
<LuaPlusJit>\[Debug|Release]\LuaPlusLib.lib


To dynamically link:

+ add includes folders
<LuaPlusJit>\LuaJit
<LuaPlusJit>\LuaPlus

+ add libraries
<LuaPlusJit>\[Debug|Release]\LuaJitDll.lib
<LuaPlusJit>\[Debug|Release]\LuaPlusDll.lib

+ include with solution
<LuaPlusJit>\[Debug|Release]\LuaJitDll.dll
<LuaPlusJit>\[Debug|Release]\LuaPlusDll.dll

==============================================================================
Building
------------------------------------------------------------------------------

LuaPlusJit is built using Visual Studio 2010.

To build:

+ open Visual Studio Command Prompt (2010)

+ enter
cd <LuaPlusJit>\LuaJitPrerequisites
msvcbuild.bat

+ run Visual Studio 2010

+ open <LuaPlusJit>\LuaPlusJit.sln

+ open Build menu and then Build Solution

==============================================================================
History
------------------------------------------------------------------------------

LuaPlusJit 1.0.0.0 05/13/2013
+ Initial release

==============================================================================
README for LuaPlus 5.1
------------------------------------------------------------------------------

LuaPlus is C++ wrapper for the Lua programming language.

Project Homepage:
http://luaplus.org/

Documentation for LuaPlus can be found at:

.\docs\luaplus\LuaPlus.html

==============================================================================
LuaPlusJit License
------------------------------------------------------------------------------

LuaPlusJit, like LuaPlus, is licensed under the terms of the MIT license and
can be used unrestricted in any place where LuaPlus could be used.

LuaPlusJit is Copyright 2013 Enabling Software. All rights reserved.

==============================================================================
LuaPlus License
------------------------------------------------------------------------------

LuaPlus, like Lua, is licensed under the terms of the MIT license and can be
used unrestricted in any place where Lua could be used.

LuaPlus is Copyright 2002-2010 Joshua C. Jensen.

==============================================================================
Lua License
------------------------------------------------------------------------------

Lua is licensed under the terms of the MIT license reproduced below.
This means that Lua is free software and can be used for both academic
and commercial purposes at absolutely no cost.

For details and rationale, see
http://www.lua.org/license.html .

==============================================================================
Copyright (C) 1994-2008 Lua.org, PUC-Rio.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

==============================================================================
README for LuaJIT 2.0.1
------------------------------------------------------------------------------

LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.

Project Homepage:
http://luajit.org/

Documentation for LuaJIT can be found at:

.\docs\luajit\luajit.html

==============================================================================
LuaJIT -- a Just-In-Time Compiler for Lua.
http://luajit.org/

Copyright (C) 2005-2013 Mike Pall. All rights reserved.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

[ MIT license:
http://www.opensource.org/licenses/mit-license.php ]

==============================================================================
[ LuaJIT includes code from Lua 5.1/5.2, which has this license statement: ]

Copyright (C) 1994-2012 Lua.org, PUC-Rio.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

==============================================================================
[ LuaJIT includes code from dlmalloc, which has this license statement: ]

This is a version (aka dlmalloc) of malloc/free/realloc written by
Doug Lea and released to the public domain, as explained at
http://creativecommons.org/licenses/publicdomain

==============================================================================