Re: [Qemu-devel] problem to build...
Le mardi 01 novembre 2005 à 23:19 -0500, Marc Collin a écrit : > hi > > when i build qemu 0.7.2 i get: > > qemu-0.7.2/softmmu_header.h:188: error: can't find a register in class > ‘GENERAL_REGS’ while reloading ‘asm’ Could you report on what OS and what architecture you are trying to build it? Further, we could need more information. > any idea? > > thanks ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] Urlaub - auch für Sie
Title: Gratisurlaub für Sie Bestimmt möchten Sie einenGratisurlaub? Kein Problem. Es geht sogar ganz einfach. Wir in Montaña del Mar an der spanischen Mittelmeerküste leben von der Mund-zu-Mund-Propaganda. Also, wenn uns unsere Kunden und Freunde weiterempfehlen. Und diese für uns so wichtige Werbung wollen wir belohnen. Indem wir sie mit einer Woche Gratisurlaub beschenken. Natürlich auch Sie. Sie müssen lediglich in Ihrem Bekannten- und Freundeskreis auf Montaña del Mar aufmerksam machen. Der eine oder andere wird dann bei Montaña del Mar seinen Urlaub buchen. Und schon haben Sie Ihren Gratisurlaub. Und sogar noch Urlaubsgeld dazu. Denn Sie erhalten zusätzlich eine Provision von 15% auf die Buchung des von Ihnen Geworbenen. Ist doch toll, nicht wahr? Es lohnt sich wirklich, etwas Propaganda zu machen. Sie brauchen nur Ihren Bekannten oder Freunden sagen, sie sollen uns eine eMail senden oder www.spain-mm2.net besuchen. Dort werden sie alles finden, was sie wissen wollen. Wenn er dann gebucht hat, brauchen Sie uns nur noch seinen Namen zu nennen und schon haben Sie Ihren Gratisurlaub und das Urlaubsgeld. Montaña del Mar E-08811 Canyelles / SpanienTelefon 0034-938 973 311Mobiltelefon 0034-629 759 385 Fax 0034-938 973 369eMail Ihren Bekannten und auch Ihnen wird Montaña del Mar gefallen. Es gibt kaum einen andern Ort, bei dem man einen so ruhigen Urlaub mit den gewünschten Aktivitäten sei es nun sportlich oder kurturell oder gesellschaftlich miteinander verbinden kann, wohnen in der Natur aber ganz nah am Rummel. Zwischen einem der schönsten Strände des Mittelmeers und dem pulsierenden Leben des nur eine halbe Stunde entfernten Barcelonas oder der ganzen Unterhaltungseuphorie in Sitges (gerade 5 Minuten entfernt) zu pendeln. Das ist Abwechslung, wie man sie im Urlaub haben will. Senden Sie uns einfach eine eMail. Am besten gleich ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] problem to build...
Le 2 Novembre 2005 04:15, Jérôme Warnier a écrit : > > Could you report on what OS and what architecture you are trying to > build it? > Further, we could need more information. ya no problem i try to build under linux (suse 10) with an athlon xp (i386) ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] problem to build...
On Wed, Nov 02, 2005 at 09:11:26AM -0500, Marc Collin wrote: > Le 2 Novembre 2005 04:15, J??r??me Warnier a ??crit??: > > > > > Could you report on what OS and what architecture you are trying to > > build it? > > Further, we could need more information. > > ya no problem > > i try to build under linux (suse 10) with an athlon xp (i386) > If this turns out to be another "I'm using gcc 4" "Sorry gcc 4 isn't supported by qemu" discussion, I will be forced to take action. -- Infinite complexity begets infinite beauty. Infinite precision begets infinite perfection. ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] problem to build...
Hi, On Wed, 2 Nov 2005, Jim C. Brown wrote: > If this turns out to be another "I'm using gcc 4" "Sorry gcc 4 isn't > supported by qemu" discussion, I will be forced to take action. Need my gun? ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] Qemu Compile errors on OpenBSD 3.7
There occur a number of compile errors when I attempt to build Qemu on OpenBSD 3.7 using gcc 3.3.5. Symbols FE_RN, FE_RM, etc are undefined. They are used After I fixed that I got a number of other errors which I have not yet had time to figure out. Qemu has been ported to OpenBSD, but I wanted to get the latest version and possibly start hacking on it. Thanks, Dave Feustel -- Tired of having to defend against Malware? You know: trojans, viruses, SPYWARE, ADWARE, KEYLOGGERS, rootkits, worms and popups. Then Switch to OpenBSD with a KDE desktop!!! ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] [patch] Configure check for gcc4
Qemu is known to not build properly with gcc4. Despite this being documented in several places users frequent still get it wrong. This is probably the second most frequent question (the first, equally dumb problem being "I can't make ping work with -user-net"). The attached patch adds a configure check for gcc4. Paul === configure == --- configure (revision 1789) +++ configure (local) @@ -88,6 +88,7 @@ kernel_path="" cocoa="no" check_gfx="yes" +check_gcc="yes" # OS specific targetos=`uname -s` @@ -200,6 +201,8 @@ ;; --disable-gfx-check) check_gfx="no" ;; + --disable-gcc-check) check_gcc="no" + ;; esac done @@ -277,6 +280,23 @@ have_gcc3_options="yes" fi +# Check for gcc4 +if test "$check_gcc" = "yes" ; then +cat > $TMPC <= 4 +#error gcc4 +#endif +int main(){return 0;} +EOF +if ! $cc -o $TMPO $TMPC 2>/dev/null ; then +echo "ERROR: \"$cc\" looks like gcc 4.x" +echo "QEMU is known to have problems when compiled with gcc 4.x" +echo "It is recommended they you use gcc 3.x to build QEMU" +echo "To use this compiler anyway, configure with --disable-gcc-check" +exit 1; +fi +fi + ## # SDL probe ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] [patch] Configure check for gcc4
Paul Brook wrote: +if ! $cc -o $TMPO $TMPC 2>/dev/null ; then +echo "ERROR: \"$cc\" looks like gcc 4.x" +echo "QEMU is known to have problems when compiled with gcc 4.x" +echo "It is recommended they you use gcc 3.x to build QEMU" +echo "To use this compiler anyway, configure with --disable-gcc-check" +exit 1; +fi Just a little typo: +echo "It is recommended that you use gcc 3.x to build QEMU" ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
RE: [Qemu-devel] [patch] Configure check for gcc4
I waited this moment since months. +1 ! --- Paul Brook <[EMAIL PROTECTED]> a écrit : > Qemu is known to not build properly with gcc4. Despite this being documented > in several places users frequent still get it wrong. This is probably the > second most frequent question (the first, equally dumb problem being > "I can't make ping work with -user-net"). > > The attached patch adds a configure check for gcc4. Kind regards, Sylvain Petreolle (aka Usurp) --- --- --- --- --- --- --- --- --- --- --- --- --- Tired of a proprietary Windows on your computer ? Use free ReactOS instead ( http://www.reactos.org ) ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] Disk images
Hi, The user forum seems to have been down for a while, so I post my question to this mailing list. The -smd dir option allows the emulated machine to access the external world. I was wondering if there was a way to do it the other way: allow the host to access the disk image of the emulated machine. My problem is that I used virtual machine to prepare various flavor of Linux (installation, configuration), and I'ld like to make a tar image of the files once I'm finished. Currently, I boot a live cd inside the virtual machine, mount the smb dir, and then make the transfer. But it is damn slow ! Maybe there is way to get the data from the disk image directly ? A related question: which disk format offer the best performances ? I don't care much about space, but I'ld like to use some of the virtual machines as regular machines and not just for test. Talking about disk images, is there some way to defragment them ? I mean after a while, being used a lot, they probably get fragmented too (inside the disk image, not the file of the disk image). And finally my last question: imagine I create a big file in my virtual OS, and then delete it, the size of the disk image won't shrink. I guess that there are some filesystem issues there, but more generally, can a disk image shrink eventually ? Thanks for any tip, advice or help. ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] Re: Tims don't miss the chance
Hel 't miss Phar xpress S ffer lo, Don maE pecial O CIXaLeVIVAAm ALIS Now $naxvitraAGRA Now $LIUM Now $bien 3.67 3.321.23 plus 200 other - http://loppingsnpn.fledlon.com Best Easy Home Total Fast PrOrDeCoSh icesderingliverynfidentialityipping ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] Re: Disk images
> The -smd dir option allows the emulated machine to access the external > world. I was wondering if there was a way to do it the other way: > allow the host to access the disk image of the emulated machine. > > My problem is that I used virtual machine to prepare various flavor of > Linux (installation, configuration), and I'ld like to make a tar image > of the files once I'm finished. Currently, I boot a live cd inside the > virtual machine, mount the smb dir, and then make the transfer. But it > is damn slow ! Maybe there is way to get the data from the disk image > directly ? Ok, found the answer for this one here: http://wiki.archlinux.org/index.php/Qemu. Sorry, I should have searched before. > A related question: which disk format offer the best performances ? I > don't care much about space, but I'ld like to use some of the virtual > machines as regular machines and not just for test. > > Talking about disk images, is there some way to defragment them ? I > mean after a while, being used a lot, they probably get fragmented too > (inside the disk image, not the file of the disk image). > > And finally my last question: imagine I create a big file in my > virtual OS, and then delete it, the size of the disk image won't > shrink. I guess that there are some filesystem issues there, but more > generally, can a disk image shrink eventually ? ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] broken links on official website
The link for the QEMU Wiki from Morphix Linux doesn't work. It's been down for half a year I believe. Is someone (I'm guessing Fabrice Bellard himself) going to fix this? The page with the broken link: http://fabrice.bellard.free.fr/qemu/links.html The link itself: http://am.xs4all.nl/phpwiki/index.php/Qemu The latest copy of the web page in the Wayback Machine, if we still need it: http://web.archive.org/web/20041012012511/http://am.xs4all.nl/phpwiki/index.php/Qemu The FAQ section of the Morphix Wiki has been superceded by this one-page Wiki: http://lilly.csoft.net/~jeffryj/cgi-bin/moin.cgi/FrontPage -- Infinite complexity begets infinite beauty. Infinite precision begets infinite perfection. ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] qemu configure
CVSROOT:/cvsroot/qemu Module name:qemu Branch: Changes by: Fabrice Bellard <[EMAIL PROTECTED]> 05/11/02 22:30:45 Modified files: . : configure Log message: gcc4 warning (Paul Brook) CVSWeb URLs: http://savannah.gnu.org/cgi-bin/viewcvs/qemu/qemu/configure.diff?tr1=1.74&tr2=1.75&r1=text&r2=text ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] broken links on official website
There is another broken link on this page: http://fabrice.bellard.free.fr/qemu/lists.html The broken link: http://www.dad-answers.com/qemu-forum/index.php It should be this: http://qemu.dad-answers.com Not to be a PITA. I just figure that getting these fixed will leave us with slightly less confused users. -- Infinite complexity begets infinite beauty. Infinite precision begets infinite perfection. ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
[Qemu-devel] qemu-ppc install problems
Hi, the following error occurs (at boot time), when i want to install osx 10.3: System Failure: cpu=0 code=0007 (Unaligned stack) Latest crash info for cpu 0: Exception state (sv=0x00877000) PC=0x0008CE84; MSR=0x1000; DAR=0x0030A398; DSISR=0x4000; LR=0x00088c64; R1=0x05413A90; XCP=0x0098 (System Failure) Backtrace: 0x0005ED6C 0x00084EC8 0x0005A400 0x0005FF3C 0x000604D4 0x0005B8B0 0x0008676C 0x0002CE68 0x0002CDA8 Proceeding back via exception chain: Exception state (sv=0x00B77000) PC=0x; MSR=0xD030; DAR=0x; DSISR=0x; LR=0x; R1=0x; XCP=0x (Unknown) Kernel version: Darwin kernel Version 7.0.0: ...the system hangs... I have used qemu-0.72 (src). Any help? Thanks! Regards, Michael ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] broken links on official website
Jim C. Brown wrote: The link for the QEMU Wiki from Morphix Linux doesn't work. It's been down for half a year I believe. Is someone (I'm guessing Fabrice Bellard himself) going to fix this? Done. Fabrice. ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel
Re: [Qemu-devel] Qemu Compile errors on OpenBSD 3.7
Same thing for FreeBSD (first the differences in IEEE FP headers, then the vfs header, then I gave up), but since the ports build has been patched to work around those, I refrained myself from reporting this to the mailing list. However, it would be really nice to have upstream QEMU building without specific *BSD patches. Just my personal opinion, though. -- "The weakest way to solve a problem is just to solve it" -Alan Kay On 11/2/05, Dave Feustel <[EMAIL PROTECTED]> wrote: > There occur a number of compile errors when I > attempt to build Qemu on OpenBSD 3.7 using gcc 3.3.5. > > Symbols FE_RN, FE_RM, etc are undefined. They are used > After I fixed that I got a number of other errors which I have > not yet had time to figure out. Qemu has been ported to > OpenBSD, but I wanted to get the latest version and possibly > start hacking on it. > > Thanks, > Dave Feustel > -- > Tired of having to defend against Malware? > You know: trojans, viruses, SPYWARE, ADWARE, > KEYLOGGERS, rootkits, worms and popups. > Then Switch to OpenBSD with a KDE desktop!!! > > > ___ > Qemu-devel mailing list > Qemu-devel@nongnu.org > http://lists.nongnu.org/mailman/listinfo/qemu-devel > ___ Qemu-devel mailing list Qemu-devel@nongnu.org http://lists.nongnu.org/mailman/listinfo/qemu-devel