-
Notifications
You must be signed in to change notification settings - Fork 84
Description
I want to compare 2 versions of my c++ code and for that, as stated in the document I have installed
REQUIREMENTS FOR MS WINDOWS
- MinGW (3.0 or newer)
- MS Visual C++ (dumpbin, undname, cl)
- Active Perl 5 (5.8 or newer)
- Sigcheck v1.71 or newer
- Info-ZIP 3.0 (zip, unzip)
- Ctags
and added tool locations to the PATH environment variable.
As per https://lvc.github.io/abi-compliance-checker/#Downloads
I have downloaded and extracted 'abi-compliance-checker-2.3.zip'
when I am comparing two versions of a library using the command:
abi-compliance-checker -lib NAME -old V1.xml -new V2.xml
I am getting error : 'abi-compliance-checker' is not recognized as an internal or external command,
operable program or batch file.
- In the extracted 'abi-compliance-checker-2.3' folder there is no exe found.
-In the document, it is given
Installation
The tool is ready-to-use after extracting the archive.
You can also use a Makefile to install the tool into the system:
sudo make install prefix=PREFIX [/usr, /usr/local]
Question: If I am using windows I can't run the above-written command also as per the document The tool is ready-to-use after extracting the archive. is also not working for me, What should I do to make the abi-compliance-checker command work on windows10?