mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-07 15:14:08 +00:00
Move lib/* to src/jit/*.
This commit is contained in:
parent
7266e27404
commit
cccf763898
2
Makefile
2
Makefile
@ -120,7 +120,7 @@ install: $(INSTALL_DEP)
|
|||||||
$(INSTALL_F) $(FILE_PC).tmp $(INSTALL_PC) && \
|
$(INSTALL_F) $(FILE_PC).tmp $(INSTALL_PC) && \
|
||||||
$(RM) $(FILE_PC).tmp
|
$(RM) $(FILE_PC).tmp
|
||||||
cd src && $(INSTALL_F) $(FILES_INC) $(INSTALL_INC)
|
cd src && $(INSTALL_F) $(FILES_INC) $(INSTALL_INC)
|
||||||
cd lib && $(INSTALL_F) $(FILES_JITLIB) $(INSTALL_JITLIB)
|
cd src/jit && $(INSTALL_F) $(FILES_JITLIB) $(INSTALL_JITLIB)
|
||||||
@echo "==== Successfully installed LuaJIT $(VERSION) to $(PREFIX) ===="
|
@echo "==== Successfully installed LuaJIT $(VERSION) to $(PREFIX) ===="
|
||||||
@echo ""
|
@echo ""
|
||||||
@echo "Note: the beta releases deliberately do NOT install a symlink for luajit"
|
@echo "Note: the beta releases deliberately do NOT install a symlink for luajit"
|
||||||
|
@ -329,7 +329,7 @@ Then follow the installation instructions below.
|
|||||||
Copy <tt>luajit.exe</tt> and <tt>lua51.dll</tt> (built in the <tt>src</tt>
|
Copy <tt>luajit.exe</tt> and <tt>lua51.dll</tt> (built in the <tt>src</tt>
|
||||||
directory) to a newly created directory (any location is ok).
|
directory) to a newly created directory (any location is ok).
|
||||||
Add <tt>lua</tt> and <tt>lua\jit</tt> directories below it and copy
|
Add <tt>lua</tt> and <tt>lua\jit</tt> directories below it and copy
|
||||||
all Lua files from the <tt>lib</tt> directory of the distribution
|
all Lua files from the <tt>src\jit</tt> directory of the distribution
|
||||||
to the latter directory.
|
to the latter directory.
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
|
@ -401,7 +401,7 @@ LJCORE_O= lj_gc.o lj_err.o lj_char.o lj_bc.o lj_obj.o \
|
|||||||
LJVMCORE_O= $(LJVM_O) $(LJCORE_O)
|
LJVMCORE_O= $(LJVM_O) $(LJCORE_O)
|
||||||
LJVMCORE_DYNO= $(LJVMCORE_O:.o=_dyn.o)
|
LJVMCORE_DYNO= $(LJVMCORE_O:.o=_dyn.o)
|
||||||
|
|
||||||
LIB_VMDEF= ../lib/vmdef.lua
|
LIB_VMDEF= jit/vmdef.lua
|
||||||
LIB_VMDEFP= $(LIB_VMDEF)
|
LIB_VMDEFP= $(LIB_VMDEF)
|
||||||
|
|
||||||
LUAJIT_O= luajit.o
|
LUAJIT_O= luajit.o
|
||||||
|
0
lib/.gitignore → src/jit/.gitignore
vendored
0
lib/.gitignore → src/jit/.gitignore
vendored
@ -46,7 +46,7 @@ buildvm -m libdef -o lj_libdef.h %ALL_LIB%
|
|||||||
@if errorlevel 1 goto :BAD
|
@if errorlevel 1 goto :BAD
|
||||||
buildvm -m recdef -o lj_recdef.h %ALL_LIB%
|
buildvm -m recdef -o lj_recdef.h %ALL_LIB%
|
||||||
@if errorlevel 1 goto :BAD
|
@if errorlevel 1 goto :BAD
|
||||||
buildvm -m vmdef -o ..\lib\vmdef.lua %ALL_LIB%
|
buildvm -m vmdef -o jit\vmdef.lua %ALL_LIB%
|
||||||
@if errorlevel 1 goto :BAD
|
@if errorlevel 1 goto :BAD
|
||||||
buildvm -m folddef -o lj_folddef.h lj_opt_fold.c
|
buildvm -m folddef -o lj_folddef.h lj_opt_fold.c
|
||||||
@if errorlevel 1 goto :BAD
|
@if errorlevel 1 goto :BAD
|
||||||
|
Loading…
Reference in New Issue
Block a user