git.droids-corp.org
/
dpdk.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b253525
)
examples/qos_sched: fix makefile
author
Olivier Matz
<olivier.matz@6wind.com>
Fri, 16 May 2014 08:18:59 +0000
(10:18 +0200)
committer
Thomas Monjalon
<thomas.monjalon@6wind.com>
Fri, 16 May 2014 14:02:55 +0000
(16:02 +0200)
The example does not compile as the linker complains about duplicated
symbols.
Remove -lsched from LDLIBS, it is already present in rte.app.mk and
added by the DPDK framework automatically.
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
examples/qos_sched/Makefile
patch
|
blob
|
history
diff --git
a/examples/qos_sched/Makefile
b/examples/qos_sched/Makefile
index
b91fe37
..
9366efe
100755
(executable)
--- a/
examples/qos_sched/Makefile
+++ b/
examples/qos_sched/Makefile
@@
-54,6
+54,4
@@
CFLAGS += $(WERROR_FLAGS)
CFLAGS_args.o := -D_GNU_SOURCE
CFLAGS_cfg_file.o := -D_GNU_SOURCE
-LDLIBS += -lrte_sched
-
include $(RTE_SDK)/mk/rte.extapp.mk