xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] tools: Fix build of QEMU with lib xendevicemodel support
@ 2017-03-02 11:22 Anthony PERARD
  2017-03-02 11:32 ` Wei Liu
  2017-03-02 11:39 ` Paul Durrant
  0 siblings, 2 replies; 3+ messages in thread
From: Anthony PERARD @ 2017-03-02 11:22 UTC (permalink / raw)
  To: xen-devel; +Cc: Anthony PERARD, Wei Liu, Paul Durrant, Ian Jackson

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
 tools/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/Makefile b/tools/Makefile
index 68633a413d..3e15463567 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -269,6 +269,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find
 		-I$(XEN_ROOT)/tools/libs/evtchn/include \
 		-I$(XEN_ROOT)/tools/libs/gnttab/include \
 		-I$(XEN_ROOT)/tools/libs/foreignmemory/include \
+		-I$(XEN_ROOT)/tools/libs/devicemodel/include \
 		-I$(XEN_ROOT)/tools/libxc/include \
 		-I$(XEN_ROOT)/tools/xenstore/include \
 		-I$(XEN_ROOT)/tools/xenstore/compat/include \
@@ -278,6 +279,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find
 		-L$(XEN_ROOT)/tools/libs/evtchn \
 		-L$(XEN_ROOT)/tools/libs/gnttab \
 		-L$(XEN_ROOT)/tools/libs/foreignmemory \
+		-L$(XEN_ROOT)/tools/libs/devicemodel \
 		-Wl,-rpath-link=$(XEN_ROOT)/tools/libs/toollog \
 		-Wl,-rpath-link=$(XEN_ROOT)/tools/libs/evtchn \
 		-Wl,-rpath-link=$(XEN_ROOT)/tools/libs/gnttab \
-- 
Anthony PERARD


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] tools: Fix build of QEMU with lib xendevicemodel support
  2017-03-02 11:22 [PATCH] tools: Fix build of QEMU with lib xendevicemodel support Anthony PERARD
@ 2017-03-02 11:32 ` Wei Liu
  2017-03-02 11:39 ` Paul Durrant
  1 sibling, 0 replies; 3+ messages in thread
From: Wei Liu @ 2017-03-02 11:32 UTC (permalink / raw)
  To: Anthony PERARD; +Cc: xen-devel, Paul Durrant, Ian Jackson, Wei Liu

On Thu, Mar 02, 2017 at 11:22:35AM +0000, Anthony PERARD wrote:
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

Acked + applied.

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] tools: Fix build of QEMU with lib xendevicemodel support
  2017-03-02 11:22 [PATCH] tools: Fix build of QEMU with lib xendevicemodel support Anthony PERARD
  2017-03-02 11:32 ` Wei Liu
@ 2017-03-02 11:39 ` Paul Durrant
  1 sibling, 0 replies; 3+ messages in thread
From: Paul Durrant @ 2017-03-02 11:39 UTC (permalink / raw)
  To: xen-devel@lists.xenproject.org; +Cc: Anthony Perard, Ian Jackson, Wei Liu

> -----Original Message-----
> From: Anthony PERARD [mailto:anthony.perard@citrix.com]
> Sent: 02 March 2017 11:23
> To: xen-devel@lists.xenproject.org
> Cc: Paul Durrant <Paul.Durrant@citrix.com>; Anthony Perard
> <anthony.perard@citrix.com>; Ian Jackson <Ian.Jackson@citrix.com>; Wei
> Liu <wei.liu2@citrix.com>
> Subject: [PATCH] tools: Fix build of QEMU with lib xendevicemodel support
> 
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

You beat me to it. I just found this when I blew away my installed tools.

Thanks for fixing.

  Paul

> ---
>  tools/Makefile | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/tools/Makefile b/tools/Makefile
> index 68633a413d..3e15463567 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -269,6 +269,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find
>  		-I$(XEN_ROOT)/tools/libs/evtchn/include \
>  		-I$(XEN_ROOT)/tools/libs/gnttab/include \
>  		-I$(XEN_ROOT)/tools/libs/foreignmemory/include \
> +		-I$(XEN_ROOT)/tools/libs/devicemodel/include \
>  		-I$(XEN_ROOT)/tools/libxc/include \
>  		-I$(XEN_ROOT)/tools/xenstore/include \
>  		-I$(XEN_ROOT)/tools/xenstore/compat/include \
> @@ -278,6 +279,7 @@ subdir-all-qemu-xen-dir: qemu-xen-dir-find
>  		-L$(XEN_ROOT)/tools/libs/evtchn \
>  		-L$(XEN_ROOT)/tools/libs/gnttab \
>  		-L$(XEN_ROOT)/tools/libs/foreignmemory \
> +		-L$(XEN_ROOT)/tools/libs/devicemodel \
>  		-Wl,-rpath-link=$(XEN_ROOT)/tools/libs/toollog \
>  		-Wl,-rpath-link=$(XEN_ROOT)/tools/libs/evtchn \
>  		-Wl,-rpath-link=$(XEN_ROOT)/tools/libs/gnttab \
> --
> Anthony PERARD


_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2017-03-02 11:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-03-02 11:22 [PATCH] tools: Fix build of QEMU with lib xendevicemodel support Anthony PERARD
2017-03-02 11:32 ` Wei Liu
2017-03-02 11:39 ` Paul Durrant

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).