"c: Command not found" error

Viewed 13125

I built qt5-toolchain for ARM arthitecture successfully.But I receive following error while compiling any qt application:

Makefile:545: recipe for target 'moc_mainwindow.o' failed Wl,-O1 -o Demo1 main.o mainwindow.o moc_mainwindow.o -L/opt/poky/2.0.1/sysroots/cortexa7hf-vfp-vfpv4-neon-poky-linux-gnueabi/usr/lib -lQt5Widgets -lQt5Gui -lQt5Core -lGLESv2 -lEGL -lpthread Makefile:199: recipe for target 'Demo1' failed
make: c: Command not found
make: [moc_mainwindow.o] Error 127 (ignored)
make: Wl,-O1: Command not found
make: [Demo1] Error 127 (ignored)

How can I solve this problem? Thank for your reply...

3 Answers

Editing qtcreator.sh is not necessary, but it may be convenient.

To fix the make: c: Command not found error you need to start Qt Creator from a shell where the Qt SDK environment setup script has been run.

For example:

. /opt/poky/2.0.1/environment-setup-cortexa9hf-vfp-neon-poky-linux-gnueabi  
qtcreator > /dev/null 2>&1 &

After you installed the SDK it said this:

Each time you wish to use the SDK in a new shell session, you need to source the environment setup script

Related