]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blame - xen/patches/18-localgcc45fix.patch
xen: Lots of changes from the commits listed below.
[people/amarx/ipfire-3.x.git] / xen / patches / 18-localgcc45fix.patch
CommitLineData
75d56118
MT
1xen-4.0.1/extras/mini-os/lib/math.c generates the warning
2'tmp.ul[1]' may be used uninitialized in this function
3under gcc 4.5 which I think is incorrect
4--- xen-4.0.1/extras/mini-os/minios.mk.orig 2010-02-02 20:43:00.000000000 +0000
5+++ xen-4.0.1/extras/mini-os/minios.mk 2010-07-24 22:56:27.000000000 +0100
6@@ -10,6 +10,7 @@
7 DEF_CFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
8 DEF_CFLAGS += $(call cc-option,$(CC),-fgnu89-inline)
9 DEF_CFLAGS += -Wstrict-prototypes -Wnested-externs -Wpointer-arith -Winline
10+DEF_CFLAGS += -Wno-uninitialized
11 DEF_CPPFLAGS += -D__XEN_INTERFACE_VERSION__=$(XEN_INTERFACE_VERSION)
12
13 DEF_ASFLAGS += -D__ASSEMBLY__