C++ Enviromental Variable -


i found simple , easy way incorporate mingw notepad++ issue added environmental variable still throws error 'g++' not recognized internal or external command, operable program or batch file.

did add variable wrong or? (i added under path users)

%userprofile%\appdata\local\microsoft\windowsapps;c:\mingw\bin;  

notepad++ code:

npp_save  cd $(current_directory)  cmd /c g++ -ansi -pedantic -wall -w -wconversion -wshadow -wcast-qual -wwrite-strings $(file_name) -o $(name_part).exe & if errorlevel 1 (echo. && echo syntax errors found during compiling.) else ($(name_part).exe) 


Comments

Popular posts from this blog

asp.net - How to correctly use QUERY_STRING in ISAPI rewrite? -

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -