diff options
Diffstat (limited to 'mjit_compile.c')
-rw-r--r-- | mjit_compile.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mjit_compile.c b/mjit_compile.c index 3155ef2c84..69fc8947d8 100644 --- a/mjit_compile.c +++ b/mjit_compile.c @@ -137,6 +137,9 @@ mjit_compile(FILE *f, const struct rb_iseq_constant_body *body, const char *func status.success = TRUE; status.compiled_for_pos = ZALLOC_N(int, body->iseq_size); +#ifdef _WIN32 + fprintf(f, "__declspec(dllexport)\n"); +#endif fprintf(f, "VALUE\n%s(rb_execution_context_t *ec, rb_control_frame_t *reg_cfp)\n{\n", funcname); fprintf(f, " VALUE *stack = reg_cfp->sp;\n"); |