Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932557AbbFJA24 (ORCPT ); Tue, 9 Jun 2015 20:28:56 -0400 Received: from mail-pa0-f47.google.com ([209.85.220.47]:36205 "EHLO mail-pa0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751158AbbFJA2r (ORCPT ); Tue, 9 Jun 2015 20:28:47 -0400 Message-ID: <557784BD.9010502@plumgrid.com> Date: Tue, 09 Jun 2015 17:28:45 -0700 From: Alexei Starovoitov User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.10; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: "Wangnan (F)" , acme@kernel.org, brendan.d.gregg@gmail.com, daniel@iogearbox.net, namhyung@kernel.org, masami.hiramatsu.pt@hitachi.com, paulus@samba.org, a.p.zijlstra@chello.nl, mingo@redhat.com, jolsa@kernel.org, dsahern@gmail.com CC: linux-kernel@vger.kernel.org, lizefan@huawei.com, hekuang@huawei.com, xiakaixu@huawei.com, pi3orama@163.com Subject: Re: [RFC PATCH v6 24/32] perf record: Compile scriptlets if pass '.c' to --event References: <1433829036-23687-1-git-send-email-wangnan0@huawei.com> <1433829036-23687-25-git-send-email-wangnan0@huawei.com> <55775F3A.9080204@plumgrid.com> <55777F79.2080605@huawei.com> In-Reply-To: <55777F79.2080605@huawei.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1484 Lines: 47 On 6/9/15 5:06 PM, Wangnan (F) wrote: > > > On 2015/6/10 5:48, Alexei Starovoitov wrote: >> On 6/8/15 10:50 PM, Wang Nan wrote: >>> +struct bpf_param bpf_param = { >>> + .clang_path = "clang", >>> + .llc_path = "llc", >>> + .clang_opt = "", >>> + .llc_opt = "", >>> +}; >> >> the defaults are ok-ish, but llc is never in PATH. >> So most likely it won't work out of the box. >> I think the cleanest option is too wait a little bit >> until we finish clang integration. >> (hopefully few more days) >> >> we've quite been busy on llvm side >> and I'm excited to announce that BPF backend finally >> graduated from experimental. >> So now anyone can just pull the latest llvm and >> bpf will be present by default. >> No more cmake -DLLVM_EXPERIMENTAL... >> >> Once clang integration is complete. One can pull >> upsteam llvm and clang and just use 'clang -O2 -c -march=bpf file.c' >> > > Good news, so llc part should be removed. > > Next version I'd like to use following config options: > > [llvm] > clang-bpf-cmd-template = "$CLANG_EXEC $CLANG_OPTIONS -c > $CLANG_SOURCE -emit-llvm -O2 -o - | /path/to/llc -march=bpf > -filetype=obj -o -" > clang-path = "/path/to/clang" > clang-opt = "" yes. that's better. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/