Hi Lars, On 11/22/19 12:43 PM, Lars Eggert wrote: > at least with an ESP32, looking at the symbols of the final ELF image with > "nm --line-numbers" only shows source files and line numbers for a small > fraction of symbols. > > Any idea if it's possible to change the link script that information is > available for more (ideally, all) symbols?
Seems like on esp32, debug symbols are disabled by default. You can enable them by adding "CFLAGS += -g" to your application's Makefile. That will add the information to all code compiled from within RIOT. Kaspar _______________________________________________ users mailing list [email protected] https://lists.riot-os.org/mailman/listinfo/users
