Hi all, I have downloaded the 1.6.4 source code for 32 bit machines. Now, i want to build a release version of wireshark, but I do not know how to change the file "config.nmake", Any ideas? asked 08 Oct '12, 01:08 ekgh edited 08 Oct '12, 01:10 |
One Answer:
You need to read the Developers Guide which has all the gory details of building Wireshark on Windows. To build a "release" version, i.e. create an installer you use the command: answered 08 Oct '12, 01:22 grahamb ♦ |
Thank you for your answer. I have succesed to build the wireshark 1.6.4 in MSVC 2010, I think it was the debug version. Now I don't know how to modify the "config.nmake" to build a release version?
Presuming you want to add some optimisation settings, e.g.
/O??
then I think you would need to modify the value of LOCAL_CFLAGS (affects all compiled objects) or STANDARD_CFLAGS (affects only "Wireshark" compiled objects).If you do this it would be interesting to report your experiences back to the developers mailing list.