G ++ CreateProcess: no such file or directory

I am trying to create Qt Creator from sources. Guys, I checked the entries in stackoverflow with a reference to this error, and I made sure that the environment variable was set for my compiler PATH. I also followed the instructions from Qt README, but I get the following error:

g++ CreateProcess: no such file or directory.
+3
source share
1 answer

The path to the compiler g++should be added to System variables PATH , not User variables .

0
source

All Articles