diff options
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | doc/install.html | 2 | ||||
-rw-r--r-- | src/Makefile | 2 | ||||
-rw-r--r-- | src/jit/.gitignore (renamed from lib/.gitignore) | 0 | ||||
-rw-r--r-- | src/jit/bc.lua (renamed from lib/bc.lua) | 0 | ||||
-rw-r--r-- | src/jit/bcsave.lua (renamed from lib/bcsave.lua) | 0 | ||||
-rw-r--r-- | src/jit/dis_arm.lua (renamed from lib/dis_arm.lua) | 0 | ||||
-rw-r--r-- | src/jit/dis_mips.lua (renamed from lib/dis_mips.lua) | 0 | ||||
-rw-r--r-- | src/jit/dis_mipsel.lua (renamed from lib/dis_mipsel.lua) | 0 | ||||
-rw-r--r-- | src/jit/dis_ppc.lua (renamed from lib/dis_ppc.lua) | 0 | ||||
-rw-r--r-- | src/jit/dis_x64.lua (renamed from lib/dis_x64.lua) | 0 | ||||
-rw-r--r-- | src/jit/dis_x86.lua (renamed from lib/dis_x86.lua) | 0 | ||||
-rw-r--r-- | src/jit/dump.lua (renamed from lib/dump.lua) | 0 | ||||
-rw-r--r-- | src/jit/v.lua (renamed from lib/v.lua) | 0 | ||||
-rw-r--r-- | src/msvcbuild.bat | 2 |
15 files changed, 4 insertions, 4 deletions
@@ -120,7 +120,7 @@ install: $(INSTALL_DEP) | |||
120 | $(INSTALL_F) $(FILE_PC).tmp $(INSTALL_PC) && \ | 120 | $(INSTALL_F) $(FILE_PC).tmp $(INSTALL_PC) && \ |
121 | $(RM) $(FILE_PC).tmp | 121 | $(RM) $(FILE_PC).tmp |
122 | cd src && $(INSTALL_F) $(FILES_INC) $(INSTALL_INC) | 122 | cd src && $(INSTALL_F) $(FILES_INC) $(INSTALL_INC) |
123 | cd lib && $(INSTALL_F) $(FILES_JITLIB) $(INSTALL_JITLIB) | 123 | cd src/jit && $(INSTALL_F) $(FILES_JITLIB) $(INSTALL_JITLIB) |
124 | @echo "==== Successfully installed LuaJIT $(VERSION) to $(PREFIX) ====" | 124 | @echo "==== Successfully installed LuaJIT $(VERSION) to $(PREFIX) ====" |
125 | @echo "" | 125 | @echo "" |
126 | @echo "Note: the beta releases deliberately do NOT install a symlink for luajit" | 126 | @echo "Note: the beta releases deliberately do NOT install a symlink for luajit" |
diff --git a/doc/install.html b/doc/install.html index 3731b305..f487958d 100644 --- a/doc/install.html +++ b/doc/install.html | |||
@@ -329,7 +329,7 @@ Then follow the installation instructions below. | |||
329 | Copy <tt>luajit.exe</tt> and <tt>lua51.dll</tt> (built in the <tt>src</tt> | 329 | Copy <tt>luajit.exe</tt> and <tt>lua51.dll</tt> (built in the <tt>src</tt> |
330 | directory) to a newly created directory (any location is ok). | 330 | directory) to a newly created directory (any location is ok). |
331 | Add <tt>lua</tt> and <tt>lua\jit</tt> directories below it and copy | 331 | Add <tt>lua</tt> and <tt>lua\jit</tt> directories below it and copy |
332 | all Lua files from the <tt>lib</tt> directory of the distribution | 332 | all Lua files from the <tt>src\jit</tt> directory of the distribution |
333 | to the latter directory. | 333 | to the latter directory. |
334 | </p> | 334 | </p> |
335 | <p> | 335 | <p> |
diff --git a/src/Makefile b/src/Makefile index a0e98068..5977c373 100644 --- a/src/Makefile +++ b/src/Makefile | |||
@@ -401,7 +401,7 @@ LJCORE_O= lj_gc.o lj_err.o lj_char.o lj_bc.o lj_obj.o \ | |||
401 | LJVMCORE_O= $(LJVM_O) $(LJCORE_O) | 401 | LJVMCORE_O= $(LJVM_O) $(LJCORE_O) |
402 | LJVMCORE_DYNO= $(LJVMCORE_O:.o=_dyn.o) | 402 | LJVMCORE_DYNO= $(LJVMCORE_O:.o=_dyn.o) |
403 | 403 | ||
404 | LIB_VMDEF= ../lib/vmdef.lua | 404 | LIB_VMDEF= jit/vmdef.lua |
405 | LIB_VMDEFP= $(LIB_VMDEF) | 405 | LIB_VMDEFP= $(LIB_VMDEF) |
406 | 406 | ||
407 | LUAJIT_O= luajit.o | 407 | LUAJIT_O= luajit.o |
diff --git a/lib/.gitignore b/src/jit/.gitignore index 500e2855..500e2855 100644 --- a/lib/.gitignore +++ b/src/jit/.gitignore | |||
diff --git a/lib/bc.lua b/src/jit/bc.lua index 15317bcd..15317bcd 100644 --- a/lib/bc.lua +++ b/src/jit/bc.lua | |||
diff --git a/lib/bcsave.lua b/src/jit/bcsave.lua index 70cb6925..70cb6925 100644 --- a/lib/bcsave.lua +++ b/src/jit/bcsave.lua | |||
diff --git a/lib/dis_arm.lua b/src/jit/dis_arm.lua index 0fcd1bed..0fcd1bed 100644 --- a/lib/dis_arm.lua +++ b/src/jit/dis_arm.lua | |||
diff --git a/lib/dis_mips.lua b/src/jit/dis_mips.lua index 2edfdf40..2edfdf40 100644 --- a/lib/dis_mips.lua +++ b/src/jit/dis_mips.lua | |||
diff --git a/lib/dis_mipsel.lua b/src/jit/dis_mipsel.lua index 4c5a6515..4c5a6515 100644 --- a/lib/dis_mipsel.lua +++ b/src/jit/dis_mipsel.lua | |||
diff --git a/lib/dis_ppc.lua b/src/jit/dis_ppc.lua index ad8599fc..ad8599fc 100644 --- a/lib/dis_ppc.lua +++ b/src/jit/dis_ppc.lua | |||
diff --git a/lib/dis_x64.lua b/src/jit/dis_x64.lua index d95d7ded..d95d7ded 100644 --- a/lib/dis_x64.lua +++ b/src/jit/dis_x64.lua | |||
diff --git a/lib/dis_x86.lua b/src/jit/dis_x86.lua index 5aeeb449..5aeeb449 100644 --- a/lib/dis_x86.lua +++ b/src/jit/dis_x86.lua | |||
diff --git a/lib/dump.lua b/src/jit/dump.lua index 3d62c4ea..3d62c4ea 100644 --- a/lib/dump.lua +++ b/src/jit/dump.lua | |||
diff --git a/lib/v.lua b/src/jit/v.lua index 8f58fe3b..8f58fe3b 100644 --- a/lib/v.lua +++ b/src/jit/v.lua | |||
diff --git a/src/msvcbuild.bat b/src/msvcbuild.bat index 09782db4..63467308 100644 --- a/src/msvcbuild.bat +++ b/src/msvcbuild.bat | |||
@@ -46,7 +46,7 @@ buildvm -m libdef -o lj_libdef.h %ALL_LIB% | |||
46 | @if errorlevel 1 goto :BAD | 46 | @if errorlevel 1 goto :BAD |
47 | buildvm -m recdef -o lj_recdef.h %ALL_LIB% | 47 | buildvm -m recdef -o lj_recdef.h %ALL_LIB% |
48 | @if errorlevel 1 goto :BAD | 48 | @if errorlevel 1 goto :BAD |
49 | buildvm -m vmdef -o ..\lib\vmdef.lua %ALL_LIB% | 49 | buildvm -m vmdef -o jit\vmdef.lua %ALL_LIB% |
50 | @if errorlevel 1 goto :BAD | 50 | @if errorlevel 1 goto :BAD |
51 | buildvm -m folddef -o lj_folddef.h lj_opt_fold.c | 51 | buildvm -m folddef -o lj_folddef.h lj_opt_fold.c |
52 | @if errorlevel 1 goto :BAD | 52 | @if errorlevel 1 goto :BAD |