alliedmodders / ambuild

AlliedModders C++ Build System
BSD 3-Clause "New" or "Revised" License
60 stars 31 forks source link

Standarize problem output #122

Closed WildCard65 closed 4 years ago

WildCard65 commented 4 years ago

Would it be possible to implement a way to convert compiler specific problem output into a generic problem output?

This would allow for better integration into Visual Studio Code where you can define custom problem matchers, reference: Visual Studio Code: Tasks: Custom Problem Matcher

dvander commented 4 years ago

AMBuild relays exactly what the compiler sends to stderr/stdout. Is VSCode's pattern matching not working because of something else AMBuild is doing?

WildCard65 commented 4 years ago

I was more asking for the GH action I created as I want to implement annotations in it without wasting CPU cycles testing the stderr output against 2 different regex patterns.