<corecode[m]>
yes, the problem is that I can't group them
<corecode[m]>
I'll try putting them in a group in the linker script
<JamesMunns[m]>
hmm, with RUSTFLAGS you should be able to pass multiple linker flags, which would allow you to pass start-group, your list of libs, then end group?
<JamesMunns[m]>
I haven't tried that specifically tho
<corecode[m]>
i guess i could, but then i have to manually copy all this library stuff from my system crate to the binary crate
<corecode[m]>
this is dozens of libs, and it's sort of dynamic (can be changed based on a config file)
<corecode[m]>
seems that the group in the linker script worked
Noah[m] has joined #rust-embedded
<Noah[m]>
Who's at fosdem? :)
MarcTrius[m] has quit [Quit: Idle timeout reached: 172800s]
<danielb[m]>
At least they say they dont sell to underage
mark_great[m]1 has left #rust-embedded [#rust-embedded]
<Noah[m]>
Yeah I :D I wanted to ban and realized this is not the probe-rs room so I am a lowly IC :D
PeterKrull[m] has quit [Quit: Idle timeout reached: 172800s]
uset18080[m] has joined #rust-embedded
<uset18080[m]>
降低室内
<uset18080[m]>
不今生今世
uset18080[m] has left #rust-embedded [#rust-embedded]
<cr1901>
thejpster[m]: Yea I tried that and couldn't see any GP accesses in the final binary. Maybe the binary is too small (or -Oz inhibits it)
realroot[m]1 has joined #rust-embedded
<realroot[m]1>
lulf how is going watchful bootloader?
<realroot[m]1>
i am thinking to seal my pinetime so i can use it when there is some rain etc.
<cr1901>
thejpster[m]: Why might I get "Error: failed to demangle defmt symbol `_sgot`: expected value at line 1 column 1" when running defmt-print on an ELF file?
<cr1901>
Ahhh hmm... defmt didn't put things into the correct section
<cr1901>
or maybe it did and I just haven't dug deeply enough
<cr1901>
Okay nevermind I got it. Apparently -Tdefmt.x has to come _before_ -Tlink.x. Huh.
<cr1901>
defmt works on msp430
<thejpster[m]>
I don’t think the ordering matters on cortex-m. But we might make assumptions about region names and/or output section names.
<thejpster[m]>
Cool to hear it works though.
judge[m] has joined #rust-embedded
<judge[m]>
Hey guys … any recommendations for an async webserver crate that works with embassy_net?
Koen[m] has joined #rust-embedded
<Koen[m]>
judge: we went with Picoserve for a PoC
<judge[m]>
Koen: thx, I will take a look, I really don't need anything fancy just some thing small to handle a route to export some prometheus metrics ;)