S
S
Sergey Vanyushin2014-10-08 19:23:15
Qt
Sergey Vanyushin, 2014-10-08 19:23:15

What is the 0x000007B error for a program written in QtCreator in C++ running on another computer?

Has a simple console program. I do not want to spread the code, but I'm interested in solving the problem.
There is such error at start on the computer of other developer:
850dd040c714412bb6f48403d535adbc.png
It was written in QtCreator.

Answer the question

In order to leave comments, you need to log in

3 answer(s)
A
Alexey, 2014-10-12
@wapmorgan

This means that all libraries are loaded, but some are incompatible with each other. For example, the computer you are starting up already has some Qt5Core.dll version 5.2.1, and you built it with version 5.3.0, or msvcr * .dll is picked up, different from those with which the project was built. In the folder with the exe, in addition to the Qt libraries, put the necessary msvcr and msvcp

M
Mingun, 2014-10-08
@Mingun

Most likely incompatibility in versions of DLL - by other machine the library of other version is picked up. For starters, it's worth looking at Dependency Walker, what the program drags along with it.

A
Alexander, 2014-10-10
Obiedkov @aobiedkov

All libraries that your program uses next to exe, including QT ones.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question