Show actual build command (using platformio.ini?)

When I build my Arduino UNO project I get the simplified protocol

Building in debug mode
Compiling .pio/build/uno/src/myAssembly06.S.o
Linking .pio/build/uno/firmware.elf
Checking size .pio/build/uno/firmware.elf 

I would like to see the actual executed command like gcc ....
Is there a configuration in platformio.ini to activate this type of information?

As you can read in our official documentation documentation, use the project task “Advanced → Verbose Build” or pio run -v.

1 Like