lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20190226002019.3748539-12-songliubraving@fb.com> Date: Mon, 25 Feb 2019 16:20:15 -0800 From: Song Liu <songliubraving@...com> To: <netdev@...r.kernel.org>, <linux-kernel@...r.kernel.org> CC: <ast@...nel.org>, <daniel@...earbox.net>, <kernel-team@...com>, <peterz@...radead.org>, <acme@...hat.com>, <jolsa@...nel.org>, <namhyung@...nel.org>, Song Liu <songliubraving@...com> Subject: [PATCH v4 perf,bpf 11/15] perf: add -lopcodes to feature-libbfd Both libbfd and libopcodes are distributed with binutil-dev/devel. When libbfd presents, it is OK to assume libopcodes also presents. This has been a safe assumption for bpftool. This patch adds -lopcodes to perf/Makefile.config. libopcodes will be used in the next commit for bpf annotation. Signed-off-by: Song Liu <songliubraving@...com> --- tools/perf/Makefile.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/perf/Makefile.config b/tools/perf/Makefile.config index b441c88cafa1..e0bafbc273af 100644 --- a/tools/perf/Makefile.config +++ b/tools/perf/Makefile.config @@ -701,7 +701,7 @@ else endif ifeq ($(feature-libbfd), 1) - EXTLIBS += -lbfd + EXTLIBS += -lbfd -lopcodes else # we are on a system that requires -liberty and (maybe) -lz # to link against -lbfd; test each case individually here -- 2.17.1
Powered by blists - more mailing lists