What is the quickest way to determine if files have changed during build?
Accepted answer
One approach would be to compute checksums for each file in your extracted build tree prior to building anything, storing the information into a file. You can then to the same process after the build is over and compare the checksums.
Of course I don't know your requirements, but generally speaking it's a bad idea to be modifying source files during a build.
Of course I don't know your requirements, but generally speaking it's a bad idea to be modifying source files during a build.
Comments
Jeff Care
Jun 07 '13, 1:40 p.m.Todd Strangio
Jun 07 '13, 1:56 p.m.