i have dowloaded the source code of Wireshark 2.2.5 and setup the environment for the same by following the procedure for building the wireshark. C:\Dhanush\wireshark-2.2.5>Nmake -f Makefile.nmake verify_tools Microsoft (R) Program Maintenance Utility Version 9.00.21022.08 Copyright (C) Microsoft Corporation. All rights reserved. NMAKE : fatal error U1052: file 'Makefile.nmake' not found Stop. THE ABOVE ERROR was obtained asked 16 Mar '17, 04:13 DhanuShalz |
One Answer:
You're not following the correct build procedure for 2.2.5 as shown in the Developers Guide Sect 2.2. Basically, you need to run CMake to produce a Visual Studio solution and then use msbuild to build that solution. You should follow the steps in the Developers Guide, any deviation is likely to lead to build issues. answered 16 Mar '17, 04:26 grahamb ♦ |