From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id D3990139694 for ; Fri, 24 Feb 2017 02:37:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1F75221C2A0; Fri, 24 Feb 2017 02:36:54 +0000 (UTC) Received: from forward15h.cmail.yandex.net (forward15h.cmail.yandex.net [IPv6:2a02:6b8:0:f35::a0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B0DF721C288 for ; Fri, 24 Feb 2017 02:36:53 +0000 (UTC) Received: from mxback13h.mail.yandex.net (mxback13h.mail.yandex.net [IPv6:2a02:6b8:0:f05::205]) by forward15h.cmail.yandex.net (Yandex) with ESMTP id 94BAA21C42 for ; Fri, 24 Feb 2017 05:36:51 +0300 (MSK) Received: from web19o.yandex.ru (web19o.yandex.ru [95.108.205.119]) by mxback13h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id 6XtMskwbk9-apnquvRp; Fri, 24 Feb 2017 05:36:51 +0300 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1487903811; bh=pcq5lW0dRSiG2iHDzc2PQRsta4PtQk+As+ecp3GQIqQ=; h=From:To:Subject:Message-Id:Date; b=FpxiRmbUm9eUry+WjmB2GA9tAUR4EAmds+Q2Ja55E0wv4WUjUVGnIFbkEGmFUZULS +Xu06mckbHRwQrq38me+CAleZRpwh4RMBt7CFhYpXXliS2mMsQiUUC4f3BXdFI8SbM SwePdaEVNyGDCp1TC8uksocLtN0oM+W4MD0kG5uA= Authentication-Results: mxback13h.mail.yandex.net; dkim=pass header.i=@yandex.ru Received: by web19o.yandex.ru with HTTP; Fri, 24 Feb 2017 05:36:51 +0300 From: Andrey Ponomarenko To: gentoo-dev Subject: [gentoo-dev] =?utf-8?B?QUJJIE5hdmlnYXRvciDigJQgYSBwcm9qZWN0IHRvIHNlYXJjaCBmb3IgYmluYXJ5IHN5bWJvbHM=?= Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org MIME-Version: 1.0 Message-Id: <6625021487903811@web19o.yandex.ru> X-Mailer: Yamail [ http://yandex.ru ] 5.0 Date: Fri, 24 Feb 2017 05:36:51 +0300 Content-Transfer-Encoding: 7bit Content-Type: text/plain X-Archives-Salt: 80652419-8895-4d4b-b757-350022cdb6d0 X-Archives-Hash: 5c435dd746e586afa256532a51ed5ed6 Hello, I'd like to present a new project called "ABI Navigator" for searching binary symbols (functions, methods, global data, etc.) in open-source libraries: https://abi-laboratory.pro/index.php?view=navigator The project allows to find out in which versions of libraries some symbol is defined, added, removed or changed. The data is taken from the ABI Tracker project (238 libraries and 0.9 million symbols currently): https://abi-laboratory.pro/tracker/ Example for symbol dwelf_strtab_add from libdw.so (elfutils): https://abi-laboratory.pro/index.php?view=navigator&selected=dwelf_strtab_add%40%40ELFUTILS_0.167#result The project aims to help Linux developers and maintainers to resolve issues with missed symbols and navigate through the reports in the ABI Tracker. Have you ever encountered the "undefined reference" error or want to know whether the symbol is _stable_ enough to use in your code? Try to find it in the ABI Navigator! Enjoy!