0

C で使用するために mruby をセットアップしようとしてきましたが、単純な "hello world" の例をコンパイルするだけで成功しました。他の例はコンパイルされません: https://github.com/mruby/mruby/blob/master/tools/mrbc/mrbc.cをコンパイルしようとすると、次のようになります:

gcc -Iinclude hello.c libmruby_core.a libmruby.a -lm -o hello
hello.c: In function ‘parse_args’:
hello.c:119:24: error: ‘DUMP_DEBUG_INFO’ undeclared (first use in this function)
         args->flags |= DUMP_DEBUG_INFO;
                        ^
hello.c:119:24: note: each undeclared identifier is reported only once for each function it appears in
hello.c:122:23: error: ‘DUMP_ENDIAN_BIG’ undeclared (first use in this function)
         args->flags = DUMP_ENDIAN_BIG | (args->flags & DUMP_DEBUG_INFO);
                       ^
hello.c:125:23: error: ‘DUMP_ENDIAN_LIL’ undeclared (first use in this function)
         args->flags = DUMP_ENDIAN_LIL | (args->flags & DUMP_DEBUG_INFO);
                       ^
hello.c:154:57: error: ‘DUMP_ENDIAN_MASK’ undeclared (first use in this function)
   if (args->verbose && args->initname && (args->flags & DUMP_ENDIAN_MASK) == 0) {

http://matt.aimonetti.net/posts/2012/04/25/getting-started-with-mruby/から「より複雑な例」をコンパイルしようとすると、彼らが提案する方法で ( gcc -Iinclude hello.c lib/libmruby.a -lm -o hello.out) (実際には:同様の方法. 私は両方の方法を試しました.) 私はこれを得ます:

gcc -Iinclude hello.c libmruby.a -lm -o hellohello.c: In function ‘main’:
hello.c:17:7: error: too few arguments to function ‘mrb_parse_string’
   p = mrb_parse_string(mrb, code);
       ^
In file included from /home/neo/Projects/MrubyHs/mruby-1.1.0/include/mruby/irep.h:14:0,
                 from /home/neo/Projects/MrubyHs/mruby-1.1.0/include/mruby/proc.h:10,
                 from hello.c:6:
/home/neo/Projects/MrubyHs/mruby-1.1.0/include/mruby/compile.h:170:34: note: declared here
 MRB_API struct mrb_parser_state* mrb_parse_string(mrb_state*,const char*,mrbc_context*);
                                  ^
hello.c:19:5: warning: assignment makes integer from pointer without a cast
   n = mrb_generate_code(mrb, p);
     ^
hello.c:20:37: error: ‘mrb_state’ has no member named ‘irep’
   mrb_run(mrb, mrb_proc_new(mrb, mrb->irep[n]), mrb_top_self(mrb));
                                     ^

ファイルか何かが不足しているように見えますが、何がわかりません。mruby 1.1.0 を使用しています。mrbconf.h、mruby.h、および gcc 検索パスにフォルダー mruby を含む mruby-1.1.0/include があり、LIBRARY_PATH に mruby-1.1.0/build/host/lib があります (私の例では何がうまくいかなかったのか、コンパイルしている場所と同じフォルダーに入れただけです)。

インストールの何が問題なのか、および/またはどのようにコンパイルしているのか、何か考えはありますか?

4

1 に答える 1