I followed the steps mentioned in the wiki article for win64 compilation, but I am getting the below error:
Below is the compilation log:
asked 26 Apr ‘12, 09:09 Pradeep edited 26 Apr ‘12, 09:31 multipleinte… |
2 Answers:
I think the issue is more likely to be confusion over the build type and artefacts left from a previous build attempt. If you switch from x86 to x64 or vice-versa with an in-tree (i.e. nmake) build then you must run Then you must also start a new command prompt and set the required VC tool chain (i.e. appropriate vcvars.bat for x86 or x64) and ensure any changes to config.nmake are also modified correctly for the required build type. For the OP's question, they are using the x86 toolchain
but using 64 bit libraries;
answered 28 Jan '15, 02:36 grahamb ♦ edited 28 Jan '15, 02:37 |
I know its late but for someone else who encounters the same problem this might help!! So..This is because you are using x64 native command prompt and trying to build 32 bit version of wireshark.Make sure you use the correct command prompt!! answered 27 Jan '15, 23:32 koundi |
if target machine is x86 why is it using wireshark-win64-libs... Is it because he didnot use nmake -f Makefile.nmake setup command before making all but only changed the target machine type to win32???