We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
-Tembedded-test.x
1 parent 010a2be commit eed8a44Copy full SHA for eed8a44
CHANGELOG.md
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
9
10
### Fixed
11
12
+- Ensure `embedded-test.x` is only augmenting the linker scripts
13
- Make `std` enable `serde-json-core`'s `heapless` feature
14
15
## [0.6.2]
examples/std/build.rs
@@ -2,7 +2,7 @@ use std::env;
2
3
fn main() {
4
// add linker script for embedded-test!!
5
- println!("cargo::rustc-link-arg-tests=../../embedded-test.x");
+ println!("cargo::rustc-link-arg-tests=-Tembedded-test.x");
6
7
// Check if the `defmt` feature is enabled, and if so link its linker script
8
if env::var("CARGO_FEATURE_DEFMT").is_ok() {
0 commit comments