The binary-reproducibility tag has no wiki summary.
11
votes
7answers
681 views
Determine whether .NET assemblies were built from the same source
Does anyone know of a way to compare two .NET assemblies to determine whether they were built from the "same" source files?
I am aware that there are some differencing utilities available, such as ...
9
votes
5answers
368 views
Why building the same project generates different EXE file for each developer
My team and I are developing a VC++ 6 project.
We are all using the same code-base (using version control system), and all our compiler/linker/environment-settings (including include directories ...
4
votes
5answers
604 views
How to build twice the same Linux Kernel sources and get the the same checksum
I'm searching if it's possible to build twice the same Linux Kernel (same sources, same environment, same options, same compiler) and get the the same checksum.
Anybody knows how to do?
3
votes
3answers
242 views
Compiling Twice with Delphi 6 and getting the same checksum on the binary
For the purposes of binary / source code verification, i'd like to be able to make two compiles on the same computer 2 weeks apart and have the binaries be identical and thus pass some checksum test.
...
3
votes
4answers
280 views
Repeatable object code generation c++
When I build a project using a c++ compiler, can I make sure that the produced binary is not affected if there were no changes in source code? It looks like everytime I recompile my source, the ...
2
votes
2answers
98 views
Comparing generated executables for equivilance
I need to compare 2 executables and/or shared objects, compiled using the same compiler/flags and verify that they have not changed. We work in a regulated environment, so it would be really useful ...
2
votes
2answers
437 views
Binary Reproducibility in Visual C++
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?
2
votes
4answers
536 views
Why does every build change the exe-file?
Building the same project (without any changes) produces binary different exe-files: some small regions of them are different. Empty project, version information (and auto-increment on every build) is ...
1
vote
4answers
118 views
How to produce 8 bytes from 4 bytes with a reproducible operation?
I've 4 bytes of data and need an 8 bytes array for a security operation. I should produce these 8 bytes form the 4 bytes byte array and this should be reproducible.
I was thinking of using exact byte ...
1
vote
1answer
277 views
How do you verify that 2 copies of a VB 6 executable came from the same code base?
I have a program under version control that has gone through multiple releases. A situation came up today where someone had somehow managed to point to an old copy of the program and thus was ...
1
vote
2answers
99 views
Does Solaris cc embed in an executable differing info for different compiles?
G'day,
This has been asked before for VC++ but I am interested in the answer for Solaris.
I'm compiling and linking the following trivial C code:
#include <stdio.h>
int main() {
...
0
votes
2answers
87 views
Same sources but compiled binary different
Hi
I develop C/C++ for VxWorks on WinXP using ccarm compiler. And I would like to add a hot fix for on top of a released delivery which was build long time ago. Sources are kept on Clear Case and ...