Re: [Qemu-devel] Buildbots out of disk space

2013-07-15 Thread Palle Lyckegaard
Hi Stefan, the default_solaris11express_sparc buildbot can be removed, since the box is not running (Solaris) anymore. Regards Palle On Mon, 15 Jul 2013, Stefan Hajnoczi wrote: Date: Mon, 15 Jul 2013 06:43:49 From: Stefan Hajnoczi stefa...@gmail.com To: Christian Berendt

[Qemu-devel] [PATCH] Added missing sigbus_reraise() to non-Linux platforms

2011-03-13 Thread Palle Lyckegaard
Hi, File cpus.c seems to be missing sigbus_reraise() on non-Linux platforms. The following patch fixes building qemu on Solaris 11 Express (SPARC). Regards Palle Signed-off-by: Palle Lyckegaard pa...@lyckegaard.dk --- cpus.c |5 + 1 files changed, 5 insertions(+), 0 deletions

Re: [Qemu-devel] [PATCH 0/5] tcg-sparc improvements

2010-01-11 Thread Palle Lyckegaard
On Mon, 11 Jan 2010, Richard Henderson wrote: Richard Henderson (5): tcg-sparc: Add tcg_out_arithc. tcg-sparc: Implement add2, sub2, mulu2. tcg-sparc: Do not remove %o[012] from 'r' constraint. tcg-sparc: Implement division properly. tcg-sparc: Implement ext32[su]_i64 Great work :-)

[Qemu-devel] mulu2 not implemented for tcg target sparc

2010-01-10 Thread Palle Lyckegaard
Hi, The tcg mulu2 operation is apparently missing for the sparc target (tcg/sparc/tcg-target.c function tcg_out_op()) Is anyone else working on implementing the missing mulu2 operation? Regards Palle

Re: [Qemu-devel] mulu2 not implemented for tcg target sparc

2010-01-10 Thread Palle Lyckegaard
On Sun, 10 Jan 2010, Blue Swirl wrote: Is it needed somewhere? I was trying to run qemu-system-mips with a NetBSD malta kernel that generates a MIPS mult operation. Tracing the code through tcg points at a missing mulu2 opreration for sparc. It will be generated for instance for some

[Qemu-devel] Re: [PATCH v3] Drop --whole-archive and static libraries

2010-01-07 Thread Palle Lyckegaard
On Wed, 6 Jan 2010, Andreas F?rber wrote: v3: - Fix dependency modelling for tools - Remove comment on GENERATED_HEADERS obsoleted by this patch Hi, as the previous patches this v3 version solves the linking problems on Solaris hosts regards Palle

[Qemu-devel] Re: [PATCH v2] Drop --whole-archive and static libraries

2010-01-03 Thread Palle Lyckegaard
On Thu, 31 Dec 2009, Andreas F?rber wrote: v2: - Don't try to include /config.mak for user emulators - Changes to user object paths (Quickfix for libuser.a drop) were obsoleted by user_only: compile everything with -fpie (Kirill A. Shutemov) Hi, I have succesfully used the v2 patch on my

[Qemu-devel] Current state of qemu-system-mips - updated

2009-12-28 Thread Palle Lyckegaard
Hi, as a follow-up to a previous thread (http://lists.nongnu.org/archive/html/qemu-devel/2009-12/msg01089.html) the qemu-system-mips seems to work better than described above on a OpenSolaris/SPARC host systen when the following patch is applied:

Re: [Qemu-devel] Building qemu on OpenSolaris/SPARC fails: tcg_unsigned_cond undefined symbol

2009-12-27 Thread Palle Lyckegaard
On Sun, 27 Dec 2009, Blue Swirl wrote: I've applied the patch that implements tcg_unsigned_cond, please try again. Looks good - builds on OpenSolaris/SPARC again. Thanks!

[Qemu-devel] Building qemu on OpenSolaris/SPARC fails: tcg_unsigned_cond undefined symbol

2009-12-26 Thread Palle Lyckegaard
Hi, Building on OpenSolaris/SPARC fails with: ... LINK mips64-softmmu/qemu-system-mips64 Undefined first referenced symbol in file tcg_unsigned_cond libqemu.a(tcg.o) ld: fatal: symbol referencing errors. No output written

[Qemu-devel] Current state of qemu-system-mips

2009-12-10 Thread Palle Lyckegaard
Hi, what is the current state of the qemu-system-malta? When I try to run a NetBSD or Linux kernel the following message appears: ./git/qemu/mips-softmmu/qemu-system-mips -kernel ./netbsd_malta -m 64 -nographic qemu: hardware error: Unknown device 'smbus-eeprom' for bus 'I2C' CPU #0:

Re: [Qemu-devel] PATCH: Building qemu on OpenSolaris 2009.06 (SPARC) host

2009-11-29 Thread Palle Lyckegaard
On Sun, 29 Nov 2009, Andreas Färber wrote: Not having that v7 dir on amd64 here, did you check whether their values are really defined identically? If not, it may be necessary to either #undef them first or to prefix them with TARGET_ as done for the user emulators... In which files are

Re: [Qemu-devel] PATCH: Building qemu on OpenSolaris 2009.06 (SPARC) host

2009-11-29 Thread Palle Lyckegaard
On Sun, 29 Nov 2009, Andreas Färber wrote: I.e. if unavoidable, instead of #define PSR_XXX 123 one might need to #define TARGET_PSR_XXX 123 and change *all* uses of PSR_XXX to TARGET_PSR_XXX, so that Sun's and QEMU's definitions can live side by side. If your approach or #undef works

Re: [Qemu-devel] PATCH: Building qemu on OpenSolaris 2009.06 (SPARC) host

2009-11-28 Thread Palle Lyckegaard
On Fri, 27 Nov 2009, Andreas Färber wrote: I can ack the softfloat part (fixes redefinition warnings) and the tap part (fixes an unresolved symbol TFR). But what does the cpu.h part fix? Andreas Hi Andreas, the cpu.h part is an attempt to avoid warnings about e.g. PSR_EF being redefined

[Qemu-devel] PATCH: Building qemu on OpenSolaris 2009.06 (SPARC) host

2009-11-26 Thread Palle Lyckegaard
Hello brave qemu developers! Attached are a few patches that will enable qemu to build on a OpenSolaris 2009.06 host. Please consider to apply them to the repository. Regards Palle diff --git a/fpu/softfloat-native.h b/fpu/softfloat-native.h index 0893ce3..592beca 100644 ---