From: Benjamin A. <bar...@gm...> - 2009-09-08 06:43:02
|
I am using Ubuntu and was just wondering if anybody else has seen this problem when compiling with the generated xmlvm.h. xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper case I). #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> I also checked the headers that comes with the iPhone SDK and it is also upper case I. |
From: Sascha H. <sa...@xm...> - 2009-09-13 15:47:20
|
Hi Benjamin, so you are actually compiling the iPhone app on Ubuntu and not on OSX? I have never actually tried this and wonder if this can be done successfully. However, what you describe makes sense, as OSX's filesystem is not case sensitive, whereas most Linux file systems like ext3 are. This explains why you see a problem and we didn't on OSX. // Sascha On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren <bar...@gm...>wrote: > I am using Ubuntu and was just wondering if anybody else has seen this > problem when compiling with the generated xmlvm.h. > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper > case I). > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> > > I also checked the headers that comes with the iPhone SDK and it is also > upper case I. > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Brian S. <bri...@go...> - 2009-09-13 22:28:41
|
@Sascha: Just in case you (or someone else at XMLVM) is going to "fix" it by changing the file name case in the repository, let me warn you that a case-only rename in a repository breaks some SVN clients on Windows. I experienced problems with that in multimple mixed OS X / Windows projects, especially with Tortoise SVN. I think it tries to create the "new" file before deleting the "old" one, which does not work if both have the "same" name from the FS' perspective. @Benjamin: Besides the case problem you posted, is it really possible to compile the iPhone App on Ubuntu? I'm not even talking about creating a complete Application package that runs on actual devices, I'd be happy to compile just to check for errors without needing a Mac. So how did you manage? Just copy the SDK over to the Ubuntu machine? If you have any hints or links to share, I'd be happy. Brian 2009/9/13, Sascha Haeberling <sa...@xm...>: > Hi Benjamin, > > so you are actually compiling the iPhone app on Ubuntu and not on OSX? I > have never actually tried this and wonder if this can be done successfully. > > However, what you describe makes sense, as OSX's filesystem is not case > sensitive, whereas most Linux file systems like ext3 are. This explains why > you see a problem and we didn't on OSX. > > // Sascha > > On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren <bar...@gm...> > wrote: > > > I am using Ubuntu and was just wondering if anybody else has seen this > problem when compiling with the generated xmlvm.h. > > > > > > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory > > > > > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper case > I). > > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> > > > > > > I also checked the headers that comes with the iPhone SDK and it is also > upper case I. > > > ------------------------------------------------------------------------------ > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > > trial. Simplify your report design, integration and deployment - and focus > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus > on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > xmlvm-users mailing list > xml...@li... > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > |
From: Benjamin A. <bar...@gm...> - 2009-09-14 02:07:03
|
On Sun, Sep 13, 2009 at 3:28 PM, Brian Schimmel < bri...@go...> wrote: > @Sascha: > Just in case you (or someone else at XMLVM) is going to "fix" it by > changing the file name case in the repository, let me warn you that a > case-only rename in a repository breaks some SVN clients on Windows. I > experienced problems with that in multimple mixed OS X / Windows > projects, especially with Tortoise SVN. I think it tries to create the > "new" file before deleting the "old" one, which does not work if both > have the "same" name from the FS' perspective. > > @Benjamin: > Besides the case problem you posted, is it really possible to compile > the iPhone App on Ubuntu? I'm not even talking about creating a > complete Application package that runs on actual devices, I'd be happy > to compile just to check for errors without needing a Mac. So how did > you manage? Just copy the SDK over to the Ubuntu machine? If you have > any hints or links to share, I'd be happy. > > Brian > I basically followed steps as outlined by saurik. You can find it here: http://www.saurik.com/id/4 Luckily, there is a shell script that automates all the steps http://svn.saurik.com/repos/menes/trunk/iphone/iptc.sh Since I wanted to understand what was going on in the script, I ended up running just parts of it. Most were ran manually. So your mileage may vary if you choose to run the script. It took me a while to compile everything since my eee pc is a little under powered. Give it a try. Maybe we can also start another thread detailing your experience and I will help as much as I can. Just post any questions you may have here, that is, if the group doesn't mind. > 2009/9/13, Sascha Haeberling <sa...@xm...>: > > Hi Benjamin, > > > > so you are actually compiling the iPhone app on Ubuntu and not on OSX? I > > have never actually tried this and wonder if this can be done > successfully. > > > > However, what you describe makes sense, as OSX's filesystem is not case > > sensitive, whereas most Linux file systems like ext3 are. This explains > why > > you see a problem and we didn't on OSX. > > > > // Sascha > > > > On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren <bar...@gm... > > > > wrote: > > > > > I am using Ubuntu and was just wondering if anybody else has seen this > > problem when compiling with the generated xmlvm.h. > > > > > > > > > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory > > > > > > > > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper > case > > I). > > > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> > > > > > > > > > I also checked the headers that comes with the iPhone SDK and it is > also > > upper case I. > > > > > > ------------------------------------------------------------------------------ > > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > > trial. Simplify your report design, integration and deployment - and > focus > > on > > > what you do best, core application coding. Discover what's new with > > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > _______________________________________________ > > > xmlvm-users mailing list > > > xml...@li... > > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > > > > > > > > > ------------------------------------------------------------------------------ > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > > trial. Simplify your report design, integration and deployment - and > focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > |
From: Benjamin A. <bar...@gm...> - 2009-09-15 14:22:04
|
On Sun, Sep 13, 2009 at 7:06 PM, Benjamin Aranguren <bar...@gm...>wrote: > On Sun, Sep 13, 2009 at 3:28 PM, Brian Schimmel < > bri...@go...> wrote: > >> @Sascha: >> Just in case you (or someone else at XMLVM) is going to "fix" it by >> changing the file name case in the repository, let me warn you that a >> case-only rename in a repository breaks some SVN clients on Windows. I >> experienced problems with that in multimple mixed OS X / Windows >> projects, especially with Tortoise SVN. I think it tries to create the >> "new" file before deleting the "old" one, which does not work if both >> have the "same" name from the FS' perspective. >> >> @Benjamin: >> Besides the case problem you posted, is it really possible to compile >> the iPhone App on Ubuntu? I'm not even talking about creating a >> complete Application package that runs on actual devices, I'd be happy >> to compile just to check for errors without needing a Mac. So how did >> you manage? Just copy the SDK over to the Ubuntu machine? If you have >> any hints or links to share, I'd be happy. >> >> Brian >> > > I basically followed steps as outlined by saurik. > You can find it here: > http://www.saurik.com/id/4 > > Luckily, there is a shell script that automates all the steps > http://svn.saurik.com/repos/menes/trunk/iphone/iptc.sh > > Since I wanted to understand what was going on in the script, I ended up > running just parts of it. Most were ran manually. So your mileage may vary > if you choose to run the script. > > It took me a while to compile everything since my eee pc is a little under > powered. > > Give it a try. Maybe we can also start another thread detailing your > experience and I will help as much as I can. > > Just post any questions you may have here, that is, if the group doesn't > mind. > @Brian Found this project on google code http://code.google.com/p/iphonedevonlinux/wiki/Installation It simplifies building toolchain but I have not tried it yet. > > >> 2009/9/13, Sascha Haeberling <sa...@xm...>: >> > Hi Benjamin, >> > >> > so you are actually compiling the iPhone app on Ubuntu and not on OSX? I >> > have never actually tried this and wonder if this can be done >> successfully. >> > >> > However, what you describe makes sense, as OSX's filesystem is not case >> > sensitive, whereas most Linux file systems like ext3 are. This explains >> why >> > you see a problem and we didn't on OSX. >> > >> > // Sascha >> > >> > On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren < >> bar...@gm...> >> > wrote: >> > >> > > I am using Ubuntu and was just wondering if anybody else has seen this >> > problem when compiling with the generated xmlvm.h. >> > > >> > > >> > > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory >> > > >> > > >> > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper >> case >> > I). >> > > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> >> > > >> > > >> > > I also checked the headers that comes with the iPhone SDK and it is >> also >> > upper case I. >> > > >> > >> ------------------------------------------------------------------------------ >> > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> > 30-Day >> > > trial. Simplify your report design, integration and deployment - and >> focus >> > on >> > > what you do best, core application coding. Discover what's new with >> > > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > > _______________________________________________ >> > > xmlvm-users mailing list >> > > xml...@li... >> > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > > >> > > >> > >> > >> > >> ------------------------------------------------------------------------------ >> > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 >> 30-Day >> > trial. Simplify your report design, integration and deployment - and >> focus >> > on >> > what you do best, core application coding. Discover what's new with >> > Crystal Reports now. http://p.sf.net/sfu/bobj-july >> > _______________________________________________ >> > xmlvm-users mailing list >> > xml...@li... >> > https://lists.sourceforge.net/lists/listinfo/xmlvm-users >> > >> > >> > > |
From: Sascha H. <sa...@xm...> - 2009-09-14 10:55:59
|
I just wanted to fix it and saw that a fix for this has already been submitted with revision @496, so when you update, it should work now. @Brian:Thanks for that hint, you are absolutely right that changing filename cases can lead to problem with svn cients running on case-insensitive filesystems. However, in this case the fix wasn't about changing an actual filename. UIScreen.h is part of the iPhone SDK, and we just pull it in. So the fix was simply to change the reference in a header file. // Sascha On Mon, Sep 14, 2009 at 12:28 AM, Brian Schimmel < bri...@go...> wrote: > @Sascha: > Just in case you (or someone else at XMLVM) is going to "fix" it by > changing the file name case in the repository, let me warn you that a > case-only rename in a repository breaks some SVN clients on Windows. I > experienced problems with that in multimple mixed OS X / Windows > projects, especially with Tortoise SVN. I think it tries to create the > "new" file before deleting the "old" one, which does not work if both > have the "same" name from the FS' perspective. > > @Benjamin: > Besides the case problem you posted, is it really possible to compile > the iPhone App on Ubuntu? I'm not even talking about creating a > complete Application package that runs on actual devices, I'd be happy > to compile just to check for errors without needing a Mac. So how did > you manage? Just copy the SDK over to the Ubuntu machine? If you have > any hints or links to share, I'd be happy. > > Brian > > 2009/9/13, Sascha Haeberling <sa...@xm...>: > > Hi Benjamin, > > > > so you are actually compiling the iPhone app on Ubuntu and not on OSX? I > > have never actually tried this and wonder if this can be done > successfully. > > > > However, what you describe makes sense, as OSX's filesystem is not case > > sensitive, whereas most Linux file systems like ext3 are. This explains > why > > you see a problem and we didn't on OSX. > > > > // Sascha > > > > On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren <bar...@gm... > > > > wrote: > > > > > I am using Ubuntu and was just wondering if anybody else has seen this > > problem when compiling with the generated xmlvm.h. > > > > > > > > > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory > > > > > > > > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem (upper > case > > I). > > > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> > > > > > > > > > I also checked the headers that comes with the iPhone SDK and it is > also > > upper case I. > > > > > > ------------------------------------------------------------------------------ > > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > > 30-Day > > > trial. Simplify your report design, integration and deployment - and > focus > > on > > > what you do best, core application coding. Discover what's new with > > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > _______________________________________________ > > > xmlvm-users mailing list > > > xml...@li... > > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > > > > > > > > > ------------------------------------------------------------------------------ > > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 > 30-Day > > trial. Simplify your report design, integration and deployment - and > focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > |
From: Benjamin A. <bar...@gm...> - 2009-09-14 14:14:00
|
On Sep 14, 2009, at 3:55 AM, Sascha Haeberling <sa...@xm...> wrote: > I just wanted to fix it and saw that a fix for this has already been > submitted with revision @496, so when you update, it should work now. > Thanks Sascha. It looks like it ws updated when OpenGL support was added. I have updated my source copy but never had the chance to try it yet. Now i just need to spend time and update Makefile. It looks like adding preferred compiler in Makevars would do the trick. Probably better to add an option to xmlvm.jar to specify host env that would in turn write the corresponding compiler options. Sweet! > @Brian: > Thanks for that hint, you are absolutely right that changing > filename cases can lead to problem with svn cients running on case- > insensitive filesystems. However, in this case the fix wasn't about > changing an actual filename. UIScreen.h is part of the iPhone SDK, > and we just pull it in. So the fix was simply to change the > reference in a header file. > > // Sascha > > On Mon, Sep 14, 2009 at 12:28 AM, Brian Schimmel <bri...@go... > > wrote: > @Sascha: > Just in case you (or someone else at XMLVM) is going to "fix" it by > changing the file name case in the repository, let me warn you that a > case-only rename in a repository breaks some SVN clients on Windows. I > experienced problems with that in multimple mixed OS X / Windows > projects, especially with Tortoise SVN. I think it tries to create the > "new" file before deleting the "old" one, which does not work if both > have the "same" name from the FS' perspective. > > @Benjamin: > Besides the case problem you posted, is it really possible to compile > the iPhone App on Ubuntu? I'm not even talking about creating a > complete Application package that runs on actual devices, I'd be happy > to compile just to check for errors without needing a Mac. So how did > you manage? Just copy the SDK over to the Ubuntu machine? If you have > any hints or links to share, I'd be happy. > > Brian > > 2009/9/13, Sascha Haeberling <sa...@xm...>: > > Hi Benjamin, > > > > so you are actually compiling the iPhone app on Ubuntu and not on > OSX? I > > have never actually tried this and wonder if this can be done > successfully. > > > > However, what you describe makes sense, as OSX's filesystem is not > case > > sensitive, whereas most Linux file systems like ext3 are. This > explains why > > you see a problem and we didn't on OSX. > > > > // Sascha > > > > On Tue, Sep 8, 2009 at 8:42 AM, Benjamin Aranguren <bar...@gm... > > > > wrote: > > > > > I am using Ubuntu and was just wondering if anybody else has > seen this > > problem when compiling with the generated xmlvm.h. > > > > > > > > > xmlvm.h:14:27: error: UIKit/UiScreen.h: No such file or directory > > > > > > > > > Changing UiScreen.h to UIScreen.h in xmlvm.h fixes the problem > (upper case > > I). > > > #import <UIKit/UiScreen.h> => #import <UIKit/UIScreen.h> > > > > > > > > > I also checked the headers that comes with the iPhone SDK and it > is also > > upper case I. > > > > > > --- > --- > --- > --------------------------------------------------------------------- > > > Let Crystal Reports handle the reporting - Free Crystal Reports > 2008 > > 30-Day > > > trial. Simplify your report design, integration and deployment - > and focus > > on > > > what you do best, core application coding. Discover what's new > with > > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > > _______________________________________________ > > > xmlvm-users mailing list > > > xml...@li... > > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > > > > > > > > > --- > --- > --- > --------------------------------------------------------------------- > > Let Crystal Reports handle the reporting - Free Crystal Reports > 2008 30-Day > > trial. Simplify your report design, integration and deployment - > and focus > > on > > what you do best, core application coding. Discover what's new with > > Crystal Reports now. http://p.sf.net/sfu/bobj-july > > _______________________________________________ > > xmlvm-users mailing list > > xml...@li... > > https://lists.sourceforge.net/lists/listinfo/xmlvm-users > > > > > |