Merge pull request #35 from rust-bitcoin/2018-07-secp-build-flags

build.rs: change build flags to eliminate compiler warnings
This commit is contained in:
Andrew Poelstra 2018-07-24 21:12:16 +00:00 committed by GitHub
commit 9b51ed3e2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ fn main() {
.include("depend/secp256k1/include")
.include("depend/secp256k1/src")
.flag("-g")
.flag("-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
.define("USE_NUM_NONE", Some("1"))
.define("USE_FIELD_INV_BUILTIN", Some("1"))