search for: append_ldflag

Displaying 9 results from an estimated 9 matches for "append_ldflag".

Did you mean: append_ldflags
2011 Nov 03
3
[PATCH 0 of 2 RESEND] tools: add two new compile flags and perform checks on user defined folders.
Added two new sets of compile flags, and pass them to the check scripts, so libraries and includes are searched there also. Resend this patches because they suffered some modifications and where scattered along the mailing list. Please review, thanks Roger. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2013 May 14
5
tools/libxl: fix compilation and link errors on NetBSD
...-56,7 +56,7 @@ SHLIB_libblktapctl = endif CFLAGS_libxenlight = -I$(XEN_XENLIGHT) $(CFLAGS_libxenctrl) $(CFLAGS_xeninclude) -LDLIBS_libxenlight = $(XEN_XENLIGHT)/libxenlight.so $(SHLIB_libxenctrl) $(SHLIB_libxenstore) $(SHLIB_libblktapctl) +LDLIBS_libxenlight = $(XEN_XENLIGHT)/libxenlight.so $(APPEND_LDFLAGS) -lyajl $(SHLIB_libxenctrl) $(SHLIB_libxenstore) $(SHLIB_libblktapctl) SHLIB_libxenlight = -Wl,-rpath-link=$(XEN_XENLIGHT) CFLAGS += -D__XEN_TOOLS__ diff --git a/tools/libxl/Makefile b/tools/libxl/Makefile index cf214bb..c65c11e 100644 --- a/tools/libxl/Makefile +++ b/tools/libxl/Makefile @@...
2013 Apr 22
2
[PATCH] tools/xenbackendd: make 'gmake clean' properly cleaning
...ckendd/Makefile index 8374ad3..31e5c62 100644 --- a/tools/xenbackendd/Makefile +++ b/tools/xenbackendd/Makefile @@ -30,7 +30,7 @@ install: build .PHONY: clean clean: - rm -f $(DEPS) + $(RM) *.a *.so *.o $(DEPS) xenbackendd xenbackendd: xenbackendd.o $(CC) $(LDFLAGS) $< -o $@ $(LDLIBS) $(APPEND_LDFLAGS) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xen.org http://lists.xen.org/xen-devel
2015 Jan 22
0
Ubuntu delta against 4.5.0-1 in experimental for disussion
...debian/rules.real > --- xen-4.5.0/debian/rules.real 2015-01-20 19:29:03.000000000 +0100 > +++ xen-4.5.0/debian/rules.real 2015-01-22 11:44:54.000000000 +0100 > @@ -95,7 +95,6 @@ > EXTRA_CFLAGS_XEN_TOOLS="$(CFLAGS)" \ > APPEND_CPPFLAGS="$(CPPFLAGS)" \ > APPEND_LDFLAGS="$(LDFLAGS)" \ > - OCAMLDESTDIR=$(CURDIR)/$(BUILD_DIR)/install-utils_$(ARCH)/$(OCAML_STDLIB_DIR) \ > PYTHON=$(shell pyversions -r) > > $(STAMPS_DIR)/build-utils_$(ARCH): DIR=$(BUILD_DIR)/build-utils_$(ARCH) > @@ -152,6 +151,9 @@ > dh_testroot > dh_prep >...
2015 Jan 22
5
Ubuntu delta against 4.5.0-1 in experimental for disussion
...0/debian/rules.real xen-4.5.0/debian/rules.real --- xen-4.5.0/debian/rules.real 2015-01-20 19:29:03.000000000 +0100 +++ xen-4.5.0/debian/rules.real 2015-01-22 11:44:54.000000000 +0100 @@ -95,7 +95,6 @@ EXTRA_CFLAGS_XEN_TOOLS="$(CFLAGS)" \ APPEND_CPPFLAGS="$(CPPFLAGS)" \ APPEND_LDFLAGS="$(LDFLAGS)" \ - OCAMLDESTDIR=$(CURDIR)/$(BUILD_DIR)/install-utils_$(ARCH)/$(OCAML_STDLIB_DIR) \ PYTHON=$(shell pyversions -r) $(STAMPS_DIR)/build-utils_$(ARCH): DIR=$(BUILD_DIR)/build-utils_$(ARCH) @@ -152,6 +151,9 @@ dh_testroot dh_prep dh_installdirs boot + dh_installdirs...
2013 Feb 07
5
[PATCH v8] gcov: Coverage support
Updated set of patches for coverage. Changes: - change copyright lines - use gcov: instead of cover: in commit comment - use #ifdef in xen/common/sysctl.c instead of dummy inline function - added base documentation in docs/misc - added -h option to xencov
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...HONY: fs-install fs-install: fs-all - $(INSTALL_DIR) $(DESTDIR)$(FSDIR)/$(FS) - $(INSTALL_PROG) $(FSLIB) $(DESTDIR)$(FSDIR)/$(FS) + $(INSTALL_DIR) $(DESTDIR)$(FSDIR) + $(INSTALL_PROG) $(FSLIB) $(DESTDIR)$(FSDIR) + +BUILD_LINE-y = $(CC) $(LDFLAGS) $(SHLIB_LDFLAGS) -o $@ $^ -lfsimage $(FS_LIBDEPS) $(APPEND_LDFLAGS) +BUILD_LINE-$(CONFIG_SunOS) = $(CC) $(CFLAGS) $(LDFLAGS) $(SHLIB_LDFLAGS) -o $@ $^ -lfsimage $(FS_LIBDEPS) $(FSLIB): $(PIC_OBJS) - $(CC) $(LDFLAGS) $(SHLIB_LDFLAGS) -o $@ $^ -lfsimage $(FS_LIBDEPS) $(APPEND_LDFLAGS) + $(BUILD_LINE-y) clean distclean:: rm -f $(PIC_OBJS) $(FSLIB) $(DEPS) di...
2012 Jun 20
9
[PATCH 0 of 1 v2] tools: honour --libdir when it is passed to ./configure
I''ve removed all the LIBLEAF bits in this version, but kept passing the libfsimage plugin location via compiler command line. If there''s a better way to do this, I''m certainly open to it. But looking at it further today I think this isn''t too horrible. Matt
2012 Jan 25
26
[PATCH v4 00/23] Xenstore stub domain
Changes from v3: - mini-os configuration files moved into stubdom/ - mini-os extra console support now a config option - Fewer #ifdefs - grant table setup uses hypercall bounce - Xenstore stub domain syslog support re-enabled Changes from v2: - configuration support added to mini-os build system - add mini-os support for conditionally compiling frontends, xenbus -