make the mmapped buffer configurable

This commit is contained in:
Folkert 2022-07-26 23:29:18 +02:00
parent 64c2d8d87e
commit 40d7e94a17
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C
5 changed files with 37 additions and 30 deletions

View file

@ -47,7 +47,7 @@ impl<T: Sized> From<RocCallResult<T>> for Result<T, String> {
#[macro_export]
macro_rules! run_roc_dylib {
($lib:expr, $main_fn_name:expr, $argument_type:ty, $return_type:ty, $errors:expr) => {{
($lib:expr, $main_fn_name:expr, $argument_type:ty, $return_type:ty) => {{
use inkwell::context::Context;
use roc_builtins::bitcode;
use roc_gen_llvm::run_roc::RocCallResult;