-
Notifications
You must be signed in to change notification settings - Fork 90
/
build.rs
30 lines (28 loc) · 1.18 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
use std::env;
fn main() -> Result<(), Box<dyn std::error::Error>> {
println!("cargo:rerun-if-changed=proto");
println!("cargo:rerun-if-changed=src/asm");
tonic_build::configure()
.build_server(false)
// .type_attribute(".", "#[derive(Debug)]")
.compile(
&["proto/rpc.proto", "proto/p2p.proto", "proto/messages.proto"],
&["proto"],
)?;
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap();
let target_env = env::var("CARGO_CFG_TARGET_ENV").unwrap();
if target_arch == "x86_64" {
let mut builder = cc::Build::new();
builder.flag("-c");
match target_os.as_str() {
"macos" => builder.file("src/asm/keccakf1600_x86-64-osx.s"),
"linux" => builder.file("src/asm/keccakf1600_x86-64-elf.s"),
"windows" if target_env == "gnu" => builder.file("src/asm/keccakf1600_x86-64-mingw64.s"),
"windows" if target_env == "msvc" => builder.file("src/asm/keccakf1600_x86-64-msvc.asm"),
_ => unimplemented!("Unsupported OS"),
};
builder.compile("libkeccak.a");
}
Ok(())
}