Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/redthing1/wrenvm_tests


https://github.com/redthing1/wrenvm_tests

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# wrenvm_tests

## how to build a project

install prerequisites:
+ c/c++ compiler
+ `meson`
+ `ninja`

get submodules:
```sh
git submodule update --init --recursive
```

build a demo, such as `./wrenscript`:
```sh
cd ./wrenscript
meson setup build
ninja -C build
./build/wrenscript_test
```

## how to build repro for `foreigncall` issue:

install prerequisites:
+ c/c++ compiler
+ `meson`
+ `ninja`

get submodules (wren is a submodule):
```sh
git submodule update --init --recursive
```

build a demo, such as `./foreigncall`:
```sh
cd ./foreigncall
meson setup build
ninja -C build
./build/foreigncall_test
```