Hello All!
I am using GuruCE iMX6 SDK for building in VS2015. After creationg QT project, and adding platform SDK, platform change to x86. I realised, this is due to spaces in platform SDk name. So if I try to edit SDK name (with spaces)in project file, I get xml reading error Need your advice, how to solve this.
Unsolved Qt VS Tools do not allow spaces in SDK name
Solved toolchain.prf(50): system(execute) requires one or two arguments.
thanks a lot!!!
Solved QT install woes
I had a similar experience. In my installation, the only compiler that works is MinGW-32 5.3.0. They offer the option to activate 10 different Microsoft components in the QT Maintenance and deployment tool (options across MSVC 2013, 2015, 2017 and UWP platforms, some with both 32 and 64 bit), yet do not offer an option for MinGW-w64. I have a working MSVC Community Edition 2017, but QT Creator has error flags on the components. So the only component that worked was the one that QT installed itself.
I hope MinGW-w64 will soon be put in the QT Maintenance tool if it can be made to work; I can't foresee any licensing issues. When I have a bad "out-of-box" experience I hesitate to continue with a product only to find that other insurmountable horrors await after hundreds or thousands of hours of development.
Solved Build error related to improper definition of sysroot directory (MacOSX10.11.sdk io MacOSX10.12.sdk)
when MACOSX10.13 was coming, the only way to fix is creating symbolic MacOSX10.13.sdk to MacOSX.sdk which is able to fix problem.
Unsolved WARNING: Failure to find QtWebEngineCore.access_token_store_qt.o
i download a qt-everywhere-opensource-src-5.4.2.tar.xz, and build by configure and make on ubuntu16.04
build failed when make install
how to solve the compile problem, i have installed libcap-dev.
Unsolved Trouble building a release copy for android
Is the size of the release version different from your debug version?
You may have to rerun qmake and rebuild for getter a release version.
BTW the name of .apk may be changed to anything. It is an archive.
Unsolved SSL handshake failed error during installation
Dear SGaist,
I installed
mucip@debian-ev:~$ openssl version
OpenSSL 1.0.2l 25 May 2017
mucip@debian-ev:~$
But I still can not update!
I attached the picture of situation.
regards,
Mucip:)
Unsolved Images are not loaded when application starts through .desktop file.
Maybe you forgot to deploy the images? Or are they compiled into a Qt resource file? Did you check at run-time if the images' filepaths are valid?
Unsolved Where to specify Zielcomputertyp "X64" - LNK1112 Error
Hi,
I'm in progress of reinstalling and updating my QT environment as it didn't want to work anymore with formerly installed MSVC2015 x64 and current Win 10 Pro build.
My environment contains:
Windows 10 Pro Build 14393
Qt Creator 4.4.1 based on 5.9.2
I worked through some compiler issues yesterday and came to the point, that I'm getting this error message:
Qt5Widgetsd.lib(Qt5Widgetsd.dll) : fatal error LNK1112: Modul-Computertyp "x64" steht in Konflikt mit dem Zielcomputertyp "X86".
My target is to be able to compile and run my application in 64-bit architecture.
It looks to me like there is still one small setting to be adjusted, but I can't find the setting in Qt to do so.
The full linking output is:
10:02:58: Führe Schritte für Projekt untitled aus...
10:02:58: Unveränderte Konfiguration, qmake-Schritt wird übersprungen.
10:02:58: Starte "Y:\Mirrow\Qt\Tools\QtCreator\bin\jom.exe"
Y:\Mirrow\Qt\Tools\QtCreator\bin\jom.exe -f Makefile.Debug
link /NOLOGO /DYNAMICBASE /NXCOMPAT /DEBUG /SUBSYSTEM:WINDOWS "/MANIFESTDEPENDENCY:type='win32' name='Microsoft.Windows.Common-Controls' version='6.0.0.0' publicKeyToken='6595b64144ccf1df' language='*' processorArchitecture='*'" /MANIFEST:embed /OUT:debug\untitled.exe @C:\Users\Dirk\AppData\Local\Temp\untitled.exe.4636.16.jom
Qt5Widgetsd.lib(Qt5Widgetsd.dll) : fatal error LNK1112: Modul-Computertyp "x64" steht in Konflikt mit dem Zielcomputertyp "X86".
jom: C:\temp\build-untitled-Desktop_Qt_5_9_2_MSVC2015_64bit-Debug\Makefile.Debug [debug\untitled.exe] Error 1112
jom: C:\temp\build-untitled-Desktop_Qt_5_9_2_MSVC2015_64bit-Debug\Makefile [debug] Error 2
10:03:02: Der Prozess "Y:\Mirrow\Qt\Tools\QtCreator\bin\jom.exe" wurde mit dem Rückgabewert 2 beendet.
Fehler beim Erstellen/Deployment des Projekts untitled (Kit: Desktop Qt 5.9.2 MSVC2015 64bit)
Bei der Ausführung von Schritt "Make"
10:03:02: Verstrichene Zeit: 00:04.
Qt automatically created the MSVC 2015 Kit but did not assign the compiler properly. So I've finished the kit by choosing the following configuration:

