how to set compile and build in visual studio 2019 for c++ like compile - g++ -std=c++17 -Wshadow -Wall -o "%e" "%f" -O2 -Wno-unused-result build - g++ -std=c++17 -Wshadow -Wall -o "%e" "%f" -g -fsanitize=address -fsanitize=undefined -D_GLIBCXX_DEBUG not visual studio code (vscode) but for the Visual Studio 2017 IDE using mingw compiler
            Asked
            
        
        
            Active
            
        
            Viewed 21 times
        
    0
            
            
        - 
                    So you want to use the mingw compiler with Visual Studio 2017 instead of microsoft's compliler. – drescherjm Apr 20 '20 at 03:48
- 
                    2This appears to be a duplicate of the following: [How to use GCC with Microsoft Visual Studio?](https://stackoverflow.com/questions/14768073/how-to-use-gcc-with-microsoft-visual-studio) – nanofarad Apr 20 '20 at 04:10
