2015-10-26 15:21:01 +00:00
|
|
|
// Bitcoin secp256k1 bindings
|
|
|
|
// Written in 2015 by
|
|
|
|
// Andrew Poelstra
|
|
|
|
//
|
|
|
|
// To the extent possible under law, the author(s) have dedicated all
|
|
|
|
// copyright and related and neighboring rights to this software to
|
|
|
|
// the public domain worldwide. This software is distributed without
|
|
|
|
// any warranty.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the CC0 Public Domain Dedication
|
|
|
|
// along with this software.
|
|
|
|
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
//! # Build script
|
|
|
|
|
|
|
|
// Coding conventions
|
|
|
|
#![deny(non_upper_case_globals)]
|
|
|
|
#![deny(non_camel_case_types)]
|
|
|
|
#![deny(non_snake_case)]
|
|
|
|
#![deny(unused_mut)]
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
|
2018-07-30 02:53:20 +00:00
|
|
|
extern crate cc;
|
2015-10-26 15:21:01 +00:00
|
|
|
|
2018-08-21 18:41:42 +00:00
|
|
|
use std::io::{self, Write};
|
|
|
|
|
2015-10-26 15:21:01 +00:00
|
|
|
fn main() {
|
2018-07-30 03:11:43 +00:00
|
|
|
// Check whether we can use 64-bit compilation
|
|
|
|
#[cfg(target_pointer_width = "64")]
|
|
|
|
let use_64bit_compilation = {
|
2018-08-21 18:41:42 +00:00
|
|
|
let check = cc::Build::new().file("depend/check_uint128_t.c")
|
|
|
|
.cargo_metadata(false)
|
|
|
|
.try_compile("check_uint128_t")
|
|
|
|
.is_ok();
|
|
|
|
if !check {
|
|
|
|
writeln!(
|
|
|
|
&mut io::stderr(),
|
|
|
|
"Warning: Compiling in 32-bit mode on a 64-bit architecture due to lack of uint128_t support."
|
|
|
|
).expect("print to stderr")
|
|
|
|
}
|
|
|
|
check
|
2018-07-30 03:11:43 +00:00
|
|
|
};
|
|
|
|
#[cfg(not(target_pointer_width = "64"))]
|
|
|
|
let use_64bit_compilation = false;
|
|
|
|
|
|
|
|
|
|
|
|
// Actual build
|
2018-07-30 02:53:20 +00:00
|
|
|
let mut base_config = cc::Build::new();
|
2015-10-26 17:59:40 +00:00
|
|
|
base_config.include("depend/secp256k1/")
|
2015-10-26 21:26:45 +00:00
|
|
|
.include("depend/secp256k1/include")
|
2015-10-26 17:59:40 +00:00
|
|
|
.include("depend/secp256k1/src")
|
|
|
|
.flag("-g")
|
2018-07-24 17:30:04 +00:00
|
|
|
.flag("-Wno-unused-function") // some ecmult stuff is defined but not used upstream
|
|
|
|
.define("SECP256K1_BUILD", Some("1"))
|
2015-10-26 17:59:40 +00:00
|
|
|
// 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"))
|
|
|
|
.define("USE_SCALAR_INV_BUILTIN", Some("1"))
|
|
|
|
.define("USE_ENDOMORPHISM", Some("1"))
|
|
|
|
.define("ENABLE_MODULE_ECDH", Some("1"))
|
|
|
|
.define("ENABLE_MODULE_RECOVERY", Some("1"));
|
|
|
|
|
2018-07-30 03:11:43 +00:00
|
|
|
if use_64bit_compilation {
|
|
|
|
base_config.define("USE_FIELD_5X52", Some("1"))
|
|
|
|
.define("USE_SCALAR_4X64", Some("1"))
|
|
|
|
.define("HAVE___INT128", Some("1"));
|
|
|
|
} else {
|
|
|
|
base_config.define("USE_FIELD_10X26", Some("1"))
|
|
|
|
.define("USE_SCALAR_8X32", Some("1"));
|
|
|
|
}
|
|
|
|
|
2015-10-26 17:59:40 +00:00
|
|
|
// secp256k1
|
2016-01-14 18:35:54 +00:00
|
|
|
base_config.file("depend/secp256k1/contrib/lax_der_parsing.c")
|
2015-10-26 17:59:40 +00:00
|
|
|
.file("depend/secp256k1/src/secp256k1.c")
|
|
|
|
.compile("libsecp256k1.a");
|
2015-10-26 15:21:01 +00:00
|
|
|
}
|
|
|
|
|