Hello, I have a probleme for Visual Studio 2015 when generate all file for Wireshark. This is error:
Have you a solution for me ? I have tested with Pragma warning on this, but my probleme it's already here ! Thank you for you help ! asked 08 Feb '16, 09:51 Tybbow Iskow |
One Answer:
Only very minor preparatory work for VS 2015 has been done, it's not really supported at the moment. When Qt release 5.6 with a version for use with VS2015 then support for VS2015 will be looked at again. answered 09 Feb '16, 02:43 grahamb ♦ I just built master with nmake with VS 2015 and that works. The problem may be related to this change made for nmake. https://code.wireshark.org/review/gitweb?p=wireshark.git;a=commit;h=9cb09a242f752c775a6d11d12dcb84ef6d9264d2 (09 Feb '16, 04:28) Anders ♦ I was referring to CMake, but regardless of the build system, Qt is the hold-up. (09 Feb '16, 05:57) grahamb ♦ Hello, Thanks Grahamb.. So, after read log, i found that:
and that :
:'(
(10 Feb ‘16, 09:54) Tybbow Iskow As you can see from the CMake generation output you have used a VS2103 build of Qt: – Qt5Core FOUND – Qt5Core includes: C:/Tools/Qt/Qt5.5.1/5.5/msvc2013_64/include/;C:/Tools/Qt/Qt5.5.1/5.5/msvc2013_64/include/QtCore;C:/Tools/Qt/Qt5.5.1/5.5/msvc2013_64/.//mkspecs/win32-msvc2013 So even if the compilation issues are fixed up, which may be down to the wrong version of Qt, it won’t run because the Qt version uses a different compiler to yours. (11 Feb ‘16, 02:37) grahamb ♦ I forgot to mention that my working nmake build was without Qt. (11 Feb ‘16, 06:45) Anders ♦ |
What version of wireshark are you trying to build?
The version of wireshark is 2.1.0. The last version. I use git clone for download source code.
Can you edit your question, adding the output of the CMake generation step?
You can redirect the output to a file with
cmake -G ... 2>&1 > cmake.txt
I have a feeling I came across this problem when compiling with vs2015 the first time.