-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from xxuejie/cleanup-work
chore: Assorted cleanup work
- Loading branch information
Showing
8 changed files
with
69 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[submodule "dl-c-impl/ckb-c-stdlib"] | ||
path = dl-c-impl/ckb-c-stdlib | ||
path = c/ckb-c-stdlib | ||
url = https://github.com/nervosnetwork/ckb-c-stdlib.git |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,77 @@ | ||
use std::env; | ||
|
||
fn main() { | ||
println!("cargo:rerun-if-changed=c/dlopen.c"); | ||
println!("cargo:rerun-if-changed=c/libc.c"); | ||
|
||
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap(); | ||
let target_os = env::var("CARGO_CFG_TARGET_OS").unwrap(); | ||
|
||
// ckb-std only supports riscv64 target arch | ||
// but we can still use cargo check under other archs | ||
if target_arch == "riscv64" && cfg!(feature = "dlopen-c") { | ||
let mut build = cc::Build::new(); | ||
build | ||
.file("dl-c-impl/lib.c") | ||
.static_flag(true) | ||
.flag("-fno-builtin-printf") | ||
.flag("-fno-builtin-memcmp") | ||
.flag("-nostdinc") | ||
.flag("-nostdlib") | ||
.flag("-fvisibility=hidden") | ||
.flag("-fdata-sections") | ||
.flag("-ffunction-sections") | ||
.include("dl-c-impl/ckb-c-stdlib") | ||
.include("dl-c-impl/ckb-c-stdlib/libc") | ||
.flag("-Wall") | ||
.flag("-Werror") | ||
.flag("-Wno-unused-parameter") | ||
.flag("-Wno-nonnull") | ||
.define("__SHARED_LIBRARY__", None); | ||
.file("c/dlopen.c") | ||
.define("CKB_DECLARATION_ONLY", None); | ||
setup_compiler_flags(&mut build); | ||
build.compile("dl-c-impl"); | ||
} | ||
|
||
if cfg!(feature = "build-with-clang") { | ||
let clang = match std::env::var_os("CLANG") { | ||
Some(val) => val, | ||
None => "clang-16".into(), | ||
}; | ||
if target_arch == "riscv64" && cfg!(feature = "libc") { | ||
let mut build = cc::Build::new(); | ||
build.file("c/libc.c").define("__SHARED_LIBRARY__", None); | ||
setup_compiler_flags(&mut build); | ||
build.compile("libc"); | ||
} | ||
} | ||
|
||
build.compiler(clang); | ||
} | ||
fn setup_compiler_flags(build: &mut cc::Build) { | ||
build | ||
.static_flag(true) | ||
.flag("-fno-builtin-printf") | ||
.flag("-fno-builtin-memcmp") | ||
.flag("-nostdinc") | ||
.flag("-nostdlib") | ||
.flag("-fvisibility=hidden") | ||
.flag("-fdata-sections") | ||
.flag("-ffunction-sections") | ||
.include("c/ckb-c-stdlib") | ||
.include("c/ckb-c-stdlib/libc") | ||
.flag("-Wall") | ||
.flag("-Werror") | ||
.flag("-Wno-unused-parameter") | ||
.flag("-Wno-nonnull"); | ||
|
||
let compiler = build.get_compiler(); | ||
if compiler.is_like_clang() { | ||
build | ||
.no_default_flags(true) | ||
.flag("--target=riscv64") | ||
.flag("-march=rv64imc_zba_zbb_zbc_zbs"); | ||
let clang = match std::env::var_os("CLANG") { | ||
Some(val) => val, | ||
None => "clang-16".into(), | ||
}; | ||
|
||
if env::var("DEBUG").map(|v| v != "false").unwrap_or(false) { | ||
build.flag("-g").flag("-fno-omit-frame-pointer"); | ||
} | ||
if cfg!(feature = "build-with-clang") { | ||
build.compiler(clang); | ||
} | ||
|
||
let opt_level = env::var("OPT_LEVEL").expect("fetching OPT_LEVEL"); | ||
if opt_level == "z" { | ||
build.flag("-Os"); | ||
} else { | ||
build.flag(&format!("-O{}", opt_level)); | ||
} | ||
} else if compiler.is_like_gnu() { | ||
build | ||
.flag("-nostartfiles") | ||
.flag("-Wno-dangling-pointer") | ||
.flag("-Wno-nonnull-compare"); | ||
} | ||
let compiler = build.get_compiler(); | ||
if compiler.is_like_clang() { | ||
build | ||
.no_default_flags(true) | ||
.flag("--target=riscv64") | ||
.flag("-march=rv64imc_zba_zbb_zbc_zbs"); | ||
|
||
build.compile("dl-c-impl"); | ||
} | ||
if env::var("DEBUG").map(|v| v != "false").unwrap_or(false) { | ||
build.flag("-g").flag("-fno-omit-frame-pointer"); | ||
} | ||
|
||
if target_arch == "riscv64" && target_os == "ckb" && cfg!(feature = "dummy-libc") { | ||
println!("cargo:rustc-link-lib=dummylibc"); | ||
let opt_level = env::var("OPT_LEVEL").expect("fetching OPT_LEVEL"); | ||
if opt_level == "z" { | ||
build.flag("-Os"); | ||
} else { | ||
build.flag(&format!("-O{}", opt_level)); | ||
} | ||
} else if compiler.is_like_gnu() { | ||
build | ||
.flag("-nostartfiles") | ||
.flag("-Wno-dangling-pointer") | ||
.flag("-Wno-nonnull-compare"); | ||
} | ||
} |
Submodule ckb-c-stdlib
added at
bdc87e
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
#include <stdlib.h> | ||
#include <string.h> | ||
#include <memory.h> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ckb-c-stdlib
deleted from
b51f9b