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.
1 parent 2e8a7d6 commit 003eb36Copy full SHA for 003eb36
.cargo/config.toml
@@ -23,14 +23,12 @@ target = "thumbv6m-none-eabi"
23
# script. This is usually provided by the cortex-m-rt crate, and by default
24
# the version in that crate will include a file called `memory.x` which
25
# describes the particular memory layout for your specific chip.
26
-# * inline-threshold=5 makes the compiler more aggressive and inlining functions
27
# * no-vectorize-loops turns off the loop vectorizer (seeing as the M0+ doesn't
28
# have SIMD)
29
rustflags = [
30
"-C", "link-arg=--nmagic",
31
"-C", "link-arg=-Tlink.x",
32
"-C", "link-arg=-Tdefmt.x",
33
- "-C", "inline-threshold=5",
34
"-C", "no-vectorize-loops",
35
]
36
0 commit comments