[PATCH v3] tools: perf: fix linker error when libelf config is disabled

2017-01-04 Thread Sudeep Holla
When libelf is disabled in the configuration, we get the following linker error: LINK libperf-jvmti.so ld: cannot find -lelf Makefile.perf:515: recipe for target 'libperf-jvmti.so' failed Jiri pointed out that both librt and libelf are not really required. So this patch fixes the linker

Re: [PATCH v3] tools: perf: fix linker error when libelf config is disabled

2017-01-04 Thread Jiri Olsa
On Wed, Jan 04, 2017 at 05:30:02PM +, Sudeep Holla wrote: > When libelf is disabled in the configuration, we get the following > linker error: > LINK libperf-jvmti.so > ld: cannot find -lelf > Makefile.perf:515: recipe for target 'libperf-jvmti.so' failed > > Jiri pointed out that bo