Search code examples
c++compilationg++

Can G++ coexist side by side with Visual Studio?


I have Visual Studio 2013 Community installed. Now want to learn more about compiling, as well as being more Windows independent/portable, with Notepad/G++11/MinGW-64 (all within same Windows 10 Home 64bit platform for c++ audio applications). Can GCC and VS coexist side by side?


Solution

  • Yes. You can, of course, have both installed side-by-side. But you cannot expect to be able to link object files / libraries compiled by different compilers (or even different compiler versions) in most cases.