From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755886AbcB2PH1 (ORCPT ); Mon, 29 Feb 2016 10:07:27 -0500 Received: from mail.kernel.org ([198.145.29.136]:53422 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754645AbcB2PHY (ORCPT ); Mon, 29 Feb 2016 10:07:24 -0500 Date: Mon, 29 Feb 2016 12:07:20 -0300 From: Arnaldo Carvalho de Melo To: Jiri Olsa Cc: Wang Nan , Linux Kernel Mailing List Subject: libbabeltrace feature detection message Message-ID: <20160229150720.GC32719@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Jiri, While testing a patch by Wang, that requires building with libbabeltrace, I noticed that there are no feature detection message telling that it was found successfully. The end result is the desired one, it builds with babeltrace, but I wonder if we couldn't have the [ok] line for it: [acme@jouet linux]$ rm -rf /tmp/build/perf ; mkdir -p /tmp/build/perf ; make LIBBABELTRACE=1 O=/tmp/build/perf -C tools/perf install-bin make: Entering directory '/home/acme/git/linux/tools/perf' BUILD: Doing 'make -j4' parallel build Auto-detecting system features: ... dwarf: [ on ] ... glibc: [ on ] ... gtk2: [ on ] ... libaudit: [ on ] ... libbfd: [ on ] ... libelf: [ on ] ... libnuma: [ on ] ... numa_num_possible_cpus: [ on ] ... libperl: [ on ] ... libpython: [ on ] ... libslang: [ on ] ... libcrypto: [ on ] ... libunwind: [ on ] ... libdw-dwarf-unwind: [ on ] ... zlib: [ on ] ... lzma: [ on ] ... get_cpuid: [ on ] ... bpf: [ on ] GEN /tmp/build/perf/common-cmds.h CC /tmp/build/perf/fixdep.o LD /tmp/build/perf/fixdep-in.o [acme@jouet linux]$ ldd ~/bin/perf | grep babel libbabeltrace-ctf.so.1 => /lib64/libbabeltrace-ctf.so.1 (0x00007fce5c405000) libbabeltrace.so.1 => /lib64/libbabeltrace.so.1 (0x00007fce5bd69000) [acme@jouet linux]$ - Arnaldo