From 14c5a68be5bffdd42d81ad5d16fc40f32c6812d8 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Fri, 11 Jul 2025 22:28:25 -0400 Subject: [PATCH] Make link search path added in build script more explicit Doesn't fix our doctest issue, but we should probably do this anyway. --- build.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build.rs b/build.rs index b7ad54b..3af451a 100644 --- a/build.rs +++ b/build.rs @@ -4,7 +4,10 @@ use serde_json::Value; fn main() { // Add link search directory for Oodle - println!("cargo:rustc-link-search=./oodle"); + println!( + "cargo:rustc-link-search={}/oodle", + env!("CARGO_MANIFEST_DIR") + ); // Generate IPC opcodes {