"Could not determine which 'make' command to run. Check the 'make' step in the build configuration." Qt Creator

I've installed qt creator several times, but it never cost me as much as it did on my current PC; First I used the installer that was always on my Pendrive (Qt 5.8), told me that I cannot download some of the repos, I downloaded version 5.9 of the same installer with the same result. After trying to install it several times and it did not boot, I went to another house where I was able to install it, although I had to know very well about many of the errors that came from missing libraries (when installing Qt 5.9). After that I had to load sp1 for my win7 operating system via "windows updates" to get the Qt creator up and running, but later, when loading, building or running the project, I would say in the console (it doesn't matter if it's a GUI) the following: " Could not determinewhat command to "execute". Check the "make" step in the build configuration. "I really appreciate your help to anyone who wants to advise me, because I already had many problems with my computer, from losing everything (the previous hard drive installed the original win10) to a series of very unpleasant failures like this I can't submit images, I have no more than 10 reputations.

edit 1: there are images:

https://ibb.co/jcNp05
https://ibb.co/hMyU05

      

The problem is that the video you submitted is for Linux, but I thank you for your help. I need more now

+3


source to share


1 answer


You must install the correct compiler to build your project. Since no compiler is installed, it asks you to check the configuration.

For example, on my PC, I get the following as a compiler:

11:13:33 am: Running steps for ListViewExample project ...

11:13:33: Configuration hasn't changed, skipping qmake step.

11:13:33: Start: "C: \ Qt \ Qt5.2.1 \ Tools \ mingw48_32 \ bin \ mingw32-make.exe"

C: /Qt/Qt5.2.1/Tools/mingw48_32/bin/mingw32-make -f Makefile.Debug

You may notice here that C: /Qt/Qt5.2.1/Tools/mingw48_32/bin/mingw32-make is the make compiler that builds the application.



Here you can set the compiler path: Tools> Options> Build & Run> Kits . Select the bundle displayed and select a valid compiler.

Screenshot of my config

How to add the mingw compiler during installation

enter image description here

Help video for a similar problem

You can try this youtube video link . Hope this solves your problem.

+5


source







All Articles