diff options
| author | ruki <[email protected]> | 2020-02-13 23:45:31 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2020-02-13 16:33:10 +0800 |
| commit | 293d5e669f6350585e666ab60035aca49803985c (patch) | |
| tree | 9e538a79ae198c1b2fb30636b42c86501cbfd62d | |
| parent | b9879d5e6fadc016586dacb2535e5172bb476a06 (diff) | |
add lj_vm.o for msys/cygwin
| -rw-r--r-- | core/src/luajit/autogen/cygwin/jit/i386/lj_vm.o | bin | 0 -> 25209 bytes | |||
| -rw-r--r-- | core/src/luajit/autogen/cygwin/jit/x86_64/lj_vm.o | bin | 0 -> 25031 bytes | |||
| -rw-r--r-- | core/src/luajit/autogen/msys/jit/i386/lj_vm.o | bin | 0 -> 25209 bytes | |||
| -rw-r--r-- | core/src/luajit/autogen/msys/jit/x86_64/lj_vm.o | bin | 0 -> 25031 bytes | |||
| m--------- | core/src/tbox/tbox | 0 | ||||
| -rw-r--r-- | makefile | 16 |
6 files changed, 16 insertions, 0 deletions
diff --git a/core/src/luajit/autogen/cygwin/jit/i386/lj_vm.o b/core/src/luajit/autogen/cygwin/jit/i386/lj_vm.o Binary files differnew file mode 100644 index 000000000..bf42d8ec5 --- /dev/null +++ b/core/src/luajit/autogen/cygwin/jit/i386/lj_vm.o diff --git a/core/src/luajit/autogen/cygwin/jit/x86_64/lj_vm.o b/core/src/luajit/autogen/cygwin/jit/x86_64/lj_vm.o Binary files differnew file mode 100644 index 000000000..8d085a783 --- /dev/null +++ b/core/src/luajit/autogen/cygwin/jit/x86_64/lj_vm.o diff --git a/core/src/luajit/autogen/msys/jit/i386/lj_vm.o b/core/src/luajit/autogen/msys/jit/i386/lj_vm.o Binary files differnew file mode 100644 index 000000000..bf42d8ec5 --- /dev/null +++ b/core/src/luajit/autogen/msys/jit/i386/lj_vm.o diff --git a/core/src/luajit/autogen/msys/jit/x86_64/lj_vm.o b/core/src/luajit/autogen/msys/jit/x86_64/lj_vm.o Binary files differnew file mode 100644 index 000000000..8d085a783 --- /dev/null +++ b/core/src/luajit/autogen/msys/jit/x86_64/lj_vm.o diff --git a/core/src/tbox/tbox b/core/src/tbox/tbox -Subproject 7c1b61e0cccb145595624774e89a621204898fa +Subproject 9d66b8f56865829017fd74eb594a67cfe78c0af @@ -63,9 +63,25 @@ endif # to match a directory for a platform dependent implementation. ARCH :=$(if $(findstring amd64,$(ARCH)),x86_64,$(ARCH)) +# is windows? +iswin = +ifeq ($(PLAT),windows) + iswin = yes +endif +ifeq ($(PLAT),msys) + iswin = yes +endif +ifeq ($(PLAT),cygwin) + iswin = yes +endif + xmake_dir_install :=$(prefix)/share/xmake xmake_core :=./core/src/demo/demo.b +ifdef iswin +xmake_core_install :=$(xmake_dir_install)/xmake.exe +else xmake_core_install :=$(xmake_dir_install)/xmake +endif xmake_loader :=$(TMP_DIR)/xmake_loader xmake_loader_install:=$(prefix)/bin/xmake |
