From: <ART...@Au...> - 2009-08-18 18:19:32
|
Afternoon, I have been reading through the instructions and everything has gone great up to this point. First off, my setup... I am doing everything on Windows (sorry) up to the point of running the 'make' under the output directory. I have a mount to the windows folder on my Mac that I run the 'make' command (on the Mac). It compiles and then at the end I get this instead of it bringing up the emulator... Undefined symbols: "_main", reference from: Start in crt1.10.5.o Id: symbol(s) not found collect2: Id returned 1 exit status make: *** [build/hellp.app/hellpp] Error 1 Again I am starting with the supplied hello program... Any ideas? Thank you in advance, Andy Tipton Jr. Automationdirect.com Product Development |
From: Arno P. <ar...@pu...> - 2009-08-18 23:49:46
|
that is weird. The linking error indicates that there is no main() function. But that should have been generated from the example. Which of the three Hello World versions are you using? I just did the following: ant cd dist/demo/iphone/ihelloworld/portrait/iphone make That works perfectly fine for me. Arno ART...@Au... wrote: > Afternoon, > > > > I have been reading through the instructions and > everything has gone great up to this point. First off, my setup… I am > doing everything on Windows (sorry) up to the point of running the > ‘make’ under the output directory. I have a mount to the windows folder > on my Mac that I run the ‘make’ command (on the Mac). > > > > It compiles and then at the end I get this instead of it bringing up the > emulator… > > > > Undefined symbols: > > “_main”, reference from: > > Start in crt1.10.5.o > > Id: symbol(s) not found > > collect2: Id returned 1 exit status > > make: *** [build/hellp.app/hellpp] Error 1 > > > > Again I am starting with the supplied hello program… Any ideas? > > > > Thank you in advance, > > Andy Tipton Jr. > > Automationdirect.com > > Product Development > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > 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: Björn C. <bj...@ca...> - 2009-08-19 09:50:23
|
For me an main.m is never generated. I created it manually. I use xmlvm with the following ant script: <java jar="../XMLVMTest/xmlvm/dist/xmlvm.jar"> <arg value="--in=build/compiled"/> <arg value="--out=iphone"/> <arg value="--target=iphone"/> <arg value="--iphone-app=IQumbrix"/> </java> Arno Puder skrev: > that is weird. The linking error indicates that there is no main() > function. But that should have been generated from the example. > > Which of the three Hello World versions are you using? I just did the > following: > > ant > cd dist/demo/iphone/ihelloworld/portrait/iphone > make > > That works perfectly fine for me. > > Arno > > > ART...@Au... wrote: > >> Afternoon, >> >> >> >> I have been reading through the instructions and >> everything has gone great up to this point. First off, my setup… I am >> doing everything on Windows (sorry) up to the point of running the >> ‘make’ under the output directory. I have a mount to the windows folder >> on my Mac that I run the ‘make’ command (on the Mac). >> >> >> >> It compiles and then at the end I get this instead of it bringing up the >> emulator… >> >> >> >> Undefined symbols: >> >> “_main”, reference from: >> >> Start in crt1.10.5.o >> >> Id: symbol(s) not found >> >> collect2: Id returned 1 exit status >> >> make: *** [build/hellp.app/hellpp] Error 1 >> >> >> >> Again I am starting with the supplied hello program… Any ideas? >> >> >> >> Thank you in advance, >> >> Andy Tipton Jr. >> >> Automationdirect.com >> >> Product Development >> >> >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> 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: Arno P. <ar...@pu...> - 2009-08-19 18:01:52
|
XMVM will create a main() function when the corresponding Java file contains the standard entry point (public static void main(String[])). You should do this instead of writing your own main() function because XMLVM is doing a few other things in there. Take a look at one of the Hello World examples and take note that they have a static main method. Arno Björn Caroll wrote: > For me an main.m is never generated. I created it manually. I use xmlvm > with the following ant script: > > <java jar="../XMLVMTest/xmlvm/dist/xmlvm.jar"> > <arg value="--in=build/compiled"/> > <arg value="--out=iphone"/> > <arg value="--target=iphone"/> > <arg value="--iphone-app=IQumbrix"/> > </java> > > > Arno Puder skrev: >> that is weird. The linking error indicates that there is no main() >> function. But that should have been generated from the example. >> >> Which of the three Hello World versions are you using? I just did the >> following: >> >> ant >> cd dist/demo/iphone/ihelloworld/portrait/iphone >> make >> >> That works perfectly fine for me. >> >> Arno >> >> >> ART...@Au... wrote: >> >>> Afternoon, >>> >>> >>> >>> I have been reading through the instructions and >>> everything has gone great up to this point. First off, my setup… I am >>> doing everything on Windows (sorry) up to the point of running the >>> ‘make’ under the output directory. I have a mount to the windows folder >>> on my Mac that I run the ‘make’ command (on the Mac). >>> >>> >>> >>> It compiles and then at the end I get this instead of it bringing up the >>> emulator… >>> >>> >>> >>> Undefined symbols: >>> >>> “_main”, reference from: >>> >>> Start in crt1.10.5.o >>> >>> Id: symbol(s) not found >>> >>> collect2: Id returned 1 exit status >>> >>> make: *** [build/hellp.app/hellpp] Error 1 >>> >>> >>> >>> Again I am starting with the supplied hello program… Any ideas? >>> >>> >>> >>> Thank you in advance, >>> >>> Andy Tipton Jr. >>> >>> Automationdirect.com >>> >>> Product Development >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------------ >>> 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 >> >> > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > 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: Björn C. <bj...@ca...> - 2009-08-20 09:53:56
|
Ok! That explains it. Since I am porting a JavaME application there is no main method. The JavaME to iPhone must eventuallu become a separate target and then I should probably write something that picks up the right class from the manifest file and generate the main.m from that. /Björn Arno Puder skrev: > XMVM will create a main() function when the corresponding Java file > contains the standard entry point (public static void main(String[])). > You should do this instead of writing your own main() function because > XMLVM is doing a few other things in there. Take a look at one of the > Hello World examples and take note that they have a static main method. > > Arno > > > Björn Caroll wrote: > >> For me an main.m is never generated. I created it manually. I use xmlvm >> with the following ant script: >> >> <java jar="../XMLVMTest/xmlvm/dist/xmlvm.jar"> >> <arg value="--in=build/compiled"/> >> <arg value="--out=iphone"/> >> <arg value="--target=iphone"/> >> <arg value="--iphone-app=IQumbrix"/> >> </java> >> >> >> Arno Puder skrev: >> >>> that is weird. The linking error indicates that there is no main() >>> function. But that should have been generated from the example. >>> >>> Which of the three Hello World versions are you using? I just did the >>> following: >>> >>> ant >>> cd dist/demo/iphone/ihelloworld/portrait/iphone >>> make >>> >>> That works perfectly fine for me. >>> >>> Arno >>> >>> >>> ART...@Au... wrote: >>> >>> >>>> Afternoon, >>>> >>>> >>>> >>>> I have been reading through the instructions and >>>> everything has gone great up to this point. First off, my setup… I am >>>> doing everything on Windows (sorry) up to the point of running the >>>> ‘make’ under the output directory. I have a mount to the windows folder >>>> on my Mac that I run the ‘make’ command (on the Mac). >>>> >>>> >>>> >>>> It compiles and then at the end I get this instead of it bringing up the >>>> emulator… >>>> >>>> >>>> >>>> Undefined symbols: >>>> >>>> “_main”, reference from: >>>> >>>> Start in crt1.10.5.o >>>> >>>> Id: symbol(s) not found >>>> >>>> collect2: Id returned 1 exit status >>>> >>>> make: *** [build/hellp.app/hellpp] Error 1 >>>> >>>> >>>> >>>> Again I am starting with the supplied hello program… Any ideas? >>>> >>>> >>>> >>>> Thank you in advance, >>>> >>>> Andy Tipton Jr. >>>> >>>> Automationdirect.com >>>> >>>> Product Development >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> ------------------------------------------------------------------------------ >>>> 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 >>> >>> >>> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> 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: <ART...@Au...> - 2009-08-19 18:15:02
|
I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? -----Original Message----- From: Arno Puder [mailto:ar...@pu...] Sent: Tuesday, August 18, 2009 7:49 PM To: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. that is weird. The linking error indicates that there is no main() function. But that should have been generated from the example. Which of the three Hello World versions are you using? I just did the following: ant cd dist/demo/iphone/ihelloworld/portrait/iphone make That works perfectly fine for me. Arno ART...@Au... wrote: > Afternoon, > > > > I have been reading through the instructions and > everything has gone great up to this point. First off, my setup... I am > doing everything on Windows (sorry) up to the point of running the > 'make' under the output directory. I have a mount to the windows folder > on my Mac that I run the 'make' command (on the Mac). > > > > It compiles and then at the end I get this instead of it bringing up the > emulator... > > > > Undefined symbols: > > "_main", reference from: > > Start in crt1.10.5.o > > Id: symbol(s) not found > > collect2: Id returned 1 exit status > > make: *** [build/hellp.app/hellpp] Error 1 > > > > Again I am starting with the supplied hello program... Any ideas? > > > > Thank you in advance, > > Andy Tipton Jr. > > Automationdirect.com > > Product Development > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > 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: Arno P. <ar...@pu...> - 2009-08-19 18:21:50
|
the Makefile can start the emulator automatically, but unfortunately not the application inside the emulator (haven't figured out how to do that). With the new Xcode 3.0, the application is installed in a separate screen. You have to 'swipe' the main screen one to the left and there you should find your application. Arno ART...@Au... wrote: > I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Tuesday, August 18, 2009 7:49 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is weird. The linking error indicates that there is no main() > function. But that should have been generated from the example. > > Which of the three Hello World versions are you using? I just did the > following: > > ant > cd dist/demo/iphone/ihelloworld/portrait/iphone > make > > That works perfectly fine for me. > > Arno > > > ART...@Au... wrote: >> Afternoon, >> >> >> >> I have been reading through the instructions and >> everything has gone great up to this point. First off, my setup... I am >> doing everything on Windows (sorry) up to the point of running the >> 'make' under the output directory. I have a mount to the windows folder >> on my Mac that I run the 'make' command (on the Mac). >> >> >> >> It compiles and then at the end I get this instead of it bringing up the >> emulator... >> >> >> >> Undefined symbols: >> >> "_main", reference from: >> >> Start in crt1.10.5.o >> >> Id: symbol(s) not found >> >> collect2: Id returned 1 exit status >> >> make: *** [build/hellp.app/hellpp] Error 1 >> >> >> >> Again I am starting with the supplied hello program... Any ideas? >> >> >> >> Thank you in advance, >> >> Andy Tipton Jr. >> >> Automationdirect.com >> >> Product Development >> >> >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: <ART...@Au...> - 2009-08-19 18:27:39
|
When I run the make command in the output folder (where xmlvm outputted the files), it will not run... I get this still... Undefined symbols: "_main", referenced from: start in crt1.10.5.o ld: symbol(s) not found collect2: ld returned 1 exit status make: *** [build/HelloWorld.app/HelloWorld] Error 1 This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output Andy -----Original Message----- From: Arno Puder [mailto:ar...@pu...] Sent: Wednesday, August 19, 2009 2:22 PM To: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. the Makefile can start the emulator automatically, but unfortunately not the application inside the emulator (haven't figured out how to do that). With the new Xcode 3.0, the application is installed in a separate screen. You have to 'swipe' the main screen one to the left and there you should find your application. Arno ART...@Au... wrote: > I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Tuesday, August 18, 2009 7:49 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is weird. The linking error indicates that there is no main() > function. But that should have been generated from the example. > > Which of the three Hello World versions are you using? I just did the > following: > > ant > cd dist/demo/iphone/ihelloworld/portrait/iphone > make > > That works perfectly fine for me. > > Arno > > > ART...@Au... wrote: >> Afternoon, >> >> >> >> I have been reading through the instructions and >> everything has gone great up to this point. First off, my setup... I am >> doing everything on Windows (sorry) up to the point of running the >> 'make' under the output directory. I have a mount to the windows folder >> on my Mac that I run the 'make' command (on the Mac). >> >> >> >> It compiles and then at the end I get this instead of it bringing up the >> emulator... >> >> >> >> Undefined symbols: >> >> "_main", reference from: >> >> Start in crt1.10.5.o >> >> Id: symbol(s) not found >> >> collect2: Id returned 1 exit status >> >> make: *** [build/hellp.app/hellpp] Error 1 >> >> >> >> Again I am starting with the supplied hello program... Any ideas? >> >> >> >> Thank you in advance, >> >> Andy Tipton Jr. >> >> Automationdirect.com >> >> Product Development >> >> >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: Arno P. <ar...@pu...> - 2009-08-19 18:40:07
|
that is bizarre! Can you please check the your output folder contains the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone (after running ant) Arno ART...@Au... wrote: > When I run the make command in the output folder (where xmlvm outputted the files), it will not run... > > I get this still... > > Undefined symbols: > "_main", referenced from: > start in crt1.10.5.o > ld: symbol(s) not found > collect2: ld returned 1 exit status > make: *** [build/HelloWorld.app/HelloWorld] Error 1 > > This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... > > java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output > > Andy > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Wednesday, August 19, 2009 2:22 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > the Makefile can start the emulator automatically, but unfortunately not > the application inside the emulator (haven't figured out how to do > that). With the new Xcode 3.0, the application is installed in a > separate screen. You have to 'swipe' the main screen one to the left and > there you should find your application. > > Arno > > > ART...@Au... wrote: >> I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? >> >> -----Original Message----- >> From: Arno Puder [mailto:ar...@pu...] >> Sent: Tuesday, August 18, 2009 7:49 PM >> To: xml...@li... >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >> >> >> that is weird. The linking error indicates that there is no main() >> function. But that should have been generated from the example. >> >> Which of the three Hello World versions are you using? I just did the >> following: >> >> ant >> cd dist/demo/iphone/ihelloworld/portrait/iphone >> make >> >> That works perfectly fine for me. >> >> Arno >> >> >> ART...@Au... wrote: >>> Afternoon, >>> >>> >>> >>> I have been reading through the instructions and >>> everything has gone great up to this point. First off, my setup... I am >>> doing everything on Windows (sorry) up to the point of running the >>> 'make' under the output directory. I have a mount to the windows folder >>> on my Mac that I run the 'make' command (on the Mac). >>> >>> >>> >>> It compiles and then at the end I get this instead of it bringing up the >>> emulator... >>> >>> >>> >>> Undefined symbols: >>> >>> "_main", reference from: >>> >>> Start in crt1.10.5.o >>> >>> Id: symbol(s) not found >>> >>> collect2: Id returned 1 exit status >>> >>> make: *** [build/hellp.app/hellpp] Error 1 >>> >>> >>> >>> Again I am starting with the supplied hello program... Any ideas? >>> >>> >>> >>> Thank you in advance, >>> >>> Andy Tipton Jr. >>> >>> Automationdirect.com >>> >>> Product Development >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------------ >>> 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 >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: <ART...@Au...> - 2009-08-19 19:29:35
|
Nope, it looks like it is missing 4 files... one of which is the iHelloWorld in build/iHelloWorld.app. Am I cross compiling it wrong? This is my command and output... C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell oWorld --target=iphone --iphone-app=HelloWorld --out=output [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for input: bin \org\xmlvm\demo\ihelloworld\landscape\HelloWorld [08/19/09 11:37:30.448] DEBUG: Instantiated: org.xmlvm.proc.out.IPhoneOutputP rocess [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile [08/19/09 11:37:44.182] DEBUG: Files written successfully. C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell oWorld --target=iphone --iphone-app=HelloWorld --out=output -----Original Message----- From: Arno Puder [mailto:ar...@pu...] Sent: Wednesday, August 19, 2009 2:40 PM To: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. that is bizarre! Can you please check the your output folder contains the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone (after running ant) Arno ART...@Au... wrote: > When I run the make command in the output folder (where xmlvm outputted the files), it will not run... > > I get this still... > > Undefined symbols: > "_main", referenced from: > start in crt1.10.5.o > ld: symbol(s) not found > collect2: ld returned 1 exit status > make: *** [build/HelloWorld.app/HelloWorld] Error 1 > > This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... > > java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output > > Andy > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Wednesday, August 19, 2009 2:22 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > the Makefile can start the emulator automatically, but unfortunately not > the application inside the emulator (haven't figured out how to do > that). With the new Xcode 3.0, the application is installed in a > separate screen. You have to 'swipe' the main screen one to the left and > there you should find your application. > > Arno > > > ART...@Au... wrote: >> I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? >> >> -----Original Message----- >> From: Arno Puder [mailto:ar...@pu...] >> Sent: Tuesday, August 18, 2009 7:49 PM >> To: xml...@li... >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >> >> >> that is weird. The linking error indicates that there is no main() >> function. But that should have been generated from the example. >> >> Which of the three Hello World versions are you using? I just did the >> following: >> >> ant >> cd dist/demo/iphone/ihelloworld/portrait/iphone >> make >> >> That works perfectly fine for me. >> >> Arno >> >> >> ART...@Au... wrote: >>> Afternoon, >>> >>> >>> >>> I have been reading through the instructions and >>> everything has gone great up to this point. First off, my setup... I am >>> doing everything on Windows (sorry) up to the point of running the >>> 'make' under the output directory. I have a mount to the windows folder >>> on my Mac that I run the 'make' command (on the Mac). >>> >>> >>> >>> It compiles and then at the end I get this instead of it bringing up the >>> emulator... >>> >>> >>> >>> Undefined symbols: >>> >>> "_main", reference from: >>> >>> Start in crt1.10.5.o >>> >>> Id: symbol(s) not found >>> >>> collect2: Id returned 1 exit status >>> >>> make: *** [build/hellp.app/hellpp] Error 1 >>> >>> >>> >>> Again I am starting with the supplied hello program... Any ideas? >>> >>> >>> >>> Thank you in advance, >>> >>> Andy Tipton Jr. >>> >>> Automationdirect.com >>> >>> Product Development >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------------ >>> 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 >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: Arno P. <ar...@pu...> - 2009-08-19 20:15:02
|
if you check XMLVM's log messages carefully you will notice that it issues a warning. It seems that it cannot read in the input .class files you have provided which explains why you are missing 4 files and therefore there is no main function. Arno ART...@Au... wrote: > Nope, it looks like it is missing 4 files... one of which is the iHelloWorld in build/iHelloWorld.app. > > Am I cross compiling it wrong? > > This is my command and output... > > C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > oWorld --target=iphone --iphone-app=HelloWorld --out=output > [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for input: bin > \org\xmlvm\demo\ihelloworld\landscape\HelloWorld > [08/19/09 11:37:30.448] DEBUG: Instantiated: org.xmlvm.proc.out.IPhoneOutputP > rocess > [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess > [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. > [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars > [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist > [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile > [08/19/09 11:37:44.182] DEBUG: Files written successfully. > > C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > oWorld --target=iphone --iphone-app=HelloWorld --out=output > > > > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Wednesday, August 19, 2009 2:40 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is bizarre! Can you please check the your output folder contains > the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone > (after running ant) > > Arno > > > ART...@Au... wrote: >> When I run the make command in the output folder (where xmlvm outputted the files), it will not run... >> >> I get this still... >> >> Undefined symbols: >> "_main", referenced from: >> start in crt1.10.5.o >> ld: symbol(s) not found >> collect2: ld returned 1 exit status >> make: *** [build/HelloWorld.app/HelloWorld] Error 1 >> >> This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... >> >> java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output >> >> Andy >> >> -----Original Message----- >> From: Arno Puder [mailto:ar...@pu...] >> Sent: Wednesday, August 19, 2009 2:22 PM >> To: xml...@li... >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >> >> >> the Makefile can start the emulator automatically, but unfortunately not >> the application inside the emulator (haven't figured out how to do >> that). With the new Xcode 3.0, the application is installed in a >> separate screen. You have to 'swipe' the main screen one to the left and >> there you should find your application. >> >> Arno >> >> >> ART...@Au... wrote: >>> I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? >>> >>> -----Original Message----- >>> From: Arno Puder [mailto:ar...@pu...] >>> Sent: Tuesday, August 18, 2009 7:49 PM >>> To: xml...@li... >>> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >>> >>> >>> that is weird. The linking error indicates that there is no main() >>> function. But that should have been generated from the example. >>> >>> Which of the three Hello World versions are you using? I just did the >>> following: >>> >>> ant >>> cd dist/demo/iphone/ihelloworld/portrait/iphone >>> make >>> >>> That works perfectly fine for me. >>> >>> Arno >>> >>> >>> ART...@Au... wrote: >>>> Afternoon, >>>> >>>> >>>> >>>> I have been reading through the instructions and >>>> everything has gone great up to this point. First off, my setup... I am >>>> doing everything on Windows (sorry) up to the point of running the >>>> 'make' under the output directory. I have a mount to the windows folder >>>> on my Mac that I run the 'make' command (on the Mac). >>>> >>>> >>>> >>>> It compiles and then at the end I get this instead of it bringing up the >>>> emulator... >>>> >>>> >>>> >>>> Undefined symbols: >>>> >>>> "_main", reference from: >>>> >>>> Start in crt1.10.5.o >>>> >>>> Id: symbol(s) not found >>>> >>>> collect2: Id returned 1 exit status >>>> >>>> make: *** [build/hellp.app/hellpp] Error 1 >>>> >>>> >>>> >>>> Again I am starting with the supplied hello program... Any ideas? >>>> >>>> >>>> >>>> Thank you in advance, >>>> >>>> Andy Tipton Jr. >>>> >>>> Automationdirect.com >>>> >>>> Product Development >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> ------------------------------------------------------------------------------ >>>> 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 >>> >>> ------------------------------------------------------------------------------ >>> 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 >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: <ART...@Au...> - 2009-08-19 20:28:07
|
Ah, ok... I am trying to compile the java class that was provided with xmlvm... so there should be no issue there. Is there something wrong with the way I am trying to compile? Also, when I run the make file out of the dist/demo... (the one that is supplied), I get the simulator up, but no app is in it.. even if I swipe left. If I swipe right, I get the search... Thank you, Andy -----Original Message----- From: Arno Puder [mailto:ar...@pu...] Sent: Wednesday, August 19, 2009 4:15 PM To: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. if you check XMLVM's log messages carefully you will notice that it issues a warning. It seems that it cannot read in the input .class files you have provided which explains why you are missing 4 files and therefore there is no main function. Arno ART...@Au... wrote: > Nope, it looks like it is missing 4 files... one of which is the iHelloWorld in build/iHelloWorld.app. > > Am I cross compiling it wrong? > > This is my command and output... > > C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > oWorld --target=iphone --iphone-app=HelloWorld --out=output > [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for input: bin > \org\xmlvm\demo\ihelloworld\landscape\HelloWorld > [08/19/09 11:37:30.448] DEBUG: Instantiated: org.xmlvm.proc.out.IPhoneOutputP > rocess > [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess > [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. > [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars > [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist > [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile > [08/19/09 11:37:44.182] DEBUG: Files written successfully. > > C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > oWorld --target=iphone --iphone-app=HelloWorld --out=output > > > > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Wednesday, August 19, 2009 2:40 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is bizarre! Can you please check the your output folder contains > the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone > (after running ant) > > Arno > > > ART...@Au... wrote: >> When I run the make command in the output folder (where xmlvm outputted the files), it will not run... >> >> I get this still... >> >> Undefined symbols: >> "_main", referenced from: >> start in crt1.10.5.o >> ld: symbol(s) not found >> collect2: ld returned 1 exit status >> make: *** [build/HelloWorld.app/HelloWorld] Error 1 >> >> This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... >> >> java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output >> >> Andy >> >> -----Original Message----- >> From: Arno Puder [mailto:ar...@pu...] >> Sent: Wednesday, August 19, 2009 2:22 PM >> To: xml...@li... >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >> >> >> the Makefile can start the emulator automatically, but unfortunately not >> the application inside the emulator (haven't figured out how to do >> that). With the new Xcode 3.0, the application is installed in a >> separate screen. You have to 'swipe' the main screen one to the left and >> there you should find your application. >> >> Arno >> >> >> ART...@Au... wrote: >>> I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? >>> >>> -----Original Message----- >>> From: Arno Puder [mailto:ar...@pu...] >>> Sent: Tuesday, August 18, 2009 7:49 PM >>> To: xml...@li... >>> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >>> >>> >>> that is weird. The linking error indicates that there is no main() >>> function. But that should have been generated from the example. >>> >>> Which of the three Hello World versions are you using? I just did the >>> following: >>> >>> ant >>> cd dist/demo/iphone/ihelloworld/portrait/iphone >>> make >>> >>> That works perfectly fine for me. >>> >>> Arno >>> >>> >>> ART...@Au... wrote: >>>> Afternoon, >>>> >>>> >>>> >>>> I have been reading through the instructions and >>>> everything has gone great up to this point. First off, my setup... I am >>>> doing everything on Windows (sorry) up to the point of running the >>>> 'make' under the output directory. I have a mount to the windows folder >>>> on my Mac that I run the 'make' command (on the Mac). >>>> >>>> >>>> >>>> It compiles and then at the end I get this instead of it bringing up the >>>> emulator... >>>> >>>> >>>> >>>> Undefined symbols: >>>> >>>> "_main", reference from: >>>> >>>> Start in crt1.10.5.o >>>> >>>> Id: symbol(s) not found >>>> >>>> collect2: Id returned 1 exit status >>>> >>>> make: *** [build/hellp.app/hellpp] Error 1 >>>> >>>> >>>> >>>> Again I am starting with the supplied hello program... Any ideas? >>>> >>>> >>>> >>>> Thank you in advance, >>>> >>>> Andy Tipton Jr. >>>> >>>> Automationdirect.com >>>> >>>> Product Development >>>> >>>> >>>> >>>> >>>> ------------------------------------------------------------------------ >>>> >>>> ------------------------------------------------------------------------------ >>>> 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 >>> >>> ------------------------------------------------------------------------------ >>> 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 >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: Arno P. <ar...@pu...> - 2009-08-19 20:36:57
|
ART...@Au... wrote: > Ah, ok... I am trying to compile the java class that was provided with xmlvm... so there should be no issue there. Is there something wrong with the way I am trying to compile? as long as the --in points to the class files, it should be OK. Perhaps you can take a look at build.xml to double check your command line parameters. > Also, when I run the make file out of the dist/demo... (the one that is supplied), I get the simulator up, but no app is in it.. even if I swipe left. If I swipe right, I get the search... Quite frankly, I don't know why that doesn't work for you. After you run the Makefile, what is the content of directory ~/Library/Application Support/iPhone Simulator/User/Applications? There should be a sub-directory 'XMLVM' created by the Makefile. Note that you might have to re-launch the emulator for it to pick up the new application. Arno |
From: Sascha H. <sa...@gm...> - 2009-08-19 23:22:48
|
Instead of: --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld try: --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld.class or --in=bin\org\xmlvm\demo\ihelloworld\landscape\ Both should work. // Sascha On Wed, Aug 19, 2009 at 9:29 PM, <ART...@au...> wrote: > Nope, it looks like it is missing 4 files... one of which is the > iHelloWorld in build/iHelloWorld.app. > > Am I cross compiling it wrong? > > This is my command and output... > > C:\Documents and Settings\artipton\My Documents\MyEclipse > 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar > --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > oWorld --target=iphone --iphone-app=HelloWorld --out=output > [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for > input: bin > \org\xmlvm\demo\ihelloworld\landscape\HelloWorld > [08/19/09 11:37:30.448] DEBUG: Instantiated: > org.xmlvm.proc.out.IPhoneOutputP > rocess > [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess > [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. > [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars > [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist > [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile > [08/19/09 11:37:44.182] DEBUG: Files written successfully. > > C:\Documents and Settings\artipton\My Documents\MyEclipse > 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar > --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > oWorld --target=iphone --iphone-app=HelloWorld --out=output > > > > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Wednesday, August 19, 2009 2:40 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is bizarre! Can you please check the your output folder contains > the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone > (after running ant) > > Arno > > > ART...@Au... wrote: > > When I run the make command in the output folder (where xmlvm outputted > the files), it will not run... > > > > I get this still... > > > > Undefined symbols: > > "_main", referenced from: > > start in crt1.10.5.o > > ld: symbol(s) not found > > collect2: ld returned 1 exit status > > make: *** [build/HelloWorld.app/HelloWorld] Error 1 > > > > This is the xmlvm command I am running to cross compile the iHelloWorld > example Java app... > > > > java -jar dist\xmlvm.jar > --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone > --iphone-app=HelloWorld --out=output > > > > Andy > > > > -----Original Message----- > > From: Arno Puder [mailto:ar...@pu...] > > Sent: Wednesday, August 19, 2009 2:22 PM > > To: xml...@li... > > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > > > > the Makefile can start the emulator automatically, but unfortunately not > > the application inside the emulator (haven't figured out how to do > > that). With the new Xcode 3.0, the application is installed in a > > separate screen. You have to 'swipe' the main screen one to the left and > > there you should find your application. > > > > Arno > > > > > > ART...@Au... wrote: > >> I got the simulator installed... so now it brings it up... but the > helloworld app isn't in the simulator... When I cross compile the > iHelloWorld into a folder, should I be running the make from that folder? > >> > >> -----Original Message----- > >> From: Arno Puder [mailto:ar...@pu...] > >> Sent: Tuesday, August 18, 2009 7:49 PM > >> To: xml...@li... > >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > >> > >> > >> that is weird. The linking error indicates that there is no main() > >> function. But that should have been generated from the example. > >> > >> Which of the three Hello World versions are you using? I just did the > >> following: > >> > >> ant > >> cd dist/demo/iphone/ihelloworld/portrait/iphone > >> make > >> > >> That works perfectly fine for me. > >> > >> Arno > >> > >> > >> ART...@Au... wrote: > >>> Afternoon, > >>> > >>> > >>> > >>> I have been reading through the instructions and > >>> everything has gone great up to this point. First off, my setup... I > am > >>> doing everything on Windows (sorry) up to the point of running the > >>> 'make' under the output directory. I have a mount to the windows > folder > >>> on my Mac that I run the 'make' command (on the Mac). > >>> > >>> > >>> > >>> It compiles and then at the end I get this instead of it bringing up > the > >>> emulator... > >>> > >>> > >>> > >>> Undefined symbols: > >>> > >>> "_main", reference from: > >>> > >>> Start in crt1.10.5.o > >>> > >>> Id: symbol(s) not found > >>> > >>> collect2: Id returned 1 exit status > >>> > >>> make: *** [build/hellp.app/hellpp] Error 1 > >>> > >>> > >>> > >>> Again I am starting with the supplied hello program... Any ideas? > >>> > >>> > >>> > >>> Thank you in advance, > >>> > >>> Andy Tipton Jr. > >>> > >>> Automationdirect.com > >>> > >>> Product Development > >>> > >>> > >>> > >>> > >>> > ------------------------------------------------------------------------ > >>> > >>> > ------------------------------------------------------------------------------ > >>> 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 > >> > >> > ------------------------------------------------------------------------------ > >> 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 > > > > > ------------------------------------------------------------------------------ > > 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 > > > ------------------------------------------------------------------------------ > 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: <ART...@Au...> - 2009-08-20 12:05:16
|
Ah great... I did the "--in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld.class" and it compiled... I am use to only having to specify the name of the class and not the extension... Thank you. But I get the same results as I do running the already compiled examples... the simulator comes up, but there are no apps on it... even if I swipe it. I am just running 'make' like the manual says... ________________________________ From: Sascha Haeberling [mailto:sa...@gm...] Sent: Wednesday, August 19, 2009 7:22 PM To: Tipton, Andy R. Jr. Cc: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. Instead of: --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld try: --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld.class or --in=bin\org\xmlvm\demo\ihelloworld\landscape\ Both should work. // Sascha On Wed, Aug 19, 2009 at 9:29 PM, <ART...@au...<mailto:ART...@au...>> wrote: Nope, it looks like it is missing 4 files... one of which is the iHelloWorld in build/iHelloWorld.app. Am I cross compiling it wrong? This is my command and output... C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell oWorld --target=iphone --iphone-app=HelloWorld --out=output [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for input: bin \org\xmlvm\demo\ihelloworld\landscape\HelloWorld [08/19/09 11:37:30.448] DEBUG: Instantiated: org.xmlvm.proc.out.IPhoneOutputP rocess [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile [08/19/09 11:37:44.182] DEBUG: Files written successfully. C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell oWorld --target=iphone --iphone-app=HelloWorld --out=output -----Original Message----- From: Arno Puder [mailto:ar...@pu...<mailto:ar...@pu...>] Sent: Wednesday, August 19, 2009 2:40 PM To: xml...@li...<mailto:xml...@li...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. that is bizarre! Can you please check the your output folder contains the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone (after running ant) Arno ART...@Au... wrote: > When I run the make command in the output folder (where xmlvm outputted the files), it will not run... > > I get this still... > > Undefined symbols: > "_main", referenced from: > start in crt1.10.5.o > ld: symbol(s) not found > collect2: ld returned 1 exit status > make: *** [build/HelloWorld.app/HelloWorld] Error 1 > > This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... > > java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output > > Andy > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...<mailto:ar...@pu...>] > Sent: Wednesday, August 19, 2009 2:22 PM > To: xml...@li...<mailto:xml...@li...> > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > the Makefile can start the emulator automatically, but unfortunately not > the application inside the emulator (haven't figured out how to do > that). With the new Xcode 3.0, the application is installed in a > separate screen. You have to 'swipe' the main screen one to the left and > there you should find your application. > > Arno > > > ART...@Au... wrote: >> I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? >> >> -----Original Message----- >> From: Arno Puder [mailto:ar...@pu...<mailto:ar...@pu...>] >> Sent: Tuesday, August 18, 2009 7:49 PM >> To: xml...@li...<mailto:xml...@li...> >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >> >> >> that is weird. The linking error indicates that there is no main() >> function. But that should have been generated from the example. >> >> Which of the three Hello World versions are you using? I just did the >> following: >> >> ant >> cd dist/demo/iphone/ihelloworld/portrait/iphone >> make >> >> That works perfectly fine for me. >> >> Arno >> >> >> ART...@Au... wrote: >>> Afternoon, >>> >>> >>> >>> I have been reading through the instructions and >>> everything has gone great up to this point. First off, my setup... I am >>> doing everything on Windows (sorry) up to the point of running the >>> 'make' under the output directory. I have a mount to the windows folder >>> on my Mac that I run the 'make' command (on the Mac). >>> >>> >>> >>> It compiles and then at the end I get this instead of it bringing up the >>> emulator... >>> >>> >>> >>> Undefined symbols: >>> >>> "_main", reference from: >>> >>> Start in crt1.10.5.o >>> >>> Id: symbol(s) not found >>> >>> collect2: Id returned 1 exit status >>> >>> make: *** [build/hellp.app/hellpp] Error 1 >>> >>> >>> >>> Again I am starting with the supplied hello program... Any ideas? >>> >>> >>> >>> Thank you in advance, >>> >>> Andy Tipton Jr. >>> >>> Automationdirect.com >>> >>> Product Development >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------------ >>> 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...<mailto: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...<mailto: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...<mailto: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...<mailto: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...<mailto: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...<mailto: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...<mailto:xml...@li...> https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: <ART...@Au...> - 2009-08-21 14:06:12
|
"But I get the same results as I do running the already compiled examples... the simulator comes up, but there are no apps on it... even if I swipe it. I am just running 'make' like the manual says..." The Mac I got was acting really strange, so I reloaded it and re-installed the SDK. The make now runs the sim and hello app fine. Just wanted to let everyone know it was not a xmlvm issue. Thank you for your help, Andy ________________________________ From: Sascha Haeberling [mailto:sa...@gm...] Sent: Wednesday, August 19, 2009 7:22 PM To: Tipton, Andy R. Jr. Cc: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. Instead of: --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld try: --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld.class or --in=bin\org\xmlvm\demo\ihelloworld\landscape\ Both should work. // Sascha On Wed, Aug 19, 2009 at 9:29 PM, <ART...@au...<mailto:ART...@au...>> wrote: Nope, it looks like it is missing 4 files... one of which is the iHelloWorld in build/iHelloWorld.app. Am I cross compiling it wrong? This is my command and output... C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell oWorld --target=iphone --iphone-app=HelloWorld --out=output [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for input: bin \org\xmlvm\demo\ihelloworld\landscape\HelloWorld [08/19/09 11:37:30.448] DEBUG: Instantiated: org.xmlvm.proc.out.IPhoneOutputP rocess [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile [08/19/09 11:37:44.182] DEBUG: Files written successfully. C:\Documents and Settings\artipton\My Documents\MyEclipse 7.5\Workspaces\Borg\xm lvm>java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell oWorld --target=iphone --iphone-app=HelloWorld --out=output -----Original Message----- From: Arno Puder [mailto:ar...@pu...<mailto:ar...@pu...>] Sent: Wednesday, August 19, 2009 2:40 PM To: xml...@li...<mailto:xml...@li...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. that is bizarre! Can you please check the your output folder contains the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone (after running ant) Arno ART...@Au... wrote: > When I run the make command in the output folder (where xmlvm outputted the files), it will not run... > > I get this still... > > Undefined symbols: > "_main", referenced from: > start in crt1.10.5.o > ld: symbol(s) not found > collect2: ld returned 1 exit status > make: *** [build/HelloWorld.app/HelloWorld] Error 1 > > This is the xmlvm command I am running to cross compile the iHelloWorld example Java app... > > java -jar dist\xmlvm.jar --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone --iphone-app=HelloWorld --out=output > > Andy > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...<mailto:ar...@pu...>] > Sent: Wednesday, August 19, 2009 2:22 PM > To: xml...@li...<mailto:xml...@li...> > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > the Makefile can start the emulator automatically, but unfortunately not > the application inside the emulator (haven't figured out how to do > that). With the new Xcode 3.0, the application is installed in a > separate screen. You have to 'swipe' the main screen one to the left and > there you should find your application. > > Arno > > > ART...@Au... wrote: >> I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? >> >> -----Original Message----- >> From: Arno Puder [mailto:ar...@pu...<mailto:ar...@pu...>] >> Sent: Tuesday, August 18, 2009 7:49 PM >> To: xml...@li...<mailto:xml...@li...> >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. >> >> >> that is weird. The linking error indicates that there is no main() >> function. But that should have been generated from the example. >> >> Which of the three Hello World versions are you using? I just did the >> following: >> >> ant >> cd dist/demo/iphone/ihelloworld/portrait/iphone >> make >> >> That works perfectly fine for me. >> >> Arno >> >> >> ART...@Au... wrote: >>> Afternoon, >>> >>> >>> >>> I have been reading through the instructions and >>> everything has gone great up to this point. First off, my setup... I am >>> doing everything on Windows (sorry) up to the point of running the >>> 'make' under the output directory. I have a mount to the windows folder >>> on my Mac that I run the 'make' command (on the Mac). >>> >>> >>> >>> It compiles and then at the end I get this instead of it bringing up the >>> emulator... >>> >>> >>> >>> Undefined symbols: >>> >>> "_main", reference from: >>> >>> Start in crt1.10.5.o >>> >>> Id: symbol(s) not found >>> >>> collect2: Id returned 1 exit status >>> >>> make: *** [build/hellp.app/hellpp] Error 1 >>> >>> >>> >>> Again I am starting with the supplied hello program... Any ideas? >>> >>> >>> >>> Thank you in advance, >>> >>> Andy Tipton Jr. >>> >>> Automationdirect.com >>> >>> Product Development >>> >>> >>> >>> >>> ------------------------------------------------------------------------ >>> >>> ------------------------------------------------------------------------------ >>> 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...<mailto: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...<mailto: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...<mailto: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...<mailto: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...<mailto: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...<mailto: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...<mailto:xml...@li...> https://lists.sourceforge.net/lists/listinfo/xmlvm-users |
From: Sascha H. <sa...@gm...> - 2009-08-21 17:33:35
|
I am happy it worked for you, thanks for letting us know! // Sascha On Fri, Aug 21, 2009 at 3:36 PM, <ART...@au...> wrote: > “But I get the same results as I do running the already compiled > examples… the simulator comes up, but there are no apps on it… even if I > swipe it. I am just running ‘make’ like the manual says…” > > > > The Mac I got was acting really strange, so I reloaded it and re-installed > the SDK. The make now runs the sim and hello app fine. Just wanted to let > everyone know it was not a xmlvm issue. > > > Thank you for your help, > > Andy > > > ------------------------------ > > *From:* Sascha Haeberling [mailto:sa...@gm...] > *Sent:* Wednesday, August 19, 2009 7:22 PM > *To:* Tipton, Andy R. Jr. > *Cc:* xml...@li... > > *Subject:* Re: [xmlvm-users] Running the provided iHelloWorld example. > > > > Instead of: > > --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld > > > try: > > --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld.class > > > > or > > > > --in=bin\org\xmlvm\demo\ihelloworld\landscape\ > > > > Both should work. > > > > // Sascha > > On Wed, Aug 19, 2009 at 9:29 PM, <ART...@au...> wrote: > > Nope, it looks like it is missing 4 files... one of which is the > iHelloWorld in build/iHelloWorld.app. > > Am I cross compiling it wrong? > > This is my command and output... > > C:\Documents and Settings\artipton\My Documents\MyEclipse > 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar > --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > > oWorld --target=iphone --iphone-app=HelloWorld --out=output > > [08/19/09 11:37:30.432] WARNING: Unable to create InputProcesses for > input: bin > > \org\xmlvm\demo\ihelloworld\landscape\HelloWorld > > [08/19/09 11:37:30.448] DEBUG: Instantiated: > org.xmlvm.proc.out.IPhoneOutputP > rocess > [08/19/09 11:37:30.448] DEBUG: Processing IPhoneOutputProcess > [08/19/09 11:37:30.479] DEBUG: Processing finished successfully. > [08/19/09 11:37:44.119] DEBUG: Writing file: output\MakeVars > [08/19/09 11:37:44.151] DEBUG: Writing file: output\Info.plist > [08/19/09 11:37:44.166] DEBUG: Writing file: output\Makefile > [08/19/09 11:37:44.182] DEBUG: Files written successfully. > > C:\Documents and Settings\artipton\My Documents\MyEclipse > 7.5\Workspaces\Borg\xm > lvm>java -jar dist\xmlvm.jar > --in=bin\org\xmlvm\demo\ihelloworld\landscape\Hell > > oWorld --target=iphone --iphone-app=HelloWorld --out=output > > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > > Sent: Wednesday, August 19, 2009 2:40 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is bizarre! Can you please check the your output folder contains > the same files as in xmlvm/dist/demo/iphone/ihelloworld/portrait/iphone > (after running ant) > > Arno > > > ART...@Au... wrote: > > When I run the make command in the output folder (where xmlvm outputted > the files), it will not run... > > > > I get this still... > > > > Undefined symbols: > > "_main", referenced from: > > start in crt1.10.5.o > > ld: symbol(s) not found > > collect2: ld returned 1 exit status > > make: *** [build/HelloWorld.app/HelloWorld] Error 1 > > > > This is the xmlvm command I am running to cross compile the iHelloWorld > example Java app... > > > > java -jar dist\xmlvm.jar > --in=bin\org\xmlvm\demo\ihelloworld\landscape\HelloWorld --target=iphone > --iphone-app=HelloWorld --out=output > > > > Andy > > > > -----Original Message----- > > From: Arno Puder [mailto:ar...@pu...] > > Sent: Wednesday, August 19, 2009 2:22 PM > > To: xml...@li... > > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > > > > the Makefile can start the emulator automatically, but unfortunately not > > the application inside the emulator (haven't figured out how to do > > that). With the new Xcode 3.0, the application is installed in a > > separate screen. You have to 'swipe' the main screen one to the left and > > there you should find your application. > > > > Arno > > > > > > ART...@Au... wrote: > >> I got the simulator installed... so now it brings it up... but the > helloworld app isn't in the simulator... When I cross compile the > iHelloWorld into a folder, should I be running the make from that folder? > >> > >> -----Original Message----- > >> From: Arno Puder [mailto:ar...@pu...] > >> Sent: Tuesday, August 18, 2009 7:49 PM > >> To: xml...@li... > >> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > >> > >> > >> that is weird. The linking error indicates that there is no main() > >> function. But that should have been generated from the example. > >> > >> Which of the three Hello World versions are you using? I just did the > >> following: > >> > >> ant > >> cd dist/demo/iphone/ihelloworld/portrait/iphone > >> make > >> > >> That works perfectly fine for me. > >> > >> Arno > >> > >> > >> ART...@Au... wrote: > >>> Afternoon, > >>> > >>> > >>> > >>> I have been reading through the instructions and > >>> everything has gone great up to this point. First off, my setup... I > am > >>> doing everything on Windows (sorry) up to the point of running the > >>> 'make' under the output directory. I have a mount to the windows > folder > >>> on my Mac that I run the 'make' command (on the Mac). > >>> > >>> > >>> > >>> It compiles and then at the end I get this instead of it bringing up > the > >>> emulator... > >>> > >>> > >>> > >>> Undefined symbols: > >>> > >>> "_main", reference from: > >>> > >>> Start in crt1.10.5.o > >>> > >>> Id: symbol(s) not found > >>> > >>> collect2: Id returned 1 exit status > >>> > >>> make: *** [build/hellp.app/hellpp] Error 1 > >>> > >>> > >>> > >>> Again I am starting with the supplied hello program... Any ideas? > >>> > >>> > >>> > >>> Thank you in advance, > >>> > >>> Andy Tipton Jr. > >>> > >>> Automationdirect.com > >>> > >>> Product Development > >>> > >>> > >>> > >>> > >>> > ------------------------------------------------------------------------ > >>> > >>> > ------------------------------------------------------------------------------ > >>> 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 > >> > >> > ------------------------------------------------------------------------------ > >> 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 > > > > > ------------------------------------------------------------------------------ > > 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 > > > ------------------------------------------------------------------------------ > 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: <ART...@Au...> - 2009-08-19 19:36:34
|
If I go down to the /dist/demo/iphone/ihelloworld/portrait/iphone and run make, the simulator comes up, but even if I swipe there is not app... If I swipe to the right I get the search... -----Original Message----- From: Arno Puder [mailto:ar...@pu...] Sent: Wednesday, August 19, 2009 2:22 PM To: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. the Makefile can start the emulator automatically, but unfortunately not the application inside the emulator (haven't figured out how to do that). With the new Xcode 3.0, the application is installed in a separate screen. You have to 'swipe' the main screen one to the left and there you should find your application. Arno ART...@Au... wrote: > I got the simulator installed... so now it brings it up... but the helloworld app isn't in the simulator... When I cross compile the iHelloWorld into a folder, should I be running the make from that folder? > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Tuesday, August 18, 2009 7:49 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is weird. The linking error indicates that there is no main() > function. But that should have been generated from the example. > > Which of the three Hello World versions are you using? I just did the > following: > > ant > cd dist/demo/iphone/ihelloworld/portrait/iphone > make > > That works perfectly fine for me. > > Arno > > > ART...@Au... wrote: >> Afternoon, >> >> >> >> I have been reading through the instructions and >> everything has gone great up to this point. First off, my setup... I am >> doing everything on Windows (sorry) up to the point of running the >> 'make' under the output directory. I have a mount to the windows folder >> on my Mac that I run the 'make' command (on the Mac). >> >> >> >> It compiles and then at the end I get this instead of it bringing up the >> emulator... >> >> >> >> Undefined symbols: >> >> "_main", reference from: >> >> Start in crt1.10.5.o >> >> Id: symbol(s) not found >> >> collect2: Id returned 1 exit status >> >> make: *** [build/hellp.app/hellpp] Error 1 >> >> >> >> Again I am starting with the supplied hello program... Any ideas? >> >> >> >> Thank you in advance, >> >> Andy Tipton Jr. >> >> Automationdirect.com >> >> Product Development >> >> >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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: <ART...@Au...> - 2009-08-19 18:15:13
|
I am trying the landscape, but I wasn't running the make from that the directory... I was running it from root of my cross compile folder. I ran it from the iphone directory and got a different result... mkdir -p /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM cd build; cp -R iHelloWorld.app /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM echo "(version 1)" > /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM.sb echo "(debug deny)" >> /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM.sb echo "(allow default)" >> /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM.sb open /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app The file /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app does not exist. make: *** [run] Error 1 I installed the iPhoneSimulator package from Apple's iPhone SDK (3.0)... am I missing something else? Thank you, Andy -----Original Message----- From: Arno Puder [mailto:ar...@pu...] Sent: Tuesday, August 18, 2009 7:49 PM To: xml...@li... Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. that is weird. The linking error indicates that there is no main() function. But that should have been generated from the example. Which of the three Hello World versions are you using? I just did the following: ant cd dist/demo/iphone/ihelloworld/portrait/iphone make That works perfectly fine for me. Arno ART...@Au... wrote: > Afternoon, > > > > I have been reading through the instructions and > everything has gone great up to this point. First off, my setup... I am > doing everything on Windows (sorry) up to the point of running the > 'make' under the output directory. I have a mount to the windows folder > on my Mac that I run the 'make' command (on the Mac). > > > > It compiles and then at the end I get this instead of it bringing up the > emulator... > > > > Undefined symbols: > > "_main", reference from: > > Start in crt1.10.5.o > > Id: symbol(s) not found > > collect2: Id returned 1 exit status > > make: *** [build/hellp.app/hellpp] Error 1 > > > > Again I am starting with the supplied hello program... Any ideas? > > > > Thank you in advance, > > Andy Tipton Jr. > > Automationdirect.com > > Product Development > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > 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: Arno P. <ar...@pu...> - 2009-08-19 18:19:06
|
the Makefile assumes a standard installation of Xcode 3.0. The error you described seems to suggest that you don't have that on your system. Note that you should select the default installation path, otherwise the Makefile won't work. Arno ART...@Au... wrote: > I am trying the landscape, but I wasn't running the make from that the directory... I was running it from root of my cross compile folder. I ran it from the iphone directory and got a different result... > > mkdir -p /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM > cd build; cp -R iHelloWorld.app /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM > echo "(version 1)" > /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM.sb > echo "(debug deny)" >> /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM.sb > echo "(allow default)" >> /Users/artipton/Library/Application\ Support/iPhone\ Simulator/User/Applications/XMLVM.sb > open /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app > The file /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app does not exist. > make: *** [run] Error 1 > > I installed the iPhoneSimulator package from Apple's iPhone SDK (3.0)... am I missing something else? > > Thank you, > Andy > > -----Original Message----- > From: Arno Puder [mailto:ar...@pu...] > Sent: Tuesday, August 18, 2009 7:49 PM > To: xml...@li... > Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. > > > that is weird. The linking error indicates that there is no main() > function. But that should have been generated from the example. > > Which of the three Hello World versions are you using? I just did the > following: > > ant > cd dist/demo/iphone/ihelloworld/portrait/iphone > make > > That works perfectly fine for me. > > Arno > > > ART...@Au... wrote: >> Afternoon, >> >> >> >> I have been reading through the instructions and >> everything has gone great up to this point. First off, my setup... I am >> doing everything on Windows (sorry) up to the point of running the >> 'make' under the output directory. I have a mount to the windows folder >> on my Mac that I run the 'make' command (on the Mac). >> >> >> >> It compiles and then at the end I get this instead of it bringing up the >> emulator... >> >> >> >> Undefined symbols: >> >> "_main", reference from: >> >> Start in crt1.10.5.o >> >> Id: symbol(s) not found >> >> collect2: Id returned 1 exit status >> >> make: *** [build/hellp.app/hellpp] Error 1 >> >> >> >> Again I am starting with the supplied hello program... Any ideas? >> >> >> >> Thank you in advance, >> >> Andy Tipton Jr. >> >> Automationdirect.com >> >> Product Development >> >> >> >> >> ------------------------------------------------------------------------ >> >> ------------------------------------------------------------------------------ >> 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 > > ------------------------------------------------------------------------------ > 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 |