Fatal error U1077 (Qt 5.7.0 MSVC2013 64 bits)
-
17:38:39: Starting: "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe" -f Makefile.Release
17:38:39: The process "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe" exited normally.
17:38:39: Elapsed time: 00:00. -
17:38:39: Starting: "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe"
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe" -f Makefile.Release
17:38:39: The process "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\BIN\amd64\nmake.exe" exited normally.
17:38:39: Elapsed time: 00:00. -
Hi
a C++ Qt quick application ?
Could you try a
"Qt widget application" default project?If that also works, then it must be that projects make file that is not ok?
-
The make file is made by the qmake.
This is the header of the automatic created file:
############################################################################# # Makefile for building: ants2 # Generated by qmake (3.0) (Qt 5.7.0) # Project: ..\ANTS2\ants2.pro # Template: app # Command: C:\Qt\5.7\msvc2015_64\bin\qmake.exe -spec win32-msvc2015 -o Makefile ..\ANTS2\ants2.pro #############################################################################
-
hmm
so here it uses 2015 compilerI wonder if the default sample used vs2013 ?
Did you install BOTH Qt 2015 and Qt 2013 binary packets?
Also did u try with
-spec win32-msvc2013?
-
Yes, both are installed and also tried win32-msvc2013.
mrjj, many thanks for your help. Let me discuss this problem tomorrow with the code developer. Today I updated Qt to Qt5.7and after that, when I tried to compile the Project I want to build and run (to use the application - a simulation software), I got the building error I reported here in the Forum. The Project was built before for Qt5.4 without problems. -
Yes, both are installed and also tried win32-msvc2013.
mrjj, many thanks for your help. Let me discuss this problem tomorrow with the code developer. Today I updated Qt to Qt5.7and after that, when I tried to compile the Project I want to build and run (to use the application - a simulation software), I got the building error I reported here in the Forum. The Project was built before for Qt5.4 without problems. -
Yes, both are installed and also tried win32-msvc2013.
mrjj, many thanks for your help. Let me discuss this problem tomorrow with the code developer. Today I updated Qt to Qt5.7and after that, when I tried to compile the Project I want to build and run (to use the application - a simulation software), I got the building error I reported here in the Forum. The Project was built before for Qt5.4 without problems. -
@mrjj Yes, it is. You are very welcome to try it. Anyway, it take some time to install (at least you need to install CERN ROOT library before build ANTS2). You should think if it is worth trying for you :)
With ANTS2 you can simulate neutrons detectors, detectors for dark matter search, medical gamma cameras for scintigraphy (functional imagiology), etc.
From the Project webpage:
ANTS2 is a simulation and experimental data processing package for Anger camera-type detectors. The package is intended for:
- Optimization of detector design and geometry using Monte Carlo simulations
- Optimization and development of event reconstruction techniques
- Adaptive reconstruction of detector response using flood field illumination data
- Reconstruction and filtering of events for experimental data
-
Hi
Tomorrow could you
Show compiler, debugger and kit screens from creator (with the set options)
Then grab the qmake line from the Creator's output pane and show here too ? -
@mrjj Yes, I can, tomorrow. Anyway, I tried before to upload a photo (it is my first time in the Forum) and I didn't manage to do it. Could you please teach me how to upload a photo :)
@jmarcos
Hi sadly , after forum upgrade, the image upload has issues.
So best is just use external site
like postimage.org
and simply paste the link here :)thank you for the ant2 link :)
-
Sorry, I read again the Windows instructions guide and I realized that it says I should install 32 bits version of Qt, and I have installed 64 bit Qt. It should not work with 32 bit version of CERN - ROOT binaries.
http://coimbra.lip.pt/ants/install-windows.html
Thank you very much for your time.
João -
Hum, not solved yet.
I have installed 32-bit version of Qt and I'm using Microsoft Visual C++ 11.0--
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\link.EXE"' : return code '0x527'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\nmake.exe"' : return code '0x2'
Stop.
17:29:05: The process "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\nmake.exe" exited with code 2.
Error while building/deploying project ants2 (kit: Qt 5.7MSVC2013_32bit MV C++ Compiler 11.0 (x86))
When executing step "Make" -
Now it is solved. Thak you again!
The solution was really install the 32-bit version of Qt and use the default kit: "Qt 5.7.0 MSVC2013 32bit", which has as compiler "Microsoft Visual C++ Compiler 12.0 (amd64_arm)".
The reason is that the ANTS2 Project is using the 32 bit version of CERN - ROOT binaries.
The Qt version I have installed is this one:
"Qt 5.7.0 for Windows 32-bit (VS 2013, 909 MB)"It is available at the Qt downloads site:
https://www.qt.io/download-open-source/#section-4 -
Hum, not solved yet.
I have installed 32-bit version of Qt and I'm using Microsoft Visual C++ 11.0--
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\link.EXE"' : return code '0x527'
Stop.
NMAKE : fatal error U1077: '"C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\nmake.exe"' : return code '0x2'
Stop.
17:29:05: The process "C:\Program Files (x86)\Microsoft Visual Studio 11.0\VC\BIN\nmake.exe" exited with code 2.
Error while building/deploying project ants2 (kit: Qt 5.7MSVC2013_32bit MV C++ Compiler 11.0 (x86))
When executing step "Make"@jmarcos
You need to match compilers as well as word size (32 vs 64bits). If your CERN Root w/e is compiled with MSVC 11, you need to stick with that version of the compiler all along (including Qt and including the executable + any external libraries you may require). Basically everything has to be compiled with the same compiler, make sure that's the case. Also peek at the bugtracker for any known issues.