From 0f5bdf7c101ef9b60481b6734a8e3ee2a3048fef Mon Sep 17 00:00:00 2001 From: Gaute Hope Date: Thu, 29 Aug 2024 10:41:08 +0200 Subject: [PATCH] rm libstdc++ --- Cargo.toml | 1 - src/lib.rs | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4736473..0b159c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,6 @@ name = "make_bitmap" path = "src/devel/make_bitmap.rs" [dependencies] -link-cplusplus = { version = "1.0", features = ["libstdc++"] } geos = { version = "9" } lazy_static = "1.4" numpy = { version = "0.21" } diff --git a/src/lib.rs b/src/lib.rs index 7016a04..d380fc8 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -64,7 +64,7 @@ extern crate lazy_static; // geos-sys needs libc++, probably libstdc++. On Windows Conda builds this hopefully adds the // correct flags to the linker. -extern crate link_cplusplus; +// extern crate link_cplusplus; use numpy::{PyArray, PyReadonlyArrayDyn}; use pyo3::prelude::*;