Skip to Content.
Sympa Menu

sm-commit - [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 <scm AT mail.sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Jaka Kranjc (2df84903228082a73d0294377342ddcc9ba55347)
  • Date: Sun, 25 Feb 2007 05:22:08 -0600

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
CFLAGS=${CFLAGS/pentium4/pentium-mmx} &&
CFLAGS=${CFLAGS/pentium3/pentium-mmx} &&
+ CFLAGS=${CFLAGS/-march=athlon-xp/} &&
disable_pic
fi &&

diff --git a/utils/qemu/HISTORY b/utils/qemu/HISTORY
index 29852c2..24c215d 100644
--- a/utils/qemu/HISTORY
+++ b/utils/qemu/HISTORY
@@ -1,3 +1,7 @@
+2007-02-25 Jaka Kranjc <lynxlynxlynx AT sourcemage.org>
+ * BUILD: also remove -march=athlon-xp from CFLAGS for MMU
+ use grep instead of list_find, the api was changed in devel sorcery
+
2007-02-18 Eric Sandall <sandalle AT sourcemage.org>
* BUILD: Disable PIC (with disable_pic) if building soft MMU targets
pentium4 breaks soft MMU, downgrade to pentium-mmx if building MMU




Archive powered by MHonArc 2.6.24.

Top of Page