-
Notifications
You must be signed in to change notification settings - Fork 126
/
build.rs
219 lines (188 loc) · 7.31 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
216
217
218
219
use std::iter::once;
use anyhow::*;
use common::*;
use embuild::bindgen::types::callbacks::{IntKind, ParseCallbacks};
use embuild::bindgen::BindgenExt;
use embuild::utils::OsStrExt;
use embuild::{bindgen as bindgen_utils, build, cargo, kconfig, path_buf};
mod common;
mod config;
// Features `native` and `pio` control whether the build is performed using the "native" ESP IDF CMake-based build,
// or via the PlatformIO `espressif32` module. They work as follows:
// - If neither the `native` nor the `pio` feature is specified, native build would be used
// - If boththe `native` and `pio` features are specified, native build would be used as well
// - Otherwise, either native or PlatformIO build would be used, depending on which feature is specified
//
// The sole reason why the `native` feature exists in the first place is so that if somebody uses `cargo check --all-features`
// (might happen due to VSCode Rust Analyzer default settings) native build to still be used in that case.
#[cfg(any(feature = "native", not(feature = "pio")))]
mod native;
#[cfg(all(not(feature = "native"), feature = "pio"))]
mod pio;
#[cfg(any(feature = "native", not(feature = "pio")))]
use native as build_driver;
#[cfg(all(not(feature = "native"), 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
)
})?
.to_lowercase();
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: embuild::bindgen::types::Builder| {
Ok(bindgen
.parse_callbacks(Box::new(BindgenCallbacks))
.use_core()
.enable_function_attribute_detection()
.clang_arg("-DESP_PLATFORM")
.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")
.blocklist_type("pcnt_unit_t") // Fix for struct pcnt_unit_t vs enum pcnt_unit_t
.clang_args(build_output.components.clang_args())
.clang_args(vec![
"-target",
if mcu != "esp32" && mcu != "esp32s2" && mcu != "esp32s3" {
// 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(any(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()?)?
.path_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(any(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()?)?
.path_headers(headers.into_iter().inspect(|h| cargo::track_file(h)))?
.generate()?;
writeln!(
&mut output_file,
"pub mod {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 access to the ESP-IDF SDK
cargo::set_metadata(
embuild::build::ESP_IDF_PATH_VAR,
build_output.esp_idf.try_to_str()?,
);
if let Some(link_args) = build_output.link_args {
link_args.propagate();
// Only necessary for building the examples
link_args.output();
}
Ok(())
}