vhost: fix combined lib link with -lfuse
The vhost library relies on libfuse, and thats included when we do a normal shared object build, but when we specify combined libs, its gets left out. Add it back in. Reported-by: Flavio Leitner <fbl@redhat.com> Signed-off-by: Neil Horman <nhorman@tuxdriver.com> Acked-by: Thomas Monjalon <thomas.monjalon@6wind.com>
This commit is contained in:
parent
bfca21f8a0
commit
88fa98a60b
@ -131,6 +131,10 @@ ifeq ($(CONFIG_RTE_LIBRTE_PMD_PCAP),y)
|
||||
LDLIBS += -lpcap
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_VHOST),y)
|
||||
LDLIBS += -lfuse
|
||||
endif
|
||||
|
||||
LDLIBS += --start-group
|
||||
|
||||
ifeq ($(CONFIG_RTE_BUILD_COMBINE_LIBS),n)
|
||||
@ -197,7 +201,6 @@ endif
|
||||
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_VHOST), y)
|
||||
LDLIBS += -lrte_vhost
|
||||
LDLIBS += -lfuse
|
||||
endif
|
||||
|
||||
ifeq ($(CONFIG_RTE_LIBRTE_ENIC_PMD),y)
|
||||
|
Loading…
Reference in New Issue
Block a user