diff options
author | Mike Pall <mike> | 2011-12-15 20:39:30 +0100 |
---|---|---|
committer | Mike Pall <mike> | 2011-12-15 20:39:30 +0100 |
commit | b330b468b3f37bd0b11765524548dbdbb1dd1a95 (patch) | |
tree | 2e836bc9c7b5c688c5ecd2b883f3894580d85f29 /src/buildvm.c | |
parent | b61be299c9fc00e8d2252fa3f12c6005686783d6 (diff) | |
download | luajit-b330b468b3f37bd0b11765524548dbdbb1dd1a95.tar.gz luajit-b330b468b3f37bd0b11765524548dbdbb1dd1a95.tar.bz2 luajit-b330b468b3f37bd0b11765524548dbdbb1dd1a95.zip |
MIPS: Add build rules (non-functional, yet).
Diffstat (limited to 'src/buildvm.c')
-rw-r--r-- | src/buildvm.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/buildvm.c b/src/buildvm.c index 3e5d7b1c..43e6d88b 100644 --- a/src/buildvm.c +++ b/src/buildvm.c | |||
@@ -74,6 +74,9 @@ static int collect_reloc(BuildCtx *ctx, uint8_t *addr, int idx, int type); | |||
74 | #elif LJ_TARGET_PPCSPE | 74 | #elif LJ_TARGET_PPCSPE |
75 | #include "../dynasm/dasm_ppc.h" | 75 | #include "../dynasm/dasm_ppc.h" |
76 | #include "buildvm_ppcspe.h" | 76 | #include "buildvm_ppcspe.h" |
77 | #elif LJ_TARGET_MIPS | ||
78 | #include "../dynasm/dasm_mips.h" | ||
79 | #include "buildvm_mips.h" | ||
77 | #else | 80 | #else |
78 | #error "No support for this architecture (yet)" | 81 | #error "No support for this architecture (yet)" |
79 | #endif | 82 | #endif |