diff options
| author | ruki <[email protected]> | 2019-06-28 00:41:09 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-06-27 22:06:58 +0800 |
| commit | 19cbd06f95dddacd1247d1dffab9fa29d719d02b (patch) | |
| tree | c424494f950ea356bcac5f8bdc3c78b200064c67 /core/src/luajit | |
| parent | 10f5a0cf4441565b66d9fe2682ee78fbaab73fa9 (diff) | |
rename submodules name
Diffstat (limited to 'core/src/luajit')
| m--------- | core/src/luajit/luajit (renamed from core/src/luajit/repo) | 0 | ||||
| -rw-r--r-- | core/src/luajit/makefile | 130 | ||||
| -rw-r--r-- | core/src/luajit/xmake.lua | 6 |
3 files changed, 68 insertions, 68 deletions
diff --git a/core/src/luajit/repo b/core/src/luajit/luajit -Subproject d1ea93d1b5d175e29af653872ec5bb77f55241a +Subproject d1ea93d1b5d175e29af653872ec5bb77f55241a diff --git a/core/src/luajit/makefile b/core/src/luajit/makefile index ba6c2fe69..a5718c165 100644 --- a/core/src/luajit/makefile +++ b/core/src/luajit/makefile @@ -12,71 +12,71 @@ luajit_CONFIG = n # core files luajit_C_FILES += \ - repo/src/lib_aux \ - repo/src/lib_base \ - repo/src/lib_bit \ - repo/src/lib_debug \ - repo/src/lib_ffi \ - repo/src/lib_init \ - repo/src/lib_io \ - repo/src/lib_jit \ - repo/src/lib_math \ - repo/src/lib_os \ - repo/src/lib_package \ - repo/src/lib_string \ - repo/src/lib_table \ - repo/src/lj_alloc \ - repo/src/lj_api \ - repo/src/lj_asm \ - repo/src/lj_bc \ - repo/src/lj_bcread \ - repo/src/lj_bcwrite \ - repo/src/lj_carith \ - repo/src/lj_ccall \ - repo/src/lj_ccallback \ - repo/src/lj_cconv \ - repo/src/lj_cdata \ - repo/src/lj_char \ - repo/src/lj_clib \ - repo/src/lj_cparse \ - repo/src/lj_crecord \ - repo/src/lj_ctype \ - repo/src/lj_debug \ - repo/src/lj_dispatch \ - repo/src/lj_err \ - repo/src/lj_ffrecord \ - repo/src/lj_func \ - repo/src/lj_gc \ - repo/src/lj_gdbjit \ - repo/src/lj_ir \ - repo/src/lj_lex \ - repo/src/lj_lib \ - repo/src/lj_load \ - repo/src/lj_mcode \ - repo/src/lj_meta \ - repo/src/lj_obj \ - repo/src/lj_opt_dce \ - repo/src/lj_opt_fold \ - repo/src/lj_opt_loop \ - repo/src/lj_opt_mem \ - repo/src/lj_opt_narrow \ - repo/src/lj_opt_sink \ - repo/src/lj_opt_split \ - repo/src/lj_parse \ - repo/src/lj_record \ - repo/src/lj_snap \ - repo/src/lj_state \ - repo/src/lj_str \ - repo/src/lj_strscan \ - repo/src/lj_tab \ - repo/src/lj_trace \ - repo/src/lj_udata \ - repo/src/lj_vmevent \ - repo/src/lj_vmmath \ - repo/src/lj_buf \ - repo/src/lj_strfmt \ - repo/src/lj_strfmt_num \ - repo/src/lj_profile + luajit/src/lib_aux \ + luajit/src/lib_base \ + luajit/src/lib_bit \ + luajit/src/lib_debug \ + luajit/src/lib_ffi \ + luajit/src/lib_init \ + luajit/src/lib_io \ + luajit/src/lib_jit \ + luajit/src/lib_math \ + luajit/src/lib_os \ + luajit/src/lib_package \ + luajit/src/lib_string \ + luajit/src/lib_table \ + luajit/src/lj_alloc \ + luajit/src/lj_api \ + luajit/src/lj_asm \ + luajit/src/lj_bc \ + luajit/src/lj_bcread \ + luajit/src/lj_bcwrite \ + luajit/src/lj_carith \ + luajit/src/lj_ccall \ + luajit/src/lj_ccallback \ + luajit/src/lj_cconv \ + luajit/src/lj_cdata \ + luajit/src/lj_char \ + luajit/src/lj_clib \ + luajit/src/lj_cparse \ + luajit/src/lj_crecord \ + luajit/src/lj_ctype \ + luajit/src/lj_debug \ + luajit/src/lj_dispatch \ + luajit/src/lj_err \ + luajit/src/lj_ffrecord \ + luajit/src/lj_func \ + luajit/src/lj_gc \ + luajit/src/lj_gdbjit \ + luajit/src/lj_ir \ + luajit/src/lj_lex \ + luajit/src/lj_lib \ + luajit/src/lj_load \ + luajit/src/lj_mcode \ + luajit/src/lj_meta \ + luajit/src/lj_obj \ + luajit/src/lj_opt_dce \ + luajit/src/lj_opt_fold \ + luajit/src/lj_opt_loop \ + luajit/src/lj_opt_mem \ + luajit/src/lj_opt_narrow \ + luajit/src/lj_opt_sink \ + luajit/src/lj_opt_split \ + luajit/src/lj_parse \ + luajit/src/lj_record \ + luajit/src/lj_snap \ + luajit/src/lj_state \ + luajit/src/lj_str \ + luajit/src/lj_strscan \ + luajit/src/lj_tab \ + luajit/src/lj_trace \ + luajit/src/lj_udata \ + luajit/src/lj_vmevent \ + luajit/src/lj_vmmath \ + luajit/src/lj_buf \ + luajit/src/lj_strfmt \ + luajit/src/lj_strfmt_num \ + luajit/src/lj_profile # asm files ifeq ($(PLAT),windows) diff --git a/core/src/luajit/xmake.lua b/core/src/luajit/xmake.lua index ee099019c..ccf385cc9 100644 --- a/core/src/luajit/xmake.lua +++ b/core/src/luajit/xmake.lua @@ -21,14 +21,14 @@ target("luajit") end -- add header files - add_headerfiles("repo/src/(*.h)") + add_headerfiles("luajit/src/(*.h)") -- add include directories add_includedirs(autogendir) - add_includedirs("repo/src", {public = true}) + add_includedirs("luajit/src", {public = true}) -- add the common source files - add_files("repo/src/*.c|ljamalg.c|luajit.c") + add_files("luajit/src/*.c|ljamalg.c|luajit.c") if is_plat("windows") then add_files(autogendir .. "/lj_vm.obj") else |
