* [Qemu-devel] more OS X patch help @ 2004-07-03 18:34 Fred Hope 2004-07-03 19:10 ` [Qemu-devel] Problem compiling under mingw32 Natalia Portillo 2004-07-03 21:13 ` [Qemu-devel] more OS X patch help Jeff Cooper 0 siblings, 2 replies; 5+ messages in thread From: Fred Hope @ 2004-07-03 18:34 UTC (permalink / raw) To: qemu-devel Okay, thank you Raphael for the help. I patched the code, then ran ./configure and then make. I could tell that make was getting further than it had been in the past. But eventually, it failed, giving me seemingly hundreds of lines like this: /var/tmp//cc5H7LwS.s:534:Expected comma after segment-name /var/tmp//cc5H7LwS.s:534:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//cc5H7LwS.s:662:Expected comma after segment-name /var/tmp//cc5H7LwS.s:662:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//cc5H7LwS.s:765:Expected comma after segment-name /var/tmp//cc5H7LwS.s:765:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//cc5H7LwS.s:868:Expected comma after segment-name /var/tmp//cc5H7LwS.s:868:Rest of line ignored. 1st junk character valued 32 ( ). Then after all that, it says: make[1]: *** [translate.o] Error 1 make: *** [all] Error 1 I did the commands exactly as you said them, for downloading from CVS and for patching the file. Would man patch help me here or is there some problem in the code? Thanks, Fred Hope ^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] Problem compiling under mingw32 2004-07-03 18:34 [Qemu-devel] more OS X patch help Fred Hope @ 2004-07-03 19:10 ` Natalia Portillo 2004-07-03 19:12 ` Filip Navara 2004-07-03 21:13 ` [Qemu-devel] more OS X patch help Jeff Cooper 1 sibling, 1 reply; 5+ messages in thread From: Natalia Portillo @ 2004-07-03 19:10 UTC (permalink / raw) To: qemu-devel When I try to compile the lastest CVS QEMU from mingw32 qemu-system-ppc-softmmu shows an error (attached below), and the qemu-system-i386-softmmu only shows standard output (help and monitor) when running under MSYS, under the win32 command line it shows nothing. Any idea? $ make for d in i386-softmmu ppc-softmmu; do \ make -C $d all || exit 1 ; \ done make[1]: Entering directory `/home/Claunia/qemu/i386-softmmu' make[1]: Nothing to be done for `all'. make[1]: Leaving directory `/home/Claunia/qemu/i386-softmmu' make[1]: Entering directory `/home/Claunia/qemu/ppc-softmmu' gcc -Wall -O2 -g -fno-strict-aliasing -fomit-frame-pointer -I. -I/home/Claunia/qemu/target-ppc -I/home/Claunia/qemu -D_GNU_SOURCE -c -o vl.o /home/Claunia/qemu/vl.c In file included from c:/ARCHIV~1/MingW/include/windef.h:246, from c:/ARCHIV~1/MingW/include/windows.h:48, from C:/Archivos de programa/MinGW/MSYS/home/Claunia/qemu/vl.c:60: c:/ARCHIV~1/MingW/include/winnt.h:97: parse error before numeric constant C:/Archivos de programa/MinGW/MSYS/home/Claunia/qemu/vl.c:1205: warning: `term_exit' defined but not used make[1]: *** [vl.o] Error 1 make[1]: Leaving directory `/home/Claunia/qemu/ppc-softmmu' make: *** [all] Error 1 ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Problem compiling under mingw32 2004-07-03 19:10 ` [Qemu-devel] Problem compiling under mingw32 Natalia Portillo @ 2004-07-03 19:12 ` Filip Navara 2004-07-04 5:25 ` kazu 0 siblings, 1 reply; 5+ messages in thread From: Filip Navara @ 2004-07-03 19:12 UTC (permalink / raw) To: qemu-devel Natalia Portillo wrote: >When I try to compile the lastest CVS QEMU from mingw32 >qemu-system-ppc-softmmu shows an error (attached below), and the >qemu-system-i386-softmmu only shows standard output (help and monitor) when >running under MSYS, under the win32 command line it shows nothing. > >Any idea? > > Please, please...not again. I have sent patch for this two times to the list, please search the archives. Regards, Filip ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Problem compiling under mingw32 2004-07-03 19:12 ` Filip Navara @ 2004-07-04 5:25 ` kazu 0 siblings, 0 replies; 5+ messages in thread From: kazu @ 2004-07-04 5:25 UTC (permalink / raw) To: qemu-devel Hi, Filip. I added your patch on my site on June 29th. Thank you. http://www.h7.dion.ne.jp/~qemu-win/ Hi, Natalia. I collected patches for mingw and provide exectables. Please see my site. Regards, kazu Sunday, July 04, 2004 4:12 AM Filip Navara wrote: > > Natalia Portillo wrote: > > >When I try to compile the lastest CVS QEMU from mingw32 > >qemu-system-ppc-softmmu shows an error (attached below), and the > >qemu-system-i386-softmmu only shows standard output (help and monitor) when > >running under MSYS, under the win32 command line it shows nothing. > > > >Any idea? > > > > > Please, please...not again. I have sent patch for this two times to the > list, please search the archives. > > Regards, > Filip > ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] more OS X patch help 2004-07-03 18:34 [Qemu-devel] more OS X patch help Fred Hope 2004-07-03 19:10 ` [Qemu-devel] Problem compiling under mingw32 Natalia Portillo @ 2004-07-03 21:13 ` Jeff Cooper 1 sibling, 0 replies; 5+ messages in thread From: Jeff Cooper @ 2004-07-03 21:13 UTC (permalink / raw) To: qemu-devel [-- Attachment #1: Type: text/plain, Size: 1438 bytes --] Fred try running configure like this: ./configure --target-list=i386-softmmu On Jul 3, 2004, at 11:34 AM, Fred Hope wrote: > Okay, thank you Raphael for the help. I patched the code, then ran > ./configure and then make. I could tell that make was getting further > than it had been in the past. But eventually, it failed, giving me > seemingly hundreds of lines like this: > > /var/tmp//cc5H7LwS.s:534:Expected comma after segment-name > /var/tmp//cc5H7LwS.s:534:Rest of line ignored. 1st junk character > valued > 32 ( ). > /var/tmp//cc5H7LwS.s:662:Expected comma after segment-name > /var/tmp//cc5H7LwS.s:662:Rest of line ignored. 1st junk character > valued > 32 ( ). > /var/tmp//cc5H7LwS.s:765:Expected comma after segment-name > /var/tmp//cc5H7LwS.s:765:Rest of line ignored. 1st junk character > valued > 32 ( ). > /var/tmp//cc5H7LwS.s:868:Expected comma after segment-name > /var/tmp//cc5H7LwS.s:868:Rest of line ignored. 1st junk character > valued > 32 ( ). > > > Then after all that, it says: > > make[1]: *** [translate.o] Error 1 > make: *** [all] Error 1 > > I did the commands exactly as you said them, for downloading from CVS > and for patching the file. Would man patch help me here or is there > some problem in the code? > > Thanks, > Fred Hope > > > > _______________________________________________ > Qemu-devel mailing list > Qemu-devel@nongnu.org > http://lists.nongnu.org/mailman/listinfo/qemu-devel > [-- Attachment #2: Type: text/enriched, Size: 1489 bytes --] Fred try running configure like this: <fontfamily><param>Courier</param><x-tad-bigger>./configure --target-list=i386-softmmu </x-tad-bigger></fontfamily> On Jul 3, 2004, at 11:34 AM, Fred Hope wrote: <excerpt>Okay, thank you Raphael for the help. I patched the code, then ran ./configure and then make. I could tell that make was getting further than it had been in the past. But eventually, it failed, giving me seemingly hundreds of lines like this: /var/tmp//cc5H7LwS.s:534:Expected comma after segment-name /var/tmp//cc5H7LwS.s:534:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//cc5H7LwS.s:662:Expected comma after segment-name /var/tmp//cc5H7LwS.s:662:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//cc5H7LwS.s:765:Expected comma after segment-name /var/tmp//cc5H7LwS.s:765:Rest of line ignored. 1st junk character valued 32 ( ). /var/tmp//cc5H7LwS.s:868:Expected comma after segment-name /var/tmp//cc5H7LwS.s:868:Rest of line ignored. 1st junk character valued 32 ( ). Then after all that, it says: make[1]: *** [translate.o] Error 1 make: *** [all] Error 1 I did the commands exactly as you said them, for downloading from CVS and for patching the file. Would man patch help me here or is there some problem in the code? Thanks, Fred Hope _______________________________________________ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel </excerpt> ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2004-07-04 5:28 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2004-07-03 18:34 [Qemu-devel] more OS X patch help Fred Hope 2004-07-03 19:10 ` [Qemu-devel] Problem compiling under mingw32 Natalia Portillo 2004-07-03 19:12 ` Filip Navara 2004-07-04 5:25 ` kazu 2004-07-03 21:13 ` [Qemu-devel] more OS X patch help Jeff Cooper
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).