bpf.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alexei Starovoitov <ast@fb.com>
To: Yonghong Song <yhs@fb.com>, <bpf@vger.kernel.org>
Cc: Andrii Nakryiko <andrii@kernel.org>,
	Arnaldo Carvalho de Melo <arnaldo.melo@gmail.com>,
	<kernel-team@fb.com>, Nick Desaulniers <ndesaulniers@google.com>,
	Sedat Dilek <sedat.dilek@gmail.com>
Subject: Re: [PATCH bpf-next v3 0/5] bpf: tools: support build selftests/bpf with clang
Date: Thu, 15 Apr 2021 17:21:57 -0700	[thread overview]
Message-ID: <26309b44-e719-2fed-6feb-397389985d2b@fb.com> (raw)
In-Reply-To: <20210413153408.3027270-1-yhs@fb.com>

On 4/13/21 8:34 AM, Yonghong Song wrote:
> To build kernel with clang, people typically use
>    make -j60 LLVM=1 LLVM_IAS=1
> LLVM_IAS=1 is not required for non-LTO build but
> is required for LTO build. In my environment,
> I am always having LLVM_IAS=1 regardless of
> whether LTO is enabled or not.
> 
> After kernel is build with clang, the following command
> can be used to build selftests with clang:
>    make -j60 -C tools/testing/selftests/bpf LLVM=1 LLVM_IAS=1
> 
> I am using latest bpf-next kernel code base and
> latest clang built from source from
>    https://github.com/llvm/llvm-project.git
> Using earlier version of llvm may have compilation errors, see
>    tools/testing/selftests/bpf
> due to continuous development in llvm bpf features and selftests
> to use these features.
> 
> To run bpf selftest properly, you need have certain necessary
> kernel configs like at:
>    bpf-next:tools/testing/selftests/bpf/config
> (not that this is not a complete .config file and some other configs
>   might still be needed.)
> 
> Currently, using the above command, some compilations
> still use gcc and there are also compilation errors and warnings.
> This patch set intends to fix these issues.
> Patch #1 and #2 fixed the issue so clang/clang++ is
> used instead of gcc/g++. Patch #3 fixed a compilation
> failure. Patch #4 and #5 fixed various compiler warnings.
> 
> Changelog:
>    v2 -> v3:
>      . more test environment description in cover letter. (Sedat)
>      . use a different fix, but similar to other use in selftests/bpf
>        Makefile, to exclude header files from CXX compilation command
>        line. (Andrii)
>      . fix codes instead of adding -Wno-format-security. (Andrii)

I struggled to tweak my llvm setup, but at the end it compiled and
selftests/bpf/test_progs passed compiled by clang,
so I've applied to bpf-next.

The things I've seen:
1.
include <iostream> not found due to my setup quirks.
2.
diff selftests/bpf/tools/build/libbpf/libbpf_global_syms.tmp	
diff selftests/bpf/tools/build/libbpf/libbpf_versioned_syms.tmp	
  btf__set_pointer_size
  btf__str_by_offset
  btf__type_by_id
+LIBBPF_0.0.1
+LIBBPF_0.0.2
and this was happening with packaged llvm builds,
but my own llvm build was fine, so I didn't debug further.

3.
clang-12: error: unsupported option '-mrecord-mcount' for target 
'x86_64-unknown-linux-gnu'
due to kernel not built with clang.

I suspect followups will be needed to make it bulletproof.

  parent reply	other threads:[~2021-04-16  0:22 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-13 15:34 [PATCH bpf-next v3 0/5] bpf: tools: support build selftests/bpf with clang Yonghong Song
2021-04-13 15:34 ` [PATCH bpf-next v3 1/5] selftests: set CC to clang in lib.mk if LLVM is set Yonghong Song
2021-04-13 22:04   ` Andrii Nakryiko
2021-04-13 22:13     ` Nick Desaulniers
2021-04-13 22:27       ` Yonghong Song
2021-04-13 22:34         ` Nick Desaulniers
2021-04-13 23:22         ` Andrii Nakryiko
2021-04-13 15:34 ` [PATCH bpf-next v3 2/5] tools: allow proper CC/CXX/... override with LLVM=1 in Makefile.include Yonghong Song
2021-04-13 15:34 ` [PATCH bpf-next v3 3/5] selftests/bpf: fix test_cpp compilation failure with clang Yonghong Song
2021-04-13 22:05   ` Andrii Nakryiko
2021-04-13 15:34 ` [PATCH bpf-next v3 4/5] selftests/bpf: silence clang compilation warnings Yonghong Song
2021-04-13 22:07   ` Andrii Nakryiko
2021-04-13 22:17     ` Nick Desaulniers
2021-04-13 22:37       ` Yonghong Song
2021-04-13 15:34 ` [PATCH bpf-next v3 5/5] bpftool: fix a clang compilation warning Yonghong Song
2021-04-13 19:36 ` [PATCH bpf-next v3 0/5] bpf: tools: support build selftests/bpf with clang Martin KaFai Lau
2021-04-16  0:21 ` Alexei Starovoitov [this message]
2021-04-16  3:59   ` Yonghong Song

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=26309b44-e719-2fed-6feb-397389985d2b@fb.com \
    --to=ast@fb.com \
    --cc=andrii@kernel.org \
    --cc=arnaldo.melo@gmail.com \
    --cc=bpf@vger.kernel.org \
    --cc=kernel-team@fb.com \
    --cc=ndesaulniers@google.com \
    --cc=sedat.dilek@gmail.com \
    --cc=yhs@fb.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).