C++ Mingw32 CreateProcess() failed with error code 2: The system cannot find the file specified -


i trying run basic program in notepad++ , mingw32. have attempted multiple different thing continue get.

    current directory: \\thebox\users\jacks_000\documents     c:\mingw\mingw32\bin\g++.exe -g "testpgrm"     createprocess() failed error code 2:     system cannot find file specified.      ================ ready ================ 

when run nppexec use following

npp_save cd $(current_directory) c:\mingw\mingw32\bin\g++.exe -g "$(file_name)" 

i have tried:

npp_save cd $(current_directory) c:\mingw\bin\g++.exe -g "$(file_name)" 

i using basic test program:

#include <iostream> using namespace std; int main() {     cout<<"hi";     return 0; } 

i don't know if have issue running in command prompt if save way or if have done wrong. running windows 10 if issue.

current directory: \thebox\users\jacks_000\documents

i think it's because g++ can't access smb share.

try compile file locally.


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -