# The architecture of your system. If your not sure, leave this alone.
ARCH="$(uname -m)"
-RUNTIME_LIBRARY="ovmwasm"
-# RUNTIME_LIBRARY="wasmer"
+# RUNTIME_LIBRARY="ovmwasm"
+RUNTIME_LIBRARY="wasmer"
# Comment this line if you do not want the above library installed,
# and do not with to have the Onyx runtime.
void onyx_wasm_module_link(OnyxWasmModule *module, OnyxWasmLinkOptions *options) {
// If the pointer size is going to change,
// the code will probably need to be altered.
- static_assert(POINTER_SIZE == 4);
+ assert(POINTER_SIZE == 4);
module->memory_min_size = options->memory_min_size;
module->memory_max_size = options->memory_max_size;