From 862618f9a8fe3a9e444b05bb285a23c145b494b6 Mon Sep 17 00:00:00 2001 From: Salim B Date: Sun, 12 Jul 2026 23:56:34 +0200 Subject: [PATCH] fix: cross-compilation for `lemon` generator Force the `cc` crate to ignore cross-compilation environment variables and use the host's native compiler and architecture settings. --- vendored/sqlite3-parser/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vendored/sqlite3-parser/build.rs b/vendored/sqlite3-parser/build.rs index 1ec389e180..bf193fe486 100644 --- a/vendored/sqlite3-parser/build.rs +++ b/vendored/sqlite3-parser/build.rs @@ -18,7 +18,7 @@ fn main() -> Result<()> { // compile rlemon: { assert!(Build::new() - .target(&env::var("HOST").unwrap()) + .host(&env::var("HOST").unwrap()) .get_compiler() .to_command() .arg("-o")