I need a utility to diff two binary files. The files are large (6-50 GB).
Note: It needs to be specifically pointed out here: most diff programs work by mapping the file into their virtual address space. On 32-bit Windows, this limits the sizes of files that can be compared to under 1 GB each. (1.5 GB if Windows is run with the /3GB switch, and the program has advertised that it is 3 GB aware; /LARGEADDRESSAWARE). If a program insists on the technique of mapping the file entirely into its address space, then it must be recompiled as a 64-bit application, which has an address space of 8 TB (which meets my requirements)
Beyond Compare is my favorite diff tool, and I own it, but it cannot handle binary files over what can fit in the process's address space.
HexDiff 3.0 seemed interesting, except the trial version doesn't do diff's. *rolls eyes*
the tool should be free, since I'm not paying money to figure out that it doesn't work.
the tool should be a Windows application.
the tool should not be console based (that is, a Windows application)
the tool should be graphical (that is, a Windows application)