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] [PATCH] use-large-file-api.patch

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [PATCH] use-large-file-api.patch
From: BitKeeper Bot <riel@xxxxxxxxxxx>
Date: Thu, 21 Apr 2005 00:16:35 +0000
Delivery-date: Thu, 21 Apr 2005 01:03:06 +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 Development List <xen-devel@xxxxxxxxxxxxxxxxxxx>
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
ChangeSet 1.1349, 2005/04/21 01:16:35+01:00, arun.sharma@xxxxxxxxx

        [PATCH] use-large-file-api.patch
        
        Support > 2G root fs on i386.
        
        Signed-off-by: Xin B Li <xin.b.li@xxxxxxxxx>
        Signed-off-by: Arun Sharma <arun.sharma@xxxxxxxxx>
        Signed-off-by: ian@xxxxxxxxxxxxx



 Makefile |    6 ++++++
 1 files changed, 6 insertions(+)


diff -Nru a/tools/ioemu/iodev/Makefile b/tools/ioemu/iodev/Makefile
--- a/tools/ioemu/iodev/Makefile        2005-04-20 21:03:23 -04:00
+++ b/tools/ioemu/iodev/Makefile        2005-04-20 21:03:23 -04:00
@@ -3,6 +3,12 @@
  
 TOPDIR= ..
 CXXFLAGS=-I. -I../include -I..
+
+ARCH=$(shell uname -i)
+ifeq ($(ARCH), i386)
+CXXFLAGS+=-D_FILE_OFFSET_BITS=64
+endif
+
 OBJS=$(patsubst %.cc,%.o,$(wildcard *.cc))
 BXLIBS = ../gui/libgui.a ../memory/libmemory.a  
 LDLIBS= $(BXLIBS) $(X11_LDPATH) -lX11 -lXpm -lstdc++ -L../../../tools/libxc 
-L../../../tools/libxutil -lxc -lxutil -lpthread -lncurses 

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [PATCH] use-large-file-api.patch, BitKeeper Bot <=