search for: cflags_

Displaying 3 results from an estimated 3 matches for "cflags_".

Did you mean: cflags
2012 Mar 27
1
[PATCH] tools/configure: add options to pass EXTRA_CLFAGS
...exporting CFLAGS before ''make tools''. Now qemu-upstream reuses these CFLAGS, but it cant deal with the result. This patch extends configure to recognize three environment variables which will be written to config/Tools.mk so they will be reused with each make invocation: EXTRA_CFLAGS_XEN_TOOLS= specifies CFLAGS for the tools build. EXTRA_CFLAGS_QEMU_TRADITIONAL= specifies CFLAGS for old qemu. EXTRA_CFLAGS_QEMU_XEN= specifies CFLAGS for new qemu. The new feature can be used like this in a rpm xen.spec file: env \ EXTRA_CFLAGS_XEN_TOOLS="${RPM_OPT_FLAGS}" \...
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
2011 Mar 16
3
[PATCH] tools: do not link against unused libraries
...STDIR)$(INST_DIR) diff -r f35234b6636a -r 7e326d27d899 tools/console/Makefile --- a/tools/console/Makefile Tue Mar 15 16:33:59 2011 +0000 +++ b/tools/console/Makefile Wed Mar 16 10:38:52 2011 +0000 @@ -1,4 +1,3 @@ - XEN_ROOT=../.. include $(XEN_ROOT)/tools/Rules.mk @@ -8,9 +7,10 @@ CFLAGS += $(CFLAGS_libxenstore) CFLAGS += $(CFLAGS_libxenstore) LDLIBS += $(LDLIBS_libxenctrl) LDLIBS += $(LDLIBS_libxenstore) -LDLIBS += $(UTIL_LIBS) LDLIBS += $(SOCKET_LIBS) -LDLIBS += -lrt + +LDLIBS_xenconsoled += $(UTIL_LIBS) +LDLIBS_xenconsoled += -lrt BIN = xenconsoled xenconsole @@ -23,10 +23,10...