Skip to content

Commit 8e148af

Browse files
Merge pull request #205 from rmsyn/build/robust-cfg
riscv: build: make `cfg` variables more robust
2 parents a9d3e33 + a537aa8 commit 8e148af

File tree

6 files changed

+25
-4
lines changed

6 files changed

+25
-4
lines changed

riscv-rt/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1616
- Moved all the assembly code to `asm.rs`
1717
- Use `weak` symbols for functions such as `_mp_hook` or `_start_trap`
1818
- `abort` is now `weak`, so it is possible to link third-party libraries including this symbol.
19+
- Made `cfg` variable selection more robust for custom targets
1920

2021
### Removed
2122

riscv-rt/build.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,23 @@ fn parse_target(target: &str, cargo_flags: &str) -> (u32, HashSet<char>) {
7272
}
7373

7474
fn main() {
75+
println!("cargo:rustc-check-cfg=cfg(riscv)");
76+
println!("cargo:rustc-check-cfg=cfg(riscv32)");
77+
println!("cargo:rustc-check-cfg=cfg(riscv64)");
78+
println!("cargo:rustc-check-cfg=cfg(riscvi)");
79+
println!("cargo:rustc-check-cfg=cfg(riscvm)");
80+
println!("cargo:rustc-check-cfg=cfg(riscva)");
81+
println!("cargo:rustc-check-cfg=cfg(riscvf)");
82+
println!("cargo:rustc-check-cfg=cfg(riscvd)");
83+
println!("cargo:rustc-check-cfg=cfg(riscvc)");
84+
7585
let target = env::var("TARGET").unwrap();
7686
let cargo_flags = env::var("CARGO_ENCODED_RUSTFLAGS").unwrap();
7787
let _name = env::var("CARGO_PKG_NAME").unwrap();
7888

7989
// set configuration flags depending on the target
8090
if target.starts_with("riscv") {
8191
println!("cargo:rustc-cfg=riscv");
82-
8392
// This is required until target_arch & target_feature risc-v work is
8493
// stable and in-use (rust 1.75.0)
8594
let (bits, extensions) = parse_target(&target, &cargo_flags);

riscv-semihosting/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
55

66
## [Unreleased]
77

8+
### Changed
9+
10+
- Made `cfg` variable selection more robust for custom targets
11+
812
## [v0.1.0] - 2023-01-18
913

1014
- Add recommendation for `semihosting` in README.md.

riscv-semihosting/build.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
use std::env;
22

33
fn main() {
4+
println!("cargo:rustc-check-cfg=cfg(riscv)");
5+
46
let target = env::var("TARGET").unwrap();
57

68
if target.starts_with("riscv") {

riscv/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2323
### Changed
2424

2525
- Made `asm::wfi`, `fence`, `fence_i` and `sfence` safe (ie, removed `unsafe` from their definitions)
26+
- Made `cfg` variable selection more robust for custom targets
2627

2728
## [v0.11.0] - 2024-01-14
2829

riscv/build.rs

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
use std::env;
22

33
fn main() {
4-
let target = env::var("TARGET").unwrap();
4+
println!("cargo:rustc-check-cfg=cfg(riscv)");
5+
println!("cargo:rustc-check-cfg=cfg(riscv32)");
6+
println!("cargo:rustc-check-cfg=cfg(riscv64)");
57

6-
if target.starts_with("riscv32") {
8+
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap();
9+
10+
if target_arch == "riscv32" {
711
println!("cargo:rustc-cfg=riscv");
812
println!("cargo:rustc-cfg=riscv32");
9-
} else if target.starts_with("riscv64") {
13+
} else if target_arch == "riscv64" {
1014
println!("cargo:rustc-cfg=riscv");
1115
println!("cargo:rustc-cfg=riscv64");
1216
}

0 commit comments

Comments
 (0)