summaryrefslogtreecommitdiff
path: root/tests/memory.rs
diff options
context:
space:
mode:
authorAlex Orlenko <zxteam@protonmail.com>2020-01-25 19:25:55 +0000
committerAlex Orlenko <zxteam@protonmail.com>2020-01-25 20:47:31 +0000
commit07fc4642ae9d6c9a33ae32c6a3f6bfc9fae815a8 (patch)
tree0cb82d7a310b21af477a985b289a32048c29f5d4 /tests/memory.rs
parent27121c779dbe3758f27084d7af838e6a348f5dd2 (diff)
downloadmlua-07fc4642ae9d6c9a33ae32c6a3f6bfc9fae815a8.zip
Support vendored versions of Lua and LuaJIT
Diffstat (limited to 'tests/memory.rs')
-rw-r--r--tests/memory.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/memory.rs b/tests/memory.rs
index 53c08bd..cf67c18 100644
--- a/tests/memory.rs
+++ b/tests/memory.rs
@@ -1,14 +1,3 @@
-#![cfg_attr(
- all(feature = "luajit", target_os = "macos", target_arch = "x86_64"),
- feature(link_args)
-)]
-
-#[cfg_attr(
- all(feature = "luajit", target_os = "macos", target_arch = "x86_64"),
- link_args = "-pagezero_size 10000 -image_base 100000000"
-)]
-extern "system" {}
-
use std::sync::Arc;
use mlua::{Lua, Result, UserData};