1

How can I set the Arduido IDE to generate the -S flag to gcc to see the machine code in Arduino? (the sketches)

VE7JRO
  • 2,515
  • 19
  • 27
  • 29

1 Answers1

2

Compiler flags are defined in the platform.txt of the board you have selected in the Tools > Board menu. You can also add compiler flags via a build.extra_flags property in the boards.txt entry for the selected board.

per1234
  • 4,278
  • 2
  • 24
  • 43