mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 15:14:08 +00:00
Clarify name of MIT license.
This commit is contained in:
parent
4a42933b17
commit
b500b50edc
2
README
2
README
@ -6,7 +6,7 @@ LuaJIT is a Just-In-Time (JIT) compiler for the Lua programming language.
|
|||||||
Project Homepage: http://luajit.org/
|
Project Homepage: http://luajit.org/
|
||||||
|
|
||||||
LuaJIT is Copyright (C) 2005-2011 Mike Pall.
|
LuaJIT is Copyright (C) 2005-2011 Mike Pall.
|
||||||
LuaJIT is free software, released under the MIT/X license.
|
LuaJIT is free software, released under the MIT license.
|
||||||
See full Copyright Notice in the COPYRIGHT file or in luajit.h.
|
See full Copyright Notice in the COPYRIGHT file or in luajit.h.
|
||||||
|
|
||||||
Documentation for LuaJIT is available in HTML format.
|
Documentation for LuaJIT is available in HTML format.
|
||||||
|
@ -62,7 +62,7 @@ programming language.
|
|||||||
<p>
|
<p>
|
||||||
LuaJIT is Copyright © 2005-2011 Mike Pall.
|
LuaJIT is Copyright © 2005-2011 Mike Pall.
|
||||||
LuaJIT is open source software, released under the
|
LuaJIT is open source software, released under the
|
||||||
<a href="http://www.opensource.org/licenses/mit-license.php"><span class="ext">»</span> MIT/X license</a>.
|
<a href="http://www.opensource.org/licenses/mit-license.php"><span class="ext">»</span> MIT license</a>.
|
||||||
</p>
|
</p>
|
||||||
<p class="indent" style="color: #606060;">
|
<p class="indent" style="color: #606060;">
|
||||||
* Lua is a powerful, dynamic and light-weight programming language
|
* Lua is a powerful, dynamic and light-weight programming language
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
** DynASM ARM encoding engine.
|
** DynASM ARM encoding engine.
|
||||||
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
|
** Released under the MIT license. See dynasm.lua for full copyright notice.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
** DynASM PPC encoding engine.
|
** DynASM PPC encoding engine.
|
||||||
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
|
** Released under the MIT license. See dynasm.lua for full copyright notice.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
** DynASM encoding engine prototypes.
|
** DynASM encoding engine prototypes.
|
||||||
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
|
** Released under the MIT license. See dynasm.lua for full copyright notice.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef _DASM_PROTO_H
|
#ifndef _DASM_PROTO_H
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
** DynASM x86 encoding engine.
|
** DynASM x86 encoding engine.
|
||||||
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
** Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
** Released under the MIT/X license. See dynasm.lua for full copyright notice.
|
** Released under the MIT license. See dynasm.lua for full copyright notice.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
@ -73,7 +73,7 @@ Runs some nested loops and shows the resulting traces.
|
|||||||
.PP
|
.PP
|
||||||
\fBLuaJIT\fR is Copyright \(co 2005-2011 Mike Pall.
|
\fBLuaJIT\fR is Copyright \(co 2005-2011 Mike Pall.
|
||||||
.br
|
.br
|
||||||
\fBLuaJIT\fR is open source software, released under the MIT/X license.
|
\fBLuaJIT\fR is open source software, released under the MIT license.
|
||||||
.SH SEE ALSO
|
.SH SEE ALSO
|
||||||
.PP
|
.PP
|
||||||
More details in the provided HTML docs or at:
|
More details in the provided HTML docs or at:
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- LuaJIT bytecode listing module.
|
-- LuaJIT bytecode listing module.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- This module lists the bytecode of a Lua function. If it's loaded by -jbc
|
-- This module lists the bytecode of a Lua function. If it's loaded by -jbc
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- LuaJIT module to save/list bytecode.
|
-- LuaJIT module to save/list bytecode.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- This module saves or lists the bytecode for an input file.
|
-- This module saves or lists the bytecode for an input file.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- LuaJIT ARM disassembler module.
|
-- LuaJIT ARM disassembler module.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2010 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
-- This is a helper module used by the LuaJIT machine code dumper module.
|
-- This is a helper module used by the LuaJIT machine code dumper module.
|
||||||
--
|
--
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- LuaJIT x64 disassembler wrapper module.
|
-- LuaJIT x64 disassembler wrapper module.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
-- This module just exports the 64 bit functions from the combined
|
-- This module just exports the 64 bit functions from the combined
|
||||||
-- x86/x64 disassembler module. All the interesting stuff is there.
|
-- x86/x64 disassembler module. All the interesting stuff is there.
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- LuaJIT x86/x64 disassembler module.
|
-- LuaJIT x86/x64 disassembler module.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
-- This is a helper module used by the LuaJIT machine code dumper module.
|
-- This is a helper module used by the LuaJIT machine code dumper module.
|
||||||
--
|
--
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- LuaJIT compiler dump module.
|
-- LuaJIT compiler dump module.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- This module can be used to debug the JIT compiler itself. It dumps the
|
-- This module can be used to debug the JIT compiler itself. It dumps the
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
-- Verbose mode of the LuaJIT compiler.
|
-- Verbose mode of the LuaJIT compiler.
|
||||||
--
|
--
|
||||||
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
-- Copyright (C) 2005-2011 Mike Pall. All rights reserved.
|
||||||
-- Released under the MIT/X license. See Copyright Notice in luajit.h
|
-- Released under the MIT license. See Copyright Notice in luajit.h
|
||||||
----------------------------------------------------------------------------
|
----------------------------------------------------------------------------
|
||||||
--
|
--
|
||||||
-- This module shows verbose information about the progress of the
|
-- This module shows verbose information about the progress of the
|
||||||
|
Loading…
Reference in New Issue
Block a user