diff --git a/Cargo.toml b/Cargo.toml index 8f9d50e..5ed1a15 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stackalloc" -version = "1.1.1" +version = "1.1.2" homepage = "https://git.flanchan.moe/flanchan/stackalloc-rs" repository = "https://github.com/notflan/stackalloc-rs" keywords = ["alloca", "stack", "stack-allocation", "safe"] diff --git a/build.rs b/build.rs index 6b9f7de..87254ce 100644 --- a/build.rs +++ b/build.rs @@ -16,7 +16,7 @@ fn build_tramp() // Not sure if we want these two. We can check the codegen later. // .pic(false) - .use_plt(false) + // .use_plt(false) .file("alloca_trampoline_.c") .compile("calloca_trampoline");