* silly question: suppose cargo/rust prints that you have 11 linker errors but it only shows the first 3 linker errors (part of bringup on a MCU) it says "see output for more details" I don't see any log files in target (I'd really like to see the list of all 11 error instances for certain reasons) ``` rust-lld: error: undefined symbol: something_something >>> referenced by someplace.c:797 (someplace:797) >>> blah.elf:(blorp_callback) >>> referenced by someplacesomeplace.c:797 (someplacesomeplace.c:797) >>> blah.elf:(blorp_callback) >>> referenced by someplacesomeplacesomeplace.c:535 (someplacesomeplacesomeplace.c:535) >>> blah.elf:(blorp_callback) >>> referenced 11 more times Error: command failed, see output for details ``` Is there some way to get it to print all 11 (or is there a log someplace where it might have saved it?)