Skip to content Skip to sidebar Skip to footer

Compiling Qt For Android: 'mingw32-make' Is Not Recognized As An Internal Or External Command

I'm trying to compile Qt for Android on Windows, following the steps outlined in http://wiki.qt.io/Android. When I try to configure it: configure -xplatform android-g++ -nomake t

Solution 1:

I found I had mingw32-make in my Qt Creator installation, so I just added it to PATH, and it seems to work:

set PATH=%PATH%;c:\Qt\Tools\mingw491_32\bin
configure configure -xplatform android-g++ -nomake tests -nomake examples -android-ndk c:\android-ndk-r10d -android-sdk c:\adt\sdk -android-ndk-host windows-x64 -android-toolchain-version 4.8 -skip qttranslations -skip qtwebkit -skip qtserialport -skip qtwebkit-examples -no-warnings-are-errors

Post a Comment for "Compiling Qt For Android: 'mingw32-make' Is Not Recognized As An Internal Or External Command"