Hello.
I writed the program under Linux - it works properly in all subjects.
Now I need to compile it under Windows. For the beginning I tried to compile some tutorials - here is the first one:
Accordingly the first tutorial (Assistant: QMake Manual -> qmake Tutorial) I created the pro file:
"CONFIG += qt
HEADERS += hello.h
SOURCES += hello.cpp
SOURCES += main.cpp",
then successfully generated Makefile by command: "qmake -o Makefile hello.pro"
But when I type "make" I get the error: "../include/QtCore/../../src/corelib/tools/qvector.h:370: error: `qMalloc' cannot be used as a function"

What's wrong?