From 79a1847c0235374df8ccb38e27343ec612edca01 Mon Sep 17 00:00:00 2001 From: Elichai Turkel Date: Tue, 1 Oct 2019 15:35:25 -0400 Subject: [PATCH] Remove always debug mode This is checked automatically using the DEBUG env variable --- build.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/build.rs b/build.rs index 3e11c59..c335b34 100644 --- a/build.rs +++ b/build.rs @@ -45,7 +45,6 @@ fn main() { base_config.include("depend/secp256k1/") .include("depend/secp256k1/include") .include("depend/secp256k1/src") - .debug(true) .flag_if_supported("-Wno-unused-function") // some ecmult stuff is defined but not used upstream .define("SECP256K1_BUILD", Some("1")) // TODO these three should be changed to use libgmp, at least until secp PR 290 is merged