メモ: mruby
インストール
apt install -y \
libmruby-dev mruby
example.c
#include <stdio.h>
#include <mruby.h>
#include <mruby/compile.h>
int main(void) {
mrb_state *mrb = mrb_open();
char code[] = "5.times { puts 'mruby is awesome!' }";
printf("Executing Ruby code with mruby:\n");
mrb_load_string(mrb, code);
mrb_close(mrb);
return 0;
}
cc example.c -lmruby -lm -o example
./example
ubuntuでwindows向けにクロスコンパイル(あんまよくわかってない)
apt install -y \
mingw-w64 binutils-mingw-w64 gcc-mingw-w64 g++-mingw-w64
- 以下調査中
エラーでダメだった。
x86_64-w64-mingw32-g++ \
-I /usr/include/ \
-I /usr/include/x86_64-linux-gnu/ \
mruby.c \
-lmruby -lm \
-o example.exe
dockerを使ってクロスコンパイル
git clone "https://github.com/hone/mruby-cli"
cd mruby-cli
docker-compose run compile
mruby-cli --setup hello_world
cd hello_world
docker-compose run compile
Author And Source
この問題について(メモ: mruby), 我々は、より多くの情報をここで見つけました https://qiita.com/tukiyo3/items/e2e99d240e6c42c647c7著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .