ABI Compliance Checker Options
Contents |
Information Options
- -h|-help
Print help message.
- -i|-info
Print complete info.
- -v|-version
Print version information.
- -dumpversion
Print the tool version and don't do anything else.
General Options
- -l|-lib|-library <name>
Library name (without version). It affects only on the path and the title of the report.
- -d1|-old|-o <path>
Path to the descriptor of 1st (old) library version.
- -d2|-new|-n <path>
Path to the descriptor of 2nd (new) library version.
- -dump|-dump-abi <descriptor.xml>
Dump library ABI to gzipped TXT format file. You can transfer it anywhere and pass instead of the XML-descriptor. Also it may be used for debugging the tool.
- -old-dumps
Enable support for old-version ABI dumps.
Extra Options
- -d|-descriptor-template
Create XML-descriptor template ./VERSION.xml
- -app|-application <path>
This option allow to specify the application that should be tested for portability to the new library version.
- -static-libs
Check static libraries instead of the shared ones. The <libs> section of the XML-descriptor should point to static libraries location.
- -cross-gcc <path>
Path to the cross GCC compiler to use instead of the usual (host) GCC.
- -cross-prefix <path>
GCC toolchain prefix.
- -sysroot <dirpath>
Specify the alternative root directory. The tool will search for include paths in the <dirpath>/usr/include and <dirpath>/usr/lib directories.
- -v1|-version1 <num>
Specify 1st library version outside the descriptor.
- -v2|-version2 <num>
Specify 2nd library version outside the descriptor.
- -s|-strict
Treat all compatibility warnings as problems.
- -headers-only
Check header files without shared libraries. It is easy to run, but may provide provide a low quality compatibility report with false positives and without detecting of added/removed symbols.
- -objects-only
Check shared libraries without header files. It is easy to run, but may a low quality report with false positives and without analysis of changes in parameters and data types.
- -check-impl|-check-implementation
Compare canonified disassembled binary code of shared objects to detect changes in the implementation. Create section 'Changes in Implementation' in the report.
- -show-retval
Show the symbol's return type in the report.
- -symbols-list <path>
This option allow to specify a file with a list of interfaces (mangled names in C++) that should be checked, other library interfaces will not be checked.
- -use-dumps
Make dumps for two versions of a library and compare dumps. This should increase the performance of the tool and decrease the operative memory usage.
- -nostdinc
Do not search the GCC standard system directories for header files.
- -dump-system <name>
Find all the shared libraries and header files in <dirpath> directory, create XML descriptors and make ABI dumps for each library. The result set of ABI dumps can be compared (--cmp-systems) with the other one created for other version of operating system in order to check them for compatibility. Do not forget to specify -cross-gcc option if your target system requires some specific version of GCC compiler (different from the host GCC). The system ABI dump will be generated to: sys_dumps/<name>/<arch>.
- -dump-system <descriptor.xml>
The same as the previous option but takes an XML descriptor of the target system.
- -sysinfo <dir>
This option may be used with -dump-system to dump ABI of operating systems and configure the dumping process. Default: modules/SysInfo/<target> {unix, symbian, windows}
- -cmp-systems
Compare two system ABI dumps. Create compatibility reports for each library and the common HTML report including the summary of test results for all checked libraries. Report will be generated to: sys_compat_reports/<name1>_to_<name2>/<arch>.
- -libs-list <path>
The file with a list of libraries, that should be dumped by the -dump-system option or should be checked by the -cmp-systems option.
- -header <name>
Check/Dump ABI of this header only.
- -headers-list <path>
The file with a list of headers, that should be checked/dumped.
- -ext|-extended
If your library A is supposed to be used by other library B and you want to control the ABI of B, then you should enable this option. The tool will check for changes in all data types, even if they are not used by any function in the library A. Such data types are not part of the A library ABI, but may be a part of the ABI of the B library.
- -q|-quiet
Print all messages to the file instead of stdout and stderr.
- -stdout
Print analysis results (compatibility reports and ABI dumps) to stdout instead of creating a file. This would allow piping data to other programs.
- -report-format <fmt>
Change format of compatibility report (htm, xml).
- -xml
Alias for: --report-format=xml
- -lang <lang>
Set library language (C or C++). You can use this option if the tool cannot auto-detect a language. This option may be useful for checking C-library headers (--lang=C) in --headers-only or --extended modes.
- -binary|-bin|-abi
Show binary-compatibility problems only. Generate report to: compat_reports/<library name>/<v1>_to_<v2>/abi_compat_report.html
- -source|-src|-api
Show source-compatibility problems only. Generate report to: compat_reports/<library name>/<v1>_to_<v2>/src_compat_report.html
Other Options
- -test
Run internal tests. Create two binary incompatible versions of a sample library and run the tool to check them for compatibility. This option allows to check if the tool works correctly in the current environment.
- -test-dump
Test ability to create, restore and compare ABI dumps.
- -debug
Debugging mode. Print debug info on the screen. Save intermediate analysis stages in the debug directory: debug/<library>/<version>/.
- -cpp-compatible
If your header file is written in C language and can be compiled by the C++ compiler (i.e. doesn't contain C++-keywords), then you can tell ACC about this and speedup the analysis.
- -p|-params <path>
Path to file with the function parameter names. It can be used for improving report view if the library header files don't contain parameter names. File format:
func1;param1;param2;param3 ...
func2;param1;param2;param3 ...
- -relpath <path>
Replace {RELPATH} macros to <path> in the XML-descriptor used for dumping the library ABI (see -dump option).
- -relpath1 <path>
Replace {RELPATH} macros to <path> in the 1st XML-descriptor (see -d1 option).
- -relpath2 <path>
Replace {RELPATH} macros to <path> in the 2nd XML-descriptor (see -d2 option).
- -dump-path <path>
Specify the path to a file (*.abi.tar.gz) where to generate the ABI dump. Default dump path: abi_dumps/<library>/<library>_<version>.abi.tar.gz
- -report-path <path>
Specify the file path where to generate the compatibility report. Default report path: compat_reports/<library name>/<v1>_to_<v2>/abi_compat_report.html
- -bin-report-path <path>
Path to binary-compatibility report. Default: compat_reports/<library name>/<v1>_to_<v2>/abi_compat_report.html
- -src-report-path <path>
Path to source-compatibility report. Default: compat_reports/<library name>/<v1>_to_<v2>/src_compat_report.html
- -log-path <path>
Log path for all messages. Default log path: logs/<library>/<version>/log.txt
- -log1-path <path>
Log path for 1st version of a library. Default log path: logs/<library name>/<v1>/log.txt
- -log2-path <path>
Log path for 2nd version of a library. Default log path: logs/<library name>/<v1>/log.txt
- -logging-mode <mode>
Change logging mode. Modes: w - overwrite old logs (default), a - append old logs, n - do not write any logs
- -list-affected
Generate file with the list of incompatible symbols beside the HTML compatibility report. Use 'c++filt @file' command from GNU Binutils to unmangle C++ symbols in the generated file. Default name: abi_affected.txt
- -component <name>
The component name in the title and summary of the HTML report. Default: library
- -l-full|-lib-full <name>
Change library name in the report title to <name>. By default will be displayed a name specified by -l option.
- -b|-browse <program>
Open report(s) in the browser (firefox, opera, etc.).