You can subscribe to this list here.
2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(29) |
Aug
(75) |
Sep
(32) |
Oct
(147) |
Nov
(31) |
Dec
(49) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2010 |
Jan
(46) |
Feb
(35) |
Mar
(148) |
Apr
(33) |
May
(53) |
Jun
(46) |
Jul
(60) |
Aug
(44) |
Sep
(135) |
Oct
(23) |
Nov
(68) |
Dec
(42) |
2011 |
Jan
(94) |
Feb
(55) |
Mar
(114) |
Apr
(78) |
May
(64) |
Jun
(10) |
Jul
(31) |
Aug
(2) |
Sep
(25) |
Oct
(13) |
Nov
(8) |
Dec
(24) |
2012 |
Jan
(5) |
Feb
(33) |
Mar
(31) |
Apr
(19) |
May
(24) |
Jun
(23) |
Jul
(14) |
Aug
(15) |
Sep
(12) |
Oct
(3) |
Nov
(4) |
Dec
(19) |
2013 |
Jan
(8) |
Feb
(20) |
Mar
(4) |
Apr
(2) |
May
(1) |
Jun
(2) |
Jul
|
Aug
(1) |
Sep
(2) |
Oct
(1) |
Nov
(4) |
Dec
|
2014 |
Jan
|
Feb
|
Mar
(6) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2015 |
Jan
(7) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
2016 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
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: 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: 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: <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: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 19:45:36
|
Thank you... I have Java 6 installed. This is the process I am following. Just to make sure we are on the same page... On Windows - I checked out the xmlvm. - I compiled xmlvm - I cross compiled the iHelloWorld.class into a shared directory (this is how I access from the Mac) On the Mac - I am running 'make' from the directory that like the xmlvm manual says... So I am missing a step or doing something wrong? When I run the example from the output cross compile directory it is no longer java at that point... Where am I disconnecting? Sorry for the trouble, Andy -----Original Message----- From: WARNER, KENNETH [mailto:KEN...@tr...] Sent: Wednesday, August 19, 2009 3:34 PM To: xml...@li... Subject: Re: [xmlvm-users] xmlvm-users Digest, Vol 2, Issue 7 To run the java examples you need to be in the directory where the jar file is when executing, java -jar ihelloworld.jar, and the phone simulator will come up..it worked for me anyway. You also have to have Java 1.6 and xmlvm.jar and objc-compat.jar in the class path (they are in xmlvm/dist/lib). -----Original Message----- From: xml...@li... [mailto:xml...@li...] Sent: Wednesday, August 19, 2009 3:30 PM To: xml...@li... Subject: xmlvm-users Digest, Vol 2, Issue 7 Send xmlvm-users mailing list submissions to xml...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/xmlvm-users or, via email, send a message with subject or body 'help' to xml...@li... You can reach the person managing the list at xml...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of xmlvm-users digest..." Today's Topics: 1. Re: Running the provided iHelloWorld example. (Arno Puder) 2. Re: Running the provided iHelloWorld example. (Arno Puder) 3. Re: Running the provided iHelloWorld example. (ART...@Au...) 4. Re: Running the provided iHelloWorld example. (Arno Puder) 5. Re: Running the provided iHelloWorld example. (ART...@Au...) ---------------------------------------------------------------------- Message: 1 Date: Wed, 19 Aug 2009 11:18:50 -0700 From: Arno Puder <ar...@pu...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: xml...@li... Message-ID: <4A8...@pu...> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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/iPh one\ Simulator.app > The file /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPh one 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 ------------------------------ Message: 2 Date: Wed, 19 Aug 2009 11:21:34 -0700 From: Arno Puder <ar...@pu...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: xml...@li... Message-ID: <4A8...@pu...> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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 ------------------------------ Message: 3 Date: Wed, 19 Aug 2009 14:27:28 -0400 From: <ART...@Au...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: <xml...@li...> Message-ID: <EB8...@sr...tomationdirect. com> Content-Type: text/plain; charset="us-ascii" 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 ------------------------------ Message: 4 Date: Wed, 19 Aug 2009 11:39:54 -0700 From: Arno Puder <ar...@pu...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: xml...@li... Message-ID: <4A8...@pu...> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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 ------------------------------ Message: 5 Date: Wed, 19 Aug 2009 15:29:27 -0400 From: <ART...@Au...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: <xml...@li...> Message-ID: <EB8...@sr...tomationdirect. com> Content-Type: text/plain; charset="us-ascii" 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 End of xmlvm-users Digest, Vol 2, Issue 7 ***************************************** ------------------------------------------------------------------------------ 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: WARNER, K. <KEN...@tr...> - 2009-08-19 19:34:31
|
To run the java examples you need to be in the directory where the jar file is when executing, java -jar ihelloworld.jar, and the phone simulator will come up..it worked for me anyway. You also have to have Java 1.6 and xmlvm.jar and objc-compat.jar in the class path (they are in xmlvm/dist/lib). -----Original Message----- From: xml...@li... [mailto:xml...@li...] Sent: Wednesday, August 19, 2009 3:30 PM To: xml...@li... Subject: xmlvm-users Digest, Vol 2, Issue 7 Send xmlvm-users mailing list submissions to xml...@li... To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/xmlvm-users or, via email, send a message with subject or body 'help' to xml...@li... You can reach the person managing the list at xml...@li... When replying, please edit your Subject line so it is more specific than "Re: Contents of xmlvm-users digest..." Today's Topics: 1. Re: Running the provided iHelloWorld example. (Arno Puder) 2. Re: Running the provided iHelloWorld example. (Arno Puder) 3. Re: Running the provided iHelloWorld example. (ART...@Au...) 4. Re: Running the provided iHelloWorld example. (Arno Puder) 5. Re: Running the provided iHelloWorld example. (ART...@Au...) ---------------------------------------------------------------------- Message: 1 Date: Wed, 19 Aug 2009 11:18:50 -0700 From: Arno Puder <ar...@pu...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: xml...@li... Message-ID: <4A8...@pu...> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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/iPh one\ Simulator.app > The file /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPh one 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 ------------------------------ Message: 2 Date: Wed, 19 Aug 2009 11:21:34 -0700 From: Arno Puder <ar...@pu...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: xml...@li... Message-ID: <4A8...@pu...> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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 ------------------------------ Message: 3 Date: Wed, 19 Aug 2009 14:27:28 -0400 From: <ART...@Au...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: <xml...@li...> Message-ID: <EB8...@sr...tomationdirect. com> Content-Type: text/plain; charset="us-ascii" 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 ------------------------------ Message: 4 Date: Wed, 19 Aug 2009 11:39:54 -0700 From: Arno Puder <ar...@pu...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: xml...@li... Message-ID: <4A8...@pu...> Content-Type: text/plain; charset=ISO-8859-1; format=flowed 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 ------------------------------ Message: 5 Date: Wed, 19 Aug 2009 15:29:27 -0400 From: <ART...@Au...> Subject: Re: [xmlvm-users] Running the provided iHelloWorld example. To: <xml...@li...> Message-ID: <EB8...@sr...tomationdirect. com> Content-Type: text/plain; charset="us-ascii" 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 End of xmlvm-users Digest, Vol 2, Issue 7 ***************************************** |
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 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 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: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: 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 |
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: <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: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-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-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: <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-15 16:45:23
|
Kevin Glass wrote: > We're currently using the java to iphone objc library and finding > performance issues with the default option of having an AutoReleasePool > for every class/method. We're focusing on games at the moment so we're > finding that the only class we want the pool in is the main class > managing the game loop and then applying the annotation > NoAutoReleasePool to every other class to let auto the garbage > management happen on the release at the end of the game loop. Right now we only support the annotation NoAutoReleasePool that can only be added to methods. I was thinking of introducing more annotations where you could set a default setting for a whole class. Requires some work, but certainly might be more convenient. > Is it advised to have so many auto release pools since they seem to have > a high performance overahead. Giving every method its own auto release pool certainly introduces high overhead. Let me digress a little and write about the implication of using the NSAutoReleasePool for garbage collection. It should be clear that we cannot identify circular data structures with this, since the reference count never drops to 0 in this case. I don't see this as a problem, but you need to be aware of this when designing your data structures. But there is another problem that we cannot deal with in a good way. Imagine the following code: void foo() { for (int i = 0; i < 10000000; i++) new String(); } When this code gets cross-compiled, those 1000* objects would all end up in the auto release pool of method foo. Those objects would only get deleted when you exit foo. A normal garbage collector would of course be able to reclaim memory while the for-loop still executes. These are some implications for using the NSAutoReleasePool and not have a full-fledged garbage collector. Coming back to your question: of course it is a huge overhead of adding an auto release pool to every method and in many cases, it is not really necessary (e.g., when no objects are being allocated inside a method). The problem is, that this cannot really be easily determined automatically. What if a method (that itself does not instantiate objects) calls another method (that does instantiate objects)? Perhaps there are some good heuristics that can be implemented inside of XMLVM, but for the moment we take the easy way of letting the developer give 'hints' via the NoAutoReleasePool annotation. Suggestions are welcome! > Still going great here tho :) (Patch is in progress again) :-) Arno |
From: Kevin G. <ke...@co...> - 2009-08-15 09:03:27
|
We're currently using the java to iphone objc library and finding performance issues with the default option of having an AutoReleasePool for every class/method. We're focusing on games at the moment so we're finding that the only class we want the pool in is the main class managing the game loop and then applying the annotation NoAutoReleasePool to every other class to let auto the garbage management happen on the release at the end of the game loop. Is it advised to have so many auto release pools since they seem to have a high performance overahead. Still going great here tho :) (Patch is in progress again) Kev |
From: Arno P. <ar...@pu...> - 2009-08-14 17:47:07
|
Ken, I take it from your mail that you managed to compile XMLVM, right? If you do so, Hello World is already compiled for you. You can find the iPhone version in xmlvm/dist/demo/iphone/ihelloworld/ Note that I have not yet adapted the Makefile for the iPhone OS 3.0, but you should be able to import all the sources into an empty Xcode project. Please also take a look at the documentation. Arno WARNER, KENNETH wrote: > I see that objc-compat.jar has the UIxxxxx.class in it, but now I’m > getting this error… > > --------------------Configuration: <Default>-------------------- > > C:\xmlvm\demo\iphone\ihelloworld\landscape\src\org\xmlvm\demo\ihelloworld\landscape\HelloWorld.java:5: > cannot access org.xmlvm.iphone.UIApplication > > bad class file: > C:\xmlvm\dist\lib\objc-compat.jar(org/xmlvm/iphone/UIApplication.class) > > class file has wrong version 50.0, should be 49.0 > > Please remove or make sure it appears in the correct subdirectory of the > classpath. > > public class HelloWorld extends UIApplication { > > ^ > > 1 error > > > > Process completed. > > > > …..any ideas or this?? I took the xmlvm files as a tarball file from > http://xmlvm.svn.sourceforge.net/viewvc/xmlvm/. There is a link there to > Download GNU tarball > <http://xmlvm.svn.sourceforge.net/viewvc/xmlvm.tar.gz?view=tar> > > > > > > *From:* WARNER, KENNETH > *Sent:* Friday, August 14, 2009 8:31 AM > *To:* 'xml...@li...' > *Subject:* xmlvm and java > > > > I’m trying to compile your helloworld.java app, but I’m getting errors > > > for all the cocoa touch classes (UIxxxxx). I downloaded xmlvm and > > > compiled it with ant and moved xmlvm.jar to my classpath, but still the > > > errors. I also downloaded eclipse and get errors using it too. If you > > > have time, please let me know what I’m missing. > > > > > > I do some java programming at work, mostly desktop gui apps that connect > > > to a db via odbc to create transactions for our financial system. I also > > > interested in developing apps for the Iphone and that’s how I came > > > across the xmlvm.org site and your email… > > > > > > > > > > > > I appreciate any help you can lend…thanks Ken > > > > > > Ken Warner > > Department of the Treasury > > OMB, System Operations > > 609.984.5818 (phone) > > 609.984.5210 (fax) > > 33 West State Street > > Trenton, NJ 08625 > > > > > > > ------------------------------------------------------------------------ > > ------------------------------------------------------------------------------ > 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: Inderjeet S. <ind...@gm...> - 2009-08-11 12:04:37
|
Please add a min() method to java_lang_Math java_lang_Math.h + (NSInteger) min: (NSInteger)a b:(NSInteger)b ; java_lang_Math.m + (NSInteger) min: (NSInteger)a b:(NSInteger)b { return (a <= b) ? a : b; } |
From: Sascha H. <sa...@gm...> - 2009-08-10 19:51:18
|
Yes, he just said it was Obj C. :) Du you have some time looking into this? Is this something that we didn't map because we didn't need it so far or something that was tricky to do? I somehow guess it's the first reason, but as you did most of the ObjC mapping, ... :) // Sascha On Mon, Aug 10, 2009 at 5:56 PM, Arno Puder <ar...@pu...> wrote: > > I presume your are generating Objective-C, right? > > Arno > > > Sent from my iPod > > On Aug 10, 2009, at 8:46 AM, Inderjeet Singh <ind...@gm...> wrote: > > Hi Arno, > > Thanks for the quick response. I am compiling from Java. > Here is an example: > > class Foo { private final byte value; > public Foo(byte value) { > this.value = value; > } > public byte getValue() { > return value; > } > } > > Thanks > Inder > > > On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder < <ar...@pu...> > ar...@pu...> wrote: > >> >> Inder: can you please mail a small, self-contained example that >> demonstrates the problems over this mailing list? >> >> Thanks, >> Arno >> >> >> Inderjeet Singh wrote: >> > I have some code that uses java data type byte extensively, and the >> > generated xmlvm code uses byte* everywhere but fails to compile. >> > Does xmlvm handle byte datatype? If not, will just adding a typedef from >> > byte to char solve the problem? >> > >> > Thanks >> > Inder >> > >> > >> > ------------------------------------------------------------------------ >> > >> > >> ------------------------------------------------------------------------------ >> > 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> >> http://p.sf.net/sfu/bobj-july >> > >> > >> > ------------------------------------------------------------------------ >> > >> > _______________________________________________ >> > xmlvm-users mailing list >> > <xml...@li...>xml...@li... >> > <https://lists.sourceforge.net/lists/listinfo/xmlvm-users> >> 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> >> http://p.sf.net/sfu/bobj-july >> _______________________________________________ >> xmlvm-users mailing list >> <xml...@li...>xml...@li... >> <https://lists.sourceforge.net/lists/listinfo/xmlvm-users> >> 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-10 16:56:06
|
I presume your are generating Objective-C, right? Arno Sent from my iPod On Aug 10, 2009, at 8:46 AM, Inderjeet Singh <ind...@gm...> wrote: > Hi Arno, > > Thanks for the quick response. I am compiling from Java. > Here is an example: > > class Foo { > private final byte value; > public Foo(byte value) { > this.value = value; > } > public byte getValue() { > return value; > } > } > > Thanks > Inder > > > On Mon, Aug 10, 2009 at 7:12 AM, Arno Puder <ar...@pu...> wrote: > > Inder: can you please mail a small, self-contained example that > demonstrates the problems over this mailing list? > > Thanks, > Arno > > > Inderjeet Singh wrote: > > I have some code that uses java data type byte extensively, and the > > generated xmlvm code uses byte* everywhere but fails to compile. > > Does xmlvm handle byte datatype? If not, will just adding a > typedef from > > byte to char solve the problem? > > > > Thanks > > Inder > > > > > > > --- > --------------------------------------------------------------------- > > > > > --- > --- > --- > --------------------------------------------------------------------- > > 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 > |