Hi,
I'd like to know if it is possible somehow to use files containing data like below as a way to filter out comparisons:
pineapple=orange
In which case, instances of 'pineapple' on file1 would only appear as a difference in case it wasn't 'orange' in file2.
The reasoning here is that I have to handle thousands of labels on a decompiled project which can have said label names changed by the decompiler (so they aren't very constant), and compare it to my current code base, in which those labels have proper names.
I already made a tool to export the labels from both files. So basically what I need is a way to make BC4 look at something like myproperlabel in file1, and compare it to label_2314 in file two, and if they are the same there, it should consider them equal.
Hope there is a way to do this, it would save me a lot of headache dealing with this project.
Regards
I'd like to know if it is possible somehow to use files containing data like below as a way to filter out comparisons:
pineapple=orange
In which case, instances of 'pineapple' on file1 would only appear as a difference in case it wasn't 'orange' in file2.
The reasoning here is that I have to handle thousands of labels on a decompiled project which can have said label names changed by the decompiler (so they aren't very constant), and compare it to my current code base, in which those labels have proper names.
I already made a tool to export the labels from both files. So basically what I need is a way to make BC4 look at something like myproperlabel in file1, and compare it to label_2314 in file two, and if they are the same there, it should consider them equal.
Hope there is a way to do this, it would save me a lot of headache dealing with this project.
Regards
Comment