Skip to Content.
Sympa Menu

sm-commit - Re: [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (2df84903228082a73d0294377342ddcc9ba55347)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Jaka Kranjc <lynx AT mages.ath.cx>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: Re: [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (2df84903228082a73d0294377342ddcc9ba55347)
  • Date: Mon, 26 Feb 2007 08:48:49 +0100

On Sunday 25 of February 2007 22:59:40 Eric Sandall wrote:
> On Sunday 25 February 2007 03:22:08 Jaka Kranjc wrote:
> > GIT changes to master grimoire by Jaka Kranjc
> > <lynxlynxlynx AT sourcemage.org>:
> >
> > utils/qemu/BUILD | 3 ++-
> > utils/qemu/HISTORY | 4 ++++
> > 2 files changed, 6 insertions(+), 1 deletion(-)
> >
> > New commits:
> > commit 2df84903228082a73d0294377342ddcc9ba55347
> > Author: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
> > Commit: Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
> >
> > qemu compile fixes
> >
> > diff --git a/utils/qemu/BUILD b/utils/qemu/BUILD
> > index 43b92df..4ab878a 100755
> > --- a/utils/qemu/BUILD
> > +++ b/utils/qemu/BUILD
> > @@ -4,9 +4,10 @@ message "Target list:$QEMU_ARCHS" &&
> > # Disable PIC if building soft MMU targets
> > # Pentium3/4 breaks on building soft MMU, downgrade to pentium-mmx
> > #
> > -if list_find "$QEMU_ARCHS" *-softmmu; then
> > +if grep -q softmmu <<< "$QEMU_ARCHS"; then
>
> What's wrong with list_find?
It was used badly, I wonder if that even worked. The old implementation
supported regular expressions (not globs!), but the new one does exact
matching.
http://bugs.sourcemage.org/show_bug.cgi?id=13356

>
> > CFLAGS=${CFLAGS/pentium4/pentium-mmx} &&
> > CFLAGS=${CFLAGS/pentium3/pentium-mmx} &&
> > + CFLAGS=${CFLAGS/-march=athlon-xp/} &&
>
> Completely remove the athlon-xp opts, or did you want to downgrade to
> athlon or pentium-mmx?
I just removed them, I don't know if there is a safe lesser optimisation.

--
We cannot command nature except by obeying her. --Sir Francis Bacon
Have a sourcerous day! www.sourcemage.org

Attachment: pgpdCNa0wJvvV.pgp
Description: PGP signature




Archive powered by MHonArc 2.6.24.

Top of Page