Files
mruby-mruby/include/mruby
Yukihiro "Matz" Matsumoto 7deb41b0e8 Generate C source file to represent mrb_irep structures.
Type `mrbc -S -B<init> -o<outfile> <rbfiles...>` to generate the C
source code that holds compiled `mrb_irep`.

Appending the following code to the bottom of the generated code,
`mruby` executes the compiled code:

```C
int
main()
{
  mrb_state *mrb = mrb_open();
  struct RProc *p = mrb_proc_new(mrb, &init_irep);
  mrb_vm_run(mrb, p, mrb_top_self(mrb), 0);
  mrb_close(mrb);
  return 0;
}
```

Eventually static compile should use this representation, instead
of `uint8_t` array that holds `mrb` data, so that we can skip
interpreting `mrb` data.
2020-10-12 16:21:09 +09:00
..
2020-10-12 16:21:08 +09:00
2020-10-12 16:21:08 +09:00
2020-10-12 16:21:08 +09:00
2020-10-12 16:21:03 +09:00
2020-10-12 16:21:08 +09:00
2020-10-12 16:20:41 +09:00
2019-12-13 04:41:43 +09:00
2020-07-31 18:14:02 +09:00
2019-08-18 20:12:44 +09:00
2020-10-12 16:21:03 +09:00
2019-08-18 20:12:44 +09:00
2019-08-18 20:12:44 +09:00
2020-10-12 16:21:08 +09:00
2019-08-18 20:12:44 +09:00
2020-08-06 12:45:59 +09:00