My pro-file looks like this now:
#-------------------------------------------------
#
# Project created by QtCreator 2017-10-14T13:52:00
#
#-------------------------------------------------
QT += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = untitled
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which has been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000 # disables all the APIs deprecated before Qt 6.0.0
SOURCES += \
main.cpp \
mainwindow.cpp
HEADERS += \
mainwindow.h
FORMS += \
mainwindow.ui
CONFIG += mobility
MOBILITY =
win32: LIBS += -L$$PWD/'../../Program Files (x86)/Windows Kits/10/Lib/10.0.15063.0/um/x64/' -lshell32
INCLUDEPATH += $$PWD/'../../Program Files (x86)/Windows Kits/10/Lib/10.0.15063.0/um/x64'
DEPENDPATH += $$PWD/'../../Program Files (x86)/Windows Kits/10/Lib/10.0.15063.0/um/x64'
win32:!win32-g++: PRE_TARGETDEPS += $$PWD/'../../Program Files (x86)/Windows Kits/10/Lib/10.0.15063.0/um/x64/shell32.lib'
else:win32-g++: PRE_TARGETDEPS += $$PWD/'../../Program Files (x86)/Windows Kits/10/Lib/10.0.15063.0/um/x64/libshell32.a'
I couldn't find the solution how to properly change the target environment to x64 while the Kit has already set everything I can see to x64. Help is highly appreciated. Thanks.
Dirk
Solved Building Qt 5 on Linux, for Windows
@mrjj said in Building Qt 5 on Linux, for Windows:
@cerr
Hi
And you did something like
export PATH=<mxe root>/usr/bin:$PATH
as mentioned in the link ?
No, that actually was my problem! Thanks for pointing this out, I must have read over that comment...
Solved No valid kits found
Nevermind, problem solved. Thanks for the immediate response. You really saved me.
Krammy
Unsolved Ibase SQL plugin build error on Windows 10 / MSVC 2017 64 bits for Firebird 3
@lqsa "LIBS+=-lfbclient" - this is not enough, you need to tell the linker where it is located:
LIBS+="-LPATH_WHERE_LIB_IS_LOCATED -lfbclient"Unsolved Build QtCreator from source code
When this error comes, could you try make instead of make -j8 ?
I assumed you are using make -j8 from the reference link you have given.
Unsolved Create line chart with Visual Studio 2015 and Qt 5.9
does using the macro instead help:
QT_CHARTS_USE_NAMESPACE int main(int argc, char *argv[])Do the example chart projects work for you? If they do that will be a simple test of finding differences of broken vs working...
Unsolved qtcreator.exe has stopped working on open project
Hi to all, my version is qt-opensource-windows-x86-mingw492-5.5.1
But when I open project with only file, qtcreator.exe crash
Depósito con errores , tipo 0
Nombre de evento: APPCRASH
Respuesta: No disponible
Id. de archivo CAB: 0
Firma del problema:
P1: qtcreator.exe
P2: 0.0.0.0
P3: 561c8ab4
P4: ProjectExplorer.dll
P5: 0.0.0.0
P6: 561c8b04
P7: c0000005
P8: 00089fb0
P9:
P10:
Archivos adjuntos:
C:\Users\Administrador\AppData\Local\Temp\WERB9BC.tmp.WERInternalMetadata.xml
C:\Users\Administrador\AppData\Local\Temp\WER4004.tmp.appcompat.txt
C:\Users\Administrador\AppData\Local\Temp\WER7E94.tmp.hdmp
C:\Users\Administrador\AppData\Local\Temp\WERB17D.tmp.mdmp
Es posible que estos archivos estén disponibles aquí:
C:\Users\Administrador\AppData\Local\Microsoft\Windows\WER\ReportQueue\AppCrash_qtcreator.exe_cb9dc86580557de332e55588d9254fe7a5810ca_cab_02f2b206
Símbolo de análisis:
Nueva búsqueda de una solución: 0
Id. de informe: f005a315-b412-11e7-be08-000c29f12d76
Estado del informe: 5
Unsolved "There is no disk in the drive" error running jom.exe
Hello,
I'm trying to build Qt 5.9.0 from source in C:\qt-everywhere-enterprise-src-5.9.0. After the configure step I wanted to use jom to build the files. I downloaded jom-1.1.2.zip from the Qt site and unpacked the files in a directory (e.g. C:\jom). I then executed jom.exe from in the build directory and I received the following error:
There is no disk in the drive. Please insert a disk into drive E:
I repeated this by navigating to the jom directory (C:\jom) and executing jom.exe and I received the same error.
Looks like jom has some dependencies that need to be in the same directory. Does anyone know what they are? Also, they should be included in the .zip file.
Kevin
Unsolved Can't get qmake to work from command line on MacOS High Sierra
MacOS High Sierra 10.13
QT 5.9.2 or QT 5.10.0 beta
Installed QT in ~/Qt
I can build just fine from QtCreator, but if I try to use qmake from the command line I always get (for any project I try):
Project ERROR: failed to parse default search paths from compiler output
For example, from the basiclayouts example:
/Users/###/Qt/5.10.0/clang_64/bin/qmake -o Makefile ../basiclayouts/basiclayouts.pro -spec macx-clang CONFIG+=debug CONFIG+=x86_64 CONFIG+=qml_debug
Project ERROR: failed to parse default search paths from compiler output
With debug on qmake, it looks like this is the point where it fails:
DEBUG 1: /Users/###/Qt/5.10.0/clang_64/mkspecs/features/toolchain.prf:142: calling built-in isEmpty(QMAKE_DEFAULT_LIBDIRS)
So QMAKE_DEFAULT_LIBDIRS is empty but isn't expected to be.
Clang version details:
Apple LLVM version 9.0.0 (clang-900.0.37)
Target: x86_64-apple-darwin17.0.0
Any ideas what I've got set up wrong?
Thanks
Unsolved pplication failed to start because platform plugin "windows"
Re: Failed to start because it could not find or load the Qt platform plugin "windows"
Hey everyone,
I am new here so sorry if I post something wrong :-)
I have built Sigil via QtCreator.
Sigil (https://github.com/Sigil-Ebook/Sigil) is an E-Book tool implemented in Qt .
But if I run the Sigil.exe I get this error: Application failed to start because platform plugin "windows"
Even if I create a platform folder and copy qwindows.dll into it do not starts.
Another Problem is If my friend build an run on his pc he get the error: python fehler: Unable to find encodings
Can anyone help me please?
Thank you
Solved QT5.9 online installer does not create qmake.exe
I've been a fool!
Needed to tick the compiler when installing - I didn't expand the Tools tab!
Unsolved Application failed to start because platform plugin "windows"
Hi
I also like this site for deployment info
http://www.tripleboot.org/?p=138