diff --git a/build.rs b/build.rs index cb30ba9..e51fd26 100644 --- a/build.rs +++ b/build.rs @@ -1,4 +1,4 @@ -use std::{path::PathBuf, ffi::OsString}; +use std::path::PathBuf; // SPDX-License-Identifier: LGPL-3.0 fn v(s: &str) -> versions::Versioning { @@ -51,7 +51,7 @@ fn main() { }; eprintln!("building with NIXVER={version}"); builder.define("NIXVER", version.to_string().as_str()); - let compiler = dbg!(builder.get_compiler()); + let compiler = builder.get_compiler(); if compiler.is_like_clang() { // required for exception handling with libc++ on darwin println!("cargo:rustc-link-lib=c++abi");