Skip to content

Commit

Permalink
tools/net/Makefile: Define PACKAGE to fix build problems
Browse files Browse the repository at this point in the history
Fixes the following build problem with binutils-2.24

gcc -Wall -O2   -c -o bpf_jit_disasm.o bpf_jit_disasm.c
In file included from bpf_jit_disasm.c:25:0:
/usr/include/bfd.h:35:2: error: #error config.h must be included
before this header
 #error config.h must be included before this header

This is similar to commit 3ce711a
"perf tools: bfd.h/libbfd detection fails with recent binutils"

See: https://sourceware.org/bugzilla/show_bug.cgi?id=14243

CC: David S. Miller <davem@davemloft.net>
CC: Daniel Borkmann <dborkman@redhat.com>
CC: netdev@vger.kernel.org
Acked-by: Daniel Borkmann <dborkman@redhat.com>
Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Markos Chandras authored and David S. Miller committed Mar 12, 2014
1 parent fdfaf64 commit 4067646
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/net/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ YACC = bison

all : bpf_jit_disasm bpf_dbg bpf_asm

bpf_jit_disasm : CFLAGS = -Wall -O2
bpf_jit_disasm : CFLAGS = -Wall -O2 -DPACKAGE='bpf_jit_disasm'
bpf_jit_disasm : LDLIBS = -lopcodes -lbfd -ldl
bpf_jit_disasm : bpf_jit_disasm.o

Expand Down

0 comments on commit 4067646

Please sign in to comment.