Hi, We use C6000 compiler in our project, we wants to use the objdiff tool to compare the objects built and determined only the changed objects to be delivered, in our projects, the final deliver are the BIN files, from source code to BIN files it covers:
Source file(*.cpp) ---->(1)Object file (*.obj)---->(2) archive lib(*.lib)----> (3)linked out files(*.out) ----> (4)packed BIN files (*.BIN)
NOTE: (3) linked out files(*.out), during linking, it used the *.lib from (2) and also libs from other folder;
If we rebuilt the same code in the same build environment, by using the objdiff we can compare the *.obj are the same, some *.lib are different, and compared the linked *.out files and BIN files, they are different, is there any way to compare the *.out and *BIN files. Otherwise we are not able to tell the BIN are the same if the *.obj are the same.
Could someone advise if you have experience as this case? thanks.