microsoft / vscode-makefile-tools

MAKE integration in Visual Studio Code
Other
196 stars 60 forks source link

Don't append line ending to output for dry-run #624

Closed gcampbell-msft closed 4 months ago

gcampbell-msft commented 4 months ago

Fixes #545

In short, the issue is that when outputs are very long, they may get split up into different invocations of the stdout handler. This can break when the configure step is being run, because when we invoke make.exe on the Makefile, and there is a very long compilation command output, if it gets split up, we might not handle the entire compile command output.

The issue and an example is described here: #545

vsix here: makefile-tools.zip