summaryrefslogtreecommitdiff
path: root/samples/bpf/README.rst
diff options
context:
space:
mode:
authorJesper Dangaard Brouer <brouer@redhat.com>2016-04-28 14:21:14 +0200
committerDavid S. Miller <davem@davemloft.net>2016-04-29 14:26:08 -0400
commitbdefbbf2ecff6efcd253767179a60961aebed9dc (patch)
tree101cead89daccb56ee9bcf050e9a6537406e17ce /samples/bpf/README.rst
parentb62a796c109ca0be3e49de620a8ea8248412446d (diff)
samples/bpf: like LLC also verify and allow redefining CLANG command
Users are likely to manually compile both LLVM 'llc' and 'clang' tools. Thus, also allow redefining CLANG and verify command exist. Makefile implementation wise, the target that verify the command have been generalized. Signed-off-by: Jesper Dangaard Brouer <brouer@redhat.com> Acked-by: Alexei Starovoitov <ast@kernel.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/bpf/README.rst')
-rw-r--r--samples/bpf/README.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/samples/bpf/README.rst b/samples/bpf/README.rst
index e36687d900c8..a43eae3f0551 100644
--- a/samples/bpf/README.rst
+++ b/samples/bpf/README.rst
@@ -60,7 +60,7 @@ Quick sniplet for manually compiling LLVM and clang
$ cmake .. -DLLVM_TARGETS_TO_BUILD="BPF;X86"
$ make -j $(getconf _NPROCESSORS_ONLN)
-It is also possible to point make to the newly compiled 'llc' command
-via redefining LLC on the make command line::
+It is also possible to point make to the newly compiled 'llc' or
+'clang' command via redefining LLC or CLANG on the make command line::
- make samples/bpf/ LLC=~/git/llvm/build/bin/llc
+ make samples/bpf/ LLC=~/git/llvm/build/bin/llc CLANG=~/git/llvm/build/bin/clang