* ``--no-show-locs``
- Do not show information about where in the *second shared library*
- the respective type was changed.
+ In the emitted ABI representation, do not show file, line or column
+ where ABI artifacts are defined.
* ``--check-alternate-debug-info-base-name`` <*elf-path*>
string abidw;
abidw = string(get_build_dir()) + "/tools/abidw "
- "--annotate --no-show-locs --no-corpus-path";
+ "--annotate --no-corpus-path";
for (InOutSpec* s = in_out_specs; s->in_elf_path; ++s)
{
in_elf_path = string(get_src_dir()) + "/tests/" + s->in_elf_path;
<< " --suppressions|--suppr <path> specify a suppression file\n"
<< " --no-architecture do not emit architecture info in the output\n"
<< " --no-corpus-path do not take the path to the corpora into account\n"
- << " --no-show-locs do now show location information\n"
+ << " --no-show-locs do not show location information\n"
<< " --check-alternate-debug-info <elf-path> check alternate debug info "
"of <elf-path>\n"
<< " --check-alternate-debug-info-base-name <elf-path> check alternate "
abigail::xml_writer::write_context_sptr write_ctxt =
abigail::xml_writer::create_write_context(corp->get_environment(),
of);
+ abigail::xml_writer::set_show_locs(*write_ctxt, opts.show_locs);
abigail::xml_writer::set_annotate(*write_ctxt, opts.annotate);
abigail::xml_writer::write_corpus(corp, 0, *write_ctxt);
of.close();
abigail::xml_writer::write_context_sptr write_ctxt =
abigail::xml_writer::create_write_context(corp->get_environment(),
cout);
+ abigail::xml_writer::set_show_locs(*write_ctxt, opts.show_locs);
abigail::xml_writer::set_annotate(*write_ctxt, opts.annotate);
exit_code = !abigail::xml_writer::write_corpus(corp, 0, *write_ctxt);
}