Re: [PATCH bpf] selftests/bpf: fix Makefile for passing LLC to the command line

2017-12-21 Thread Daniel Borkmann
On 12/21/2017 05:52 PM, Jakub Kicinski wrote: > From: Quentin Monnet > > Makefile has a LLC variable that is initialised to "llc", but can > theoretically be overridden from the command line ("make LLC=llc-6.0"). > However, this fails because for LLVM probe check, "llc" is called > directly. Use

[PATCH bpf] selftests/bpf: fix Makefile for passing LLC to the command line

2017-12-21 Thread Jakub Kicinski
From: Quentin Monnet Makefile has a LLC variable that is initialised to "llc", but can theoretically be overridden from the command line ("make LLC=llc-6.0"). However, this fails because for LLVM probe check, "llc" is called directly. Use the $(LLC) variable instead to fix this. Fixes: 22c885262