ESP32: erzeugen einer map-Datei unter Linux und der Arduino IDE

Ich möchte, daß beim compile auch eine map Datei erzeugt wird.
hier steht,
https://everythingesp.com/esp32-arduino-creating-a-memory-map-file/
daß man in der platforms.txt bei " ## Combine gc-sections, archives, and objects"
dies einfügen muss:

-Map=arduino.map -Wl

Hab es mal wie folgt eingefügt, ich kann aber nach dem compile im build Verzeichnis keine map Datei finden

## Combine gc-sections, archives, and objects
recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} {compiler.c.elf.extra_flags} {compiler.libraries.ldflags} -Wl,--start-group {object_files} "{archive_file_path}" {compiler.c.elf.libs} {build.extra_libs} -Wl,-Map=arduino.map -Wl,--end-group -Wl,-EL -o "{build.path}/{build.project_name}.elf"

Hat jemand eine Idee was da nicht passt?

hat sich mittlerweile erledigt.
Hab die map Datei im Sketchordner gefunden

This topic was automatically closed 120 days after the last reply. New replies are no longer allowed.