mirror of
https://github.com/LuaJIT/LuaJIT.git
synced 2025-02-08 07:34:07 +00:00
MIPS: Fix build failures and warnings.
This commit is contained in:
parent
56fe899a06
commit
384ce2f9ef
@ -162,8 +162,8 @@ lj_opt_narrow.o: lj_opt_narrow.c lj_obj.h lua.h luaconf.h lj_def.h \
|
|||||||
lj_opt_sink.o: lj_opt_sink.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \
|
lj_opt_sink.o: lj_opt_sink.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \
|
||||||
lj_ir.h lj_jit.h lj_iropt.h lj_target.h lj_target_*.h
|
lj_ir.h lj_jit.h lj_iropt.h lj_target.h lj_target_*.h
|
||||||
lj_opt_split.o: lj_opt_split.c lj_obj.h lua.h luaconf.h lj_def.h \
|
lj_opt_split.o: lj_opt_split.c lj_obj.h lua.h luaconf.h lj_def.h \
|
||||||
lj_arch.h lj_err.h lj_errmsg.h lj_buf.h lj_gc.h lj_str.h lj_dispatch.h \
|
lj_arch.h lj_err.h lj_errmsg.h lj_buf.h lj_gc.h lj_str.h lj_ir.h \
|
||||||
lj_bc.h lj_jit.h lj_ir.h lj_ircall.h lj_iropt.h lj_vm.h
|
lj_jit.h lj_ircall.h lj_iropt.h lj_dispatch.h lj_bc.h lj_vm.h
|
||||||
lj_parse.o: lj_parse.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \
|
lj_parse.o: lj_parse.c lj_obj.h lua.h luaconf.h lj_def.h lj_arch.h \
|
||||||
lj_gc.h lj_err.h lj_errmsg.h lj_debug.h lj_buf.h lj_str.h lj_tab.h \
|
lj_gc.h lj_err.h lj_errmsg.h lj_debug.h lj_buf.h lj_str.h lj_tab.h \
|
||||||
lj_func.h lj_state.h lj_bc.h lj_ctype.h lj_strfmt.h lj_lex.h lj_parse.h \
|
lj_func.h lj_state.h lj_bc.h lj_ctype.h lj_strfmt.h lj_lex.h lj_parse.h \
|
||||||
|
@ -428,11 +428,11 @@
|
|||||||
#error "No support for PPC/e500 anymore (use LuaJIT 2.0)"
|
#error "No support for PPC/e500 anymore (use LuaJIT 2.0)"
|
||||||
#endif
|
#endif
|
||||||
#elif LJ_TARGET_MIPS32
|
#elif LJ_TARGET_MIPS32
|
||||||
#if _MIPS_SIM != _MIPS_SIM_ABI32
|
#if !((defined(_MIPS_SIM_ABI32) && _MIPS_SIM == _MIPS_SIM_ABI32) || (defined(_ABIO32) && _MIPS_SIM == _ABIO32))
|
||||||
#error "Only o32 ABI supported for MIPS32"
|
#error "Only o32 ABI supported for MIPS32"
|
||||||
#endif
|
#endif
|
||||||
#elif LJ_TARGET_MIPS64
|
#elif LJ_TARGET_MIPS64
|
||||||
#if _MIPS_SIM != _MIPS_SIM_ABI64
|
#if !((defined(_MIPS_SIM_ABI64) && _MIPS_SIM == _MIPS_SIM_ABI64) || (defined(_ABI64) && _MIPS_SIM == _ABI64))
|
||||||
#error "Only n64 ABI supported for MIPS64"
|
#error "Only n64 ABI supported for MIPS64"
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
@ -12,11 +12,11 @@
|
|||||||
|
|
||||||
#include "lj_err.h"
|
#include "lj_err.h"
|
||||||
#include "lj_buf.h"
|
#include "lj_buf.h"
|
||||||
#include "lj_dispatch.h"
|
|
||||||
#include "lj_ir.h"
|
#include "lj_ir.h"
|
||||||
#include "lj_jit.h"
|
#include "lj_jit.h"
|
||||||
#include "lj_ircall.h"
|
#include "lj_ircall.h"
|
||||||
#include "lj_iropt.h"
|
#include "lj_iropt.h"
|
||||||
|
#include "lj_dispatch.h"
|
||||||
#include "lj_vm.h"
|
#include "lj_vm.h"
|
||||||
|
|
||||||
/* SPLIT pass:
|
/* SPLIT pass:
|
||||||
|
Loading…
Reference in New Issue
Block a user