From 045c8409de739d49b3b2d68eb83987b59d2e9915 Mon Sep 17 00:00:00 2001 From: Arkadiy Paronyan Date: Wed, 11 Oct 2017 09:55:10 +0200 Subject: [PATCH] Fixed build warnings (#6664) * Fixed build warnings * Suppress warning * Suppress warning for sure --- build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.rs b/build.rs index 2370855..fe7965a 100644 --- a/build.rs +++ b/build.rs @@ -21,6 +21,6 @@ extern crate gcc; fn main() { - gcc::compile_library("libtinykeccak.a", &["src/tinykeccak.c"]); + gcc::Build::new().file("src/tinykeccak.c").compile("libtinykeccak.a"); }