From d3005434078b50a7e4571da73623c70788611fc6 Mon Sep 17 00:00:00 2001 From: Simon Gellis Date: Thu, 14 Nov 2024 21:02:56 -0500 Subject: [PATCH] Small performance improvements --- build.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build.rs b/build.rs index 697e46e..ab23bf9 100644 --- a/build.rs +++ b/build.rs @@ -6,6 +6,9 @@ fn main() { .include(Path::new("shrooms-vb-core/core")) .opt_level(2) .flag_if_supported("-fno-strict-aliasing") + .define("VB_LITTLE_ENDIAN", None) + .define("VB_SIGNED_PROPAGATE", None) + .define("VB_DIV_GENERIC", None) .file(Path::new("shrooms-vb-core/core/vb.c")) .compile("vb"); }