Tagged Questions

1
vote
3answers
198 views

exe checksum different after each recompile

So I'm trying to figure out how to get my exe to have the same hash code/checksum when it's recompiled. I'm using FastSum to generate the checksum. Currently, no code changes are made, I'm just ...
1
vote
1answer
136 views

Adding new Game Types without recompiling the program? (C++)

I have a game which has different game types, i.e Time Trial, Infinite Game etc. Each game type has different timing rules and potentially collision rules. Obviously in the Time Trial the game ends ...
1
vote
3answers
1k views

Visual C++ studio, recompiling only the modified files

I have two dll files made by around 1500 cpp files. When I need to edit one, I usually then recompile all the 1500 files from the start. But I heard there is a way to make Visual Studio recompile the ...
1
vote
2answers
349 views

C Runtime Library Version Compatibility: updates require rebuilds?

How do you construct a library (static lib or a dll/so) so that it isn't sensitive to future updates to the system's C runtime librarires? At the end of July, Microsoft updated a bunch of libraries, ...
0
votes
4answers
202 views

Keep .exe timestamp from changing

Does anybody know of a way to prevent the timestamp of an executable from changing? I'm trying to generate a consistent hash code for the .exe but I think the timestamp may be preventing that from ...