nachstedt / vscode-stack-usage

Visual Studio Code plugin to display maximum stack usage of c++ functions
GNU General Public License v3.0
3 stars 0 forks source link

Stack Usage

This Visual Studio Code extension allows you to display the per function stack usage analysis information produced by gcc for c++ projects next to the respective implementation.

Features

Requirements

The source code must be compiled using gcc and the -fstack-usage flag. This will produce *.su files for every compiled unit which are read by the extension. To make the extension discover these files, a compile_commands.json or a link to it must be located at the root folder of your project.

Further Information: