qapitrace.exe - Entry Point Not Found
up vote
0
down vote
favorite
I have the following problem when I try to run qapitrace with apitrace file that was created:
For analyzing trace I use the following command:
qapitrace Coin.trace
Also, the system variable PATH include the path to QT libraries
For creating the trace file I the use following command:
apitrace trace --api gl Coin.exe
For build APITrace I use the following software:
- Windows 7 x 64
- Cmake - 3.8.2
- QT - 5.11.2
- Visual Studio 2017
For compile the following commands was used:
1. cmake -H. -Bbuild -G "Visual Studio 15 2017" -DCMAKE_PREFIX_PATH=C:Qt5.11.2msvc2015
2. cmake --build build --config RelWithDebInfo
qt opengl
add a comment |
up vote
0
down vote
favorite
I have the following problem when I try to run qapitrace with apitrace file that was created:
For analyzing trace I use the following command:
qapitrace Coin.trace
Also, the system variable PATH include the path to QT libraries
For creating the trace file I the use following command:
apitrace trace --api gl Coin.exe
For build APITrace I use the following software:
- Windows 7 x 64
- Cmake - 3.8.2
- QT - 5.11.2
- Visual Studio 2017
For compile the following commands was used:
1. cmake -H. -Bbuild -G "Visual Studio 15 2017" -DCMAKE_PREFIX_PATH=C:Qt5.11.2msvc2015
2. cmake --build build --config RelWithDebInfo
qt opengl
1
This is probably libraries incompatibility issue. Probably your Qt built with another compiler than VS2017.
– vahancho
Nov 7 at 15:28
QT I download and install it without direct compiling. About APITrace I use the following instruction: github.com/apitrace/apitrace/blob/master/docs/INSTALL.markdown and the following instruction has the following: Note as off Qt version 5.9.1 there's nomsvc2017
directory, onlymsvc2015
andmsvc2017_64
, butmsvc2015
should work as MSVC 2017 is binary backwards compatible with MSVC 2015.
– Andriy Mytroshyn
Nov 7 at 15:32
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I have the following problem when I try to run qapitrace with apitrace file that was created:
For analyzing trace I use the following command:
qapitrace Coin.trace
Also, the system variable PATH include the path to QT libraries
For creating the trace file I the use following command:
apitrace trace --api gl Coin.exe
For build APITrace I use the following software:
- Windows 7 x 64
- Cmake - 3.8.2
- QT - 5.11.2
- Visual Studio 2017
For compile the following commands was used:
1. cmake -H. -Bbuild -G "Visual Studio 15 2017" -DCMAKE_PREFIX_PATH=C:Qt5.11.2msvc2015
2. cmake --build build --config RelWithDebInfo
qt opengl
I have the following problem when I try to run qapitrace with apitrace file that was created:
For analyzing trace I use the following command:
qapitrace Coin.trace
Also, the system variable PATH include the path to QT libraries
For creating the trace file I the use following command:
apitrace trace --api gl Coin.exe
For build APITrace I use the following software:
- Windows 7 x 64
- Cmake - 3.8.2
- QT - 5.11.2
- Visual Studio 2017
For compile the following commands was used:
1. cmake -H. -Bbuild -G "Visual Studio 15 2017" -DCMAKE_PREFIX_PATH=C:Qt5.11.2msvc2015
2. cmake --build build --config RelWithDebInfo
qt opengl
qt opengl
asked Nov 7 at 15:24
Andriy Mytroshyn
76210
76210
1
This is probably libraries incompatibility issue. Probably your Qt built with another compiler than VS2017.
– vahancho
Nov 7 at 15:28
QT I download and install it without direct compiling. About APITrace I use the following instruction: github.com/apitrace/apitrace/blob/master/docs/INSTALL.markdown and the following instruction has the following: Note as off Qt version 5.9.1 there's nomsvc2017
directory, onlymsvc2015
andmsvc2017_64
, butmsvc2015
should work as MSVC 2017 is binary backwards compatible with MSVC 2015.
– Andriy Mytroshyn
Nov 7 at 15:32
add a comment |
1
This is probably libraries incompatibility issue. Probably your Qt built with another compiler than VS2017.
– vahancho
Nov 7 at 15:28
QT I download and install it without direct compiling. About APITrace I use the following instruction: github.com/apitrace/apitrace/blob/master/docs/INSTALL.markdown and the following instruction has the following: Note as off Qt version 5.9.1 there's nomsvc2017
directory, onlymsvc2015
andmsvc2017_64
, butmsvc2015
should work as MSVC 2017 is binary backwards compatible with MSVC 2015.
– Andriy Mytroshyn
Nov 7 at 15:32
1
1
This is probably libraries incompatibility issue. Probably your Qt built with another compiler than VS2017.
– vahancho
Nov 7 at 15:28
This is probably libraries incompatibility issue. Probably your Qt built with another compiler than VS2017.
– vahancho
Nov 7 at 15:28
QT I download and install it without direct compiling. About APITrace I use the following instruction: github.com/apitrace/apitrace/blob/master/docs/INSTALL.markdown and the following instruction has the following: Note as off Qt version 5.9.1 there's no
msvc2017
directory, only msvc2015
and msvc2017_64
, but msvc2015
should work as MSVC 2017 is binary backwards compatible with MSVC 2015.– Andriy Mytroshyn
Nov 7 at 15:32
QT I download and install it without direct compiling. About APITrace I use the following instruction: github.com/apitrace/apitrace/blob/master/docs/INSTALL.markdown and the following instruction has the following: Note as off Qt version 5.9.1 there's no
msvc2017
directory, only msvc2015
and msvc2017_64
, but msvc2015
should work as MSVC 2017 is binary backwards compatible with MSVC 2015.– Andriy Mytroshyn
Nov 7 at 15:32
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
The problem was that the following libraries were not copied:
- Qt5Widgets.dll
- Qt5Gui.dll
- Qt5Core.dll
And Instead of these libraries was copied the following:
- Qt5Widgetsd.dll
- Qt5Guid.dll
- Qt5Cored.dll
I compile it for RelWithDebInfo and Release, after adding the libraries everything works fine.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
The problem was that the following libraries were not copied:
- Qt5Widgets.dll
- Qt5Gui.dll
- Qt5Core.dll
And Instead of these libraries was copied the following:
- Qt5Widgetsd.dll
- Qt5Guid.dll
- Qt5Cored.dll
I compile it for RelWithDebInfo and Release, after adding the libraries everything works fine.
add a comment |
up vote
0
down vote
The problem was that the following libraries were not copied:
- Qt5Widgets.dll
- Qt5Gui.dll
- Qt5Core.dll
And Instead of these libraries was copied the following:
- Qt5Widgetsd.dll
- Qt5Guid.dll
- Qt5Cored.dll
I compile it for RelWithDebInfo and Release, after adding the libraries everything works fine.
add a comment |
up vote
0
down vote
up vote
0
down vote
The problem was that the following libraries were not copied:
- Qt5Widgets.dll
- Qt5Gui.dll
- Qt5Core.dll
And Instead of these libraries was copied the following:
- Qt5Widgetsd.dll
- Qt5Guid.dll
- Qt5Cored.dll
I compile it for RelWithDebInfo and Release, after adding the libraries everything works fine.
The problem was that the following libraries were not copied:
- Qt5Widgets.dll
- Qt5Gui.dll
- Qt5Core.dll
And Instead of these libraries was copied the following:
- Qt5Widgetsd.dll
- Qt5Guid.dll
- Qt5Cored.dll
I compile it for RelWithDebInfo and Release, after adding the libraries everything works fine.
answered Nov 8 at 8:59
Andriy Mytroshyn
76210
76210
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53192505%2fqapitrace-exe-entry-point-not-found%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
This is probably libraries incompatibility issue. Probably your Qt built with another compiler than VS2017.
– vahancho
Nov 7 at 15:28
QT I download and install it without direct compiling. About APITrace I use the following instruction: github.com/apitrace/apitrace/blob/master/docs/INSTALL.markdown and the following instruction has the following: Note as off Qt version 5.9.1 there's no
msvc2017
directory, onlymsvc2015
andmsvc2017_64
, butmsvc2015
should work as MSVC 2017 is binary backwards compatible with MSVC 2015.– Andriy Mytroshyn
Nov 7 at 15:32