forked from esp-rs/esp-idf-sys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
215 lines (184 loc) · 6.89 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
#[cfg(not(any(feature = "pio", feature = "native")))]
compile_error!("One of the features `pio` or `native` must be selected.");
use std::iter::once;
use anyhow::*;
use bindgen::callbacks::{IntKind, ParseCallbacks};
use common::*;
use embuild::bindgen::BindgenExt;
use embuild::utils::OsStrExt;
use embuild::{bindgen as bindgen_utils, build, cargo, kconfig, path_buf};
mod common;
mod config;
#[cfg(feature = "native")]
mod native;
#[cfg(feature = "pio")]
mod pio;
// Note that the first alias must exclude the `pio` feature, so that in the event both
// features are specified the `pio` build driver is preferred.
// The `native` and `pio` features are really mutually exclusive but that would require
// that all dependencies specify the same feature so instead we prefer the `pio` feature
// over `native` so that if one package specifies it, this overrides the `native` feature
// for all other dependencies too.
// See https://doc.rust-lang.org/cargo/reference/features.html#mutually-exclusive-features.
#[cfg(all(feature = "native", not(feature = "pio")))]
use native as build_driver;
#[cfg(feature = "pio")]
use pio as build_driver;
#[derive(Debug)]
struct BindgenCallbacks;
impl ParseCallbacks for BindgenCallbacks {
fn int_macro(&self, name: &str, _value: i64) -> Option<IntKind> {
// Make sure the ESP_ERR_*, ESP_OK and ESP_FAIL macros are all i32.
const PREFIX: &str = "ESP_";
const SUFFIX: &str = "ERR_";
const SUFFIX_SPECIAL: [&str; 2] = ["OK", "FAIL"];
let name = name.strip_prefix(PREFIX)?;
if name.starts_with(SUFFIX) || SUFFIX_SPECIAL.iter().any(|&s| name == s) {
Some(IntKind::I32)
} else {
None
}
}
}
fn main() -> anyhow::Result<()> {
let build_output = build_driver::build()?;
// We need to restrict the kconfig parameters which are turned into rustc cfg items
// because otherwise we would be hitting rustc command line restrictions on Windows
//
// For now, we take all tristate parameters which are set to true, as well as a few
// selected string ones, as per below
//
// This might change in future
let kconfig_str_allow = regex::Regex::new(r"IDF_TARGET")?;
let cfg_args = build::CfgArgs {
args: build_output
.kconfig_args
.filter(|(key, value)| {
matches!(value, kconfig::Value::Tristate(kconfig::Tristate::True))
|| kconfig_str_allow.is_match(key)
})
.filter_map(|(key, value)| value.to_rustc_cfg("esp_idf", key))
.collect(),
};
let mcu = cfg_args.get("esp_idf_idf_target").ok_or_else(|| {
anyhow!(
"Failed to get IDF_TARGET from kconfig. cfgs:\n{:?}",
cfg_args.args
)
})?;
let manifest_dir = manifest_dir()?;
let header_file = path_buf![
&manifest_dir,
"src",
"include",
if mcu == "esp8266" {
"esp-8266-rtos-sdk"
} else {
"esp-idf"
},
"bindings.h"
];
cargo::track_file(&header_file);
// Because we have multiple bindgen invocations and we can't clone a bindgen::Builder,
// we have to set the options every time.
let configure_bindgen = |bindgen: bindgen::Builder| {
Ok(bindgen
.parse_callbacks(Box::new(BindgenCallbacks))
.ctypes_prefix("c_types")
.blocklist_function("strtold")
.blocklist_function("_strtold_r")
.blocklist_function("v.*printf")
.blocklist_function("v.*scanf")
.blocklist_function("_v.*printf_r")
.blocklist_function("_v.*scanf_r")
.blocklist_function("esp_log_writev")
.clang_args(build_output.components.clang_args())
.clang_args(vec![
"-target",
if mcu == "esp32c3" {
// Necessary to pass explicitly, because of https://github.com/rust-lang/rust-bindgen/issues/1555
"riscv32"
} else {
// We don't really have a similar issue with Xtensa, but we pass it explicitly as well just in case
"xtensa"
},
]))
};
let bindings_file = bindgen_utils::default_bindings_file()?;
let bindgen_err = || {
anyhow!(
"failed to generate bindings in file '{}'",
bindings_file.display()
)
};
#[allow(unused_mut)]
let mut headers = vec![header_file];
#[cfg(all(feature = "native", not(feature = "pio")))]
// Add additional headers from extra components.
headers.extend(
build_output
.config
.native
.combined_bindings_headers()?
.into_iter()
.inspect(|h| cargo::track_file(h)),
);
configure_bindgen(build_output.bindgen.clone().builder()?)?
.headers(headers)?
.generate()
.with_context(bindgen_err)?
.write_to_file(&bindings_file)
.with_context(bindgen_err)?;
// Generate bindings separately for each unique module name.
#[cfg(all(feature = "native", not(feature = "pio")))]
(|| {
use std::fs;
use std::io::{BufWriter, Write};
let mut output_file =
BufWriter::new(fs::File::options().append(true).open(&bindings_file)?);
for (module_name, headers) in build_output.config.native.module_bindings_headers()? {
let bindings = configure_bindgen(build_output.bindgen.clone().builder()?)?
.headers(headers.into_iter().inspect(|h| cargo::track_file(h)))?
.generate()?;
writeln!(
&mut output_file,
"pub mod {} {{\
use crate::c_types;\
{}\
}}",
module_name, bindings
)?;
}
Ok(())
})()
.with_context(bindgen_err)?;
// Cargo fmt generated bindings.
bindgen_utils::cargo_fmt_file(&bindings_file);
let cfg_args = build::CfgArgs {
args: cfg_args
.args
.into_iter()
.chain(EspIdfVersion::parse(bindings_file)?.cfg_args())
.chain(build_output.components.cfg_args())
.chain(once(mcu))
.collect(),
};
cfg_args.propagate();
cfg_args.output();
// In case other crates need to have access to the ESP-IDF C headers
build_output.cincl_args.propagate();
// In case other crates need to have access to the ESP-IDF toolchains
if let Some(env_path) = build_output.env_path {
cargo::set_metadata(embuild::build::ENV_PATH_VAR, env_path);
}
// In case other crates need to the ESP-IDF SDK
cargo::set_metadata(
embuild::build::ESP_IDF_PATH_VAR,
build_output.esp_idf.try_to_str()?,
);
build_output.cincl_args.propagate();
if let Some(link_args) = build_output.link_args {
link_args.propagate();
}
Ok(())
}