* [Qemu-devel] I am attempting to port Qemu to Mac OS X.
@ 2003-10-06 11:04 qemu
2003-10-06 22:27 ` [Qemu-devel] Mac OS X and QEMU "roadmap" Fabrice Bellard
0 siblings, 1 reply; 5+ messages in thread
From: qemu @ 2003-10-06 11:04 UTC (permalink / raw)
To: qemu-devel
I have been lurking around this mailing list (via the online web view) and
decided to post here. I have decided to attempt to try to make Qemu at
least compile on the Darwin kernel.
So far I have a few files successfully compiling, but I am still a LONG
way from being there. Of course, the dyngen app is intended to read ELF
binaries, and I have almost no understanding of Mach-O binaries at all.
People can check the status of this little (potentially futile) project,
as well as download a tarball of what I have so far at:
http://www.raylucke.com/20010926/software/qemu/
Regards,
Ray
^ permalink raw reply [flat|nested] 5+ messages in thread
* [Qemu-devel] Mac OS X and QEMU "roadmap"
2003-10-06 11:04 [Qemu-devel] I am attempting to port Qemu to Mac OS X qemu
@ 2003-10-06 22:27 ` Fabrice Bellard
2003-10-07 7:22 ` Benjamin Herrenschmidt
2003-10-07 10:16 ` Rusty Russell
0 siblings, 2 replies; 5+ messages in thread
From: Fabrice Bellard @ 2003-10-06 22:27 UTC (permalink / raw)
To: qemu-devel
qemu@raylucke.com wrote:
> I have been lurking around this mailing list (via the online web view) and
> decided to post here. I have decided to attempt to try to make Qemu at
> least compile on the Darwin kernel.
>
> So far I have a few files successfully compiling, but I am still a LONG
> way from being there. Of course, the dyngen app is intended to read ELF
> binaries, and I have almost no understanding of Mach-O binaries at all.
>
> People can check the status of this little (potentially futile) project,
> as well as download a tarball of what I have so far at:
> http://www.raylucke.com/20010926/software/qemu/
OK. I will try to look at that after the next release. On my TODO list I
have 3 (or 4) items left:
- Finish full soft MMU mode (almost there, it allows to launch unpatched
guest OSes and it eases QEMU portability on non Linux host OSes).
- (maybe, because it is more complicated) add a physical TB cache, so
that QEMU does not flush translated code when the guest OS switches tasks.
- add builtin user mode tests for ARM and SPARC targets (I need to
compile tests/linuxtest.c for those archs).
- add test "reference" images for Linux, NetBSD and FreeDOS (if someone
wants to help on that topic...).
Fabrice.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Mac OS X and QEMU "roadmap"
2003-10-06 22:27 ` [Qemu-devel] Mac OS X and QEMU "roadmap" Fabrice Bellard
@ 2003-10-07 7:22 ` Benjamin Herrenschmidt
2003-10-07 10:16 ` Rusty Russell
1 sibling, 0 replies; 5+ messages in thread
From: Benjamin Herrenschmidt @ 2003-10-07 7:22 UTC (permalink / raw)
To: qemu-devel
> - Finish full soft MMU mode (almost there, it allows to launch unpatched
> guest OSes and it eases QEMU portability on non Linux host OSes).
>
> - (maybe, because it is more complicated) add a physical TB cache, so
> that QEMU does not flush translated code when the guest OS switches tasks.
>
> - add builtin user mode tests for ARM and SPARC targets (I need to
> compile tests/linuxtest.c for those archs).
>
> - add test "reference" images for Linux, NetBSD and FreeDOS (if someone
> wants to help on that topic...).
HI Fabrice !
What's currently preventing "vl" (with our without softmmu) to work
on a ppc host ? I have the x86 "vl" working within qemu but that's
a bit nasty stacking 2 levels of emulation ;)
Ben.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Mac OS X and QEMU "roadmap"
2003-10-06 22:27 ` [Qemu-devel] Mac OS X and QEMU "roadmap" Fabrice Bellard
2003-10-07 7:22 ` Benjamin Herrenschmidt
@ 2003-10-07 10:16 ` Rusty Russell
2003-10-14 21:24 ` Fabrice Bellard
1 sibling, 1 reply; 5+ messages in thread
From: Rusty Russell @ 2003-10-07 10:16 UTC (permalink / raw)
To: qemu-devel
In message <3F81EC35.8040808@free.fr> you write:
> OK. I will try to look at that after the next release. On my TODO list I
> have 3 (or 4) items left:
You missed "primitive SMP support". With the hotplug CPU code I'm
working on, it'd be a huge boon...
Just don't want you to get bored 8)
Rusty.
--
Anyone who quotes me in their sig is an idiot. -- Rusty Russell.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Mac OS X and QEMU "roadmap"
2003-10-07 10:16 ` Rusty Russell
@ 2003-10-14 21:24 ` Fabrice Bellard
0 siblings, 0 replies; 5+ messages in thread
From: Fabrice Bellard @ 2003-10-14 21:24 UTC (permalink / raw)
To: qemu-devel
Rusty Russell wrote:
> In message <3F81EC35.8040808@free.fr> you write:
>
>>OK. I will try to look at that after the next release. On my TODO list I
>>have 3 (or 4) items left:
>
>
> You missed "primitive SMP support". With the hotplug CPU code I'm
> working on, it'd be a huge boon...
>
> Just don't want you to get bored 8)
I think SMP will not be so complicated to add provided QEMU schedules
itself each virtual CPU... I must first find some time to finish the
current release !
Fabrice.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2003-10-14 21:39 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-06 11:04 [Qemu-devel] I am attempting to port Qemu to Mac OS X qemu
2003-10-06 22:27 ` [Qemu-devel] Mac OS X and QEMU "roadmap" Fabrice Bellard
2003-10-07 7:22 ` Benjamin Herrenschmidt
2003-10-07 10:16 ` Rusty Russell
2003-10-14 21:24 ` Fabrice Bellard
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).