qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 3/3] contrib/rdmacm-mux: fix clang compilation


From: Yuval Shaia
Subject: Re: [Qemu-devel] [PATCH 3/3] contrib/rdmacm-mux: fix clang compilation
Date: Sun, 13 Jan 2019 21:26:45 +0200
User-agent: Mutt/1.10.1 (2018-07-13)

On Sat, Jan 12, 2019 at 05:02:25PM +0200, Marcel Apfelbaum wrote:
> Fix Commit a5d2f6f877 (contrib/rdmacm-mux: Add implementation
>                        of RDMA User MAD multiplexer).
> 
> The above commit introduces a new contrib target, adding a global dependency
> to libumad library in case pvrdma configuration option is enabled.
> Clang forbids it:
>     clang-6.0: error: -libumad: 'linker' input unused
>               [-Werror,-Wunused-command-line-argument]
> 
> Fix by limiting the scope to the rdmacm-mux target itself.
> 
> Reported-by: Cornelia Huck <address@hidden>
> Signed-off-by: Marcel Apfelbaum <address@hidden>
> ---
>  Makefile                         | 2 ++
>  contrib/rdmacm-mux/Makefile.objs | 1 -
>  2 files changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/Makefile b/Makefile
> index a9ac16d94e..31e87e0c2d 100644
> --- a/Makefile
> +++ b/Makefile
> @@ -580,6 +580,8 @@ vhost-user-scsi$(EXESUF): $(vhost-user-scsi-obj-y) 
> libvhost-user.a
>       $(call LINK, $^)
>  vhost-user-blk$(EXESUF): $(vhost-user-blk-obj-y) libvhost-user.a
>       $(call LINK, $^)
> +
> +rdmacm-mux$(EXESUF): LIBS += "-libumad"
>  rdmacm-mux$(EXESUF): $(rdmacm-mux-obj-y) $(COMMON_LDADDS)
>       $(call LINK, $^)
>  
> diff --git a/contrib/rdmacm-mux/Makefile.objs 
> b/contrib/rdmacm-mux/Makefile.objs
> index e1ff4fe569..3df744af89 100644
> --- a/contrib/rdmacm-mux/Makefile.objs
> +++ b/contrib/rdmacm-mux/Makefile.objs
> @@ -1,4 +1,3 @@
>  ifdef CONFIG_PVRDMA
> -CFLAGS += -libumad

My bad, thanks for doing it the right way.

Reviewed-by: Yuval Shaia <address@hidden>

>  rdmacm-mux-obj-y = main.o
>  endif
> -- 
> 2.17.1
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]