Is there a way to force the same code to produce the same binary in Visual C++? Turn off the timestamp in the PE or force the timestamp in the PE to be some fixed value, in other words?
|
feedback
|
|
I suppose you could write a utility to open the PE, set the checksum to 0, set the timestamp to what you like, recompute the crc, then write it back out. It would be nice if there were an official way to ensure perfect binary reproducibility, though. For more information: http://msdn.microsoft.com/en-us/magazine/cc301805.aspx | |||
|
feedback
|
|
It's not only a timestamp - there's an embedded GUID used for PDB matching - as John Robbins explains. Even beyond that, there's just no way to force the compiler to generate consistent results, as Jim Griesmer explains -
Thus, function and section order are not guaranteed to be consistently ordered in the resulting PE. An example is at the link. | |||
|
feedback
|