WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Ignore external (user-provided) CFLAGS when building vmx

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Ignore external (user-provided) CFLAGS when building vmxassist and hvmloader.
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Fri, 03 Mar 2006 14:26:07 +0000
Delivery-date: Fri, 03 Mar 2006 14:27:01 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID 46a6d962691199828fb09963205845e002154fb7
# Parent  29f8c87bd8fd13d3aaaa3c1ccb0e238b0562e7bb
Ignore external (user-provided) CFLAGS when building vmxassist and hvmloader.
They do more harm than good.

Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>

diff -r 29f8c87bd8fd -r 46a6d9626911 tools/firmware/hvmloader/Makefile
--- a/tools/firmware/hvmloader/Makefile Fri Mar  3 09:34:03 2006
+++ b/tools/firmware/hvmloader/Makefile Fri Mar  3 09:44:40 2006
@@ -17,6 +17,9 @@
 # this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 # Place - Suite 330, Boston, MA 02111-1307 USA.
 #
+
+# External CFLAGS can do more harm than good.
+CFLAGS :=
 
 XEN_ROOT = ../../..
 include $(XEN_ROOT)/Config.mk
diff -r 29f8c87bd8fd -r 46a6d9626911 tools/firmware/vmxassist/Makefile
--- a/tools/firmware/vmxassist/Makefile Fri Mar  3 09:34:03 2006
+++ b/tools/firmware/vmxassist/Makefile Fri Mar  3 09:44:40 2006
@@ -17,6 +17,9 @@
 # this program; if not, write to the Free Software Foundation, Inc., 59 Temple
 # Place - Suite 330, Boston, MA 02111-1307 USA.
 #
+
+# External CFLAGS can do more harm than good.
+CFLAGS :=
 
 XEN_ROOT = ../../..
 include $(XEN_ROOT)/Config.mk

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Ignore external (user-provided) CFLAGS when building vmxassist and hvmloader., Xen patchbot -unstable <=