All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH MINI-OS] Link against libxentoolcore
@ 2017-10-03 18:45 Ian Jackson
  2017-10-04  9:23 ` Wei Liu
  0 siblings, 1 reply; 3+ messages in thread
From: Ian Jackson @ 2017-10-03 18:45 UTC (permalink / raw)
  To: Wei Liu; +Cc: xen-devel, Ian Jackson

Bringing this commit into xen.git needs coordination with the
corresponding change to introduce the new library: this commit nees to
be introdeuced to xen.git immediately after
   xentoolcore, _restrict_all: Introduce new library and implementation

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 5bdcdac..88315c4 100644
--- a/Makefile
+++ b/Makefile
@@ -124,6 +124,8 @@ OBJS := $(filter-out $(OBJ_DIR)/lwip%.o $(LWO), $(OBJS))
 
 ifeq ($(libc),y)
 ifeq ($(CONFIG_XC),y)
+APP_LDLIBS += -L$(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toolcore -whole-archive -lxentoolcore -no-whole-archive
+LIBS += $(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toolcore/libxentoolcore.a
 APP_LDLIBS += -L$(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toollog -whole-archive -lxentoollog -no-whole-archive
 LIBS += $(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toollog/libxentoollog.a
 APP_LDLIBS += -L$(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/evtchn -whole-archive -lxenevtchn -no-whole-archive
-- 
2.1.4


_______________________________________________
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 MINI-OS] Link against libxentoolcore
  2017-10-03 18:45 [PATCH MINI-OS] Link against libxentoolcore Ian Jackson
@ 2017-10-04  9:23 ` Wei Liu
  2017-10-06 14:49   ` [PATCH MINI-OS] Link against libxentoolcore [and 1 more messages] Ian Jackson
  0 siblings, 1 reply; 3+ messages in thread
From: Wei Liu @ 2017-10-04  9:23 UTC (permalink / raw)
  To: Ian Jackson; +Cc: xen-devel, Wei Liu

On Tue, Oct 03, 2017 at 07:45:19PM +0100, Ian Jackson wrote:
> Bringing this commit into xen.git needs coordination with the
> corresponding change to introduce the new library: this commit nees to
> be introdeuced to xen.git immediately after
>    xentoolcore, _restrict_all: Introduce new library and implementation
> 
> Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>

Acked-by: Wei Liu <wei.liu2@citrix.com>

_______________________________________________
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 MINI-OS] Link against libxentoolcore [and 1 more messages]
  2017-10-04  9:23 ` Wei Liu
@ 2017-10-06 14:49   ` Ian Jackson
  0 siblings, 0 replies; 3+ messages in thread
From: Ian Jackson @ 2017-10-06 14:49 UTC (permalink / raw)
  To: Wei Liu, minios-devel; +Cc: xen-devel

FYI, re the patch below.  I posted it only to xen-devel by mistake.

Thanks,
Ian.

Ian Jackson writes ("[PATCH MINI-OS] Link against libxentoolcore"):
> Bringing this commit into xen.git needs coordination with the
> corresponding change to introduce the new library: this commit nees to
> be introdeuced to xen.git immediately after
>    xentoolcore, _restrict_all: Introduce new library and implementation
> 
> Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
...

Wei Liu writes ("Re: [PATCH MINI-OS] Link against libxentoolcore"):
> On Tue, Oct 03, 2017 at 07:45:19PM +0100, Ian Jackson wrote:
> > Bringing this commit into xen.git needs coordination with the
> > corresponding change to introduce the new library: this commit nees to
> > be introdeuced to xen.git immediately after
> >    xentoolcore, _restrict_all: Introduce new library and implementation
> > 
> > Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
> 
> Acked-by: Wei Liu <wei.liu2@citrix.com>

And the patch again, below, with Wei's ack added.

Ian.

From: Ian Jackson <ian.jackson@eu.citrix.com>
Subject: [PATCH MINI-OS] Link against libxentoolcore

Bringing this commit into xen.git needs coordination with the
corresponding change to introduce the new library: this commit nees to
be introdeuced to xen.git immediately after
   xentoolcore, _restrict_all: Introduce new library and implementation

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
Acked-by: Wei Liu <wei.liu2@citrix.com>
---
 Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Makefile b/Makefile
index 5bdcdac..88315c4 100644
--- a/Makefile
+++ b/Makefile
@@ -124,6 +124,8 @@ OBJS := $(filter-out $(OBJ_DIR)/lwip%.o $(LWO), $(OBJS))
 
 ifeq ($(libc),y)
 ifeq ($(CONFIG_XC),y)
+APP_LDLIBS += -L$(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toolcore -whole-archive -lxentoolcore -no-whole-archive
+LIBS += $(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toolcore/libxentoolcore.a
 APP_LDLIBS += -L$(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toollog -whole-archive -lxentoollog -no-whole-archive
 LIBS += $(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/toollog/libxentoollog.a
 APP_LDLIBS += -L$(XEN_ROOT)/stubdom/libs-$(MINIOS_TARGET_ARCH)/evtchn -whole-archive -lxenevtchn -no-whole-archive
-- 
2.1.4


_______________________________________________
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

end of thread, other threads:[~2017-10-06 14:49 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-10-03 18:45 [PATCH MINI-OS] Link against libxentoolcore Ian Jackson
2017-10-04  9:23 ` Wei Liu
2017-10-06 14:49   ` [PATCH MINI-OS] Link against libxentoolcore [and 1 more messages] Ian Jackson

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.