From e2c38cd03a48f4354f89953a508accdf748f99ed Mon Sep 17 00:00:00 2001 From: Simon Gellis Date: Mon, 11 Nov 2024 18:14:11 -0500 Subject: [PATCH] Turn off LTO so we can use clang --- build.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/build.rs b/build.rs index 17bd565..697e46e 100644 --- a/build.rs +++ b/build.rs @@ -5,7 +5,6 @@ fn main() { cc::Build::new() .include(Path::new("shrooms-vb-core/core")) .opt_level(2) - .flag_if_supported("-flto") .flag_if_supported("-fno-strict-aliasing") .file(Path::new("shrooms-vb-core/core/vb.c")) .compile("vb");