Skip to content
/ gcc2vs Public

Convert gcc error messages to Visual Studio compatible format

License

Notifications You must be signed in to change notification settings

jwt27/gcc2vs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gcc2vs

A simple program to convert error messages from gcc to a Visual Studio compatible format.

Installing

From an MSYS2 / MinGW64 shell, type:

$ git clone https://github.com/jwt27/gcc2vs.git
$ cd gcc2vs/
$ make install

Using

Set up a makefile project in Visual Studio, which calls make from within an MSYS2 shell. In your makefile, pipe all output from gcc through gcc2vs:

  %.o: %.cpp
      g++ -o $@ $^ 2>&1 | gcc2vs

You can also pipe the entire make command through gcc2vs. In that case you must invoke gcc with absolute paths to your source files.

About

Convert gcc error messages to Visual Studio compatible format

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published