All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ulrich Hecht <uli@suse.de>
To: qemu-devel@nongnu.org
Cc: aliguori@us.ibm.com, riku.voipio@iki.fi
Subject: [Qemu-devel] [PATCH 2/4] S/390 host/target build system support
Date: Fri, 24 Jul 2009 19:08:10 +0200	[thread overview]
Message-ID: <1248455292-12808-3-git-send-email-uli@suse.de> (raw)
In-Reply-To: <1248455292-12808-2-git-send-email-uli@suse.de>

changes to configure and makefiles for S/390 host and target support

Signed-off-by: Ulrich Hecht <uli@suse.de>
---
 Makefile.target |    9 +++++++++
 configure       |   20 ++++++++++++++++----
 2 files changed, 25 insertions(+), 4 deletions(-)

diff --git a/Makefile.target b/Makefile.target
index f9cd42a..42aab86 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -84,6 +84,9 @@ CPPFLAGS+=-I$(SRC_PATH)/tcg -I$(SRC_PATH)/tcg/$(ARCH)
 ifeq ($(ARCH),sparc64)
 CPPFLAGS+=-I$(SRC_PATH)/tcg/sparc
 endif
+ifeq ($(ARCH),s390x)
+CPPFLAGS+=-I$(SRC_PATH)/tcg/s390
+endif
 ifdef CONFIG_SOFTFLOAT
 libobj-y += fpu/softfloat.o
 else
@@ -211,6 +214,9 @@ endif
 ifeq ($(ARCH),s390)
 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
 endif
+ifeq ($(ARCH),s390x)
+LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
+endif
 
 ifeq ($(ARCH),sparc)
 # -static is used to avoid g1/g3 usage by the dynamic linker	
@@ -358,6 +364,9 @@ endif
 ifeq ($(ARCH),s390)
 LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
 endif
+ifeq ($(ARCH),s390x)
+LDFLAGS+=-Wl,-T,$(SRC_PATH)/$(ARCH).ld
+endif
 
 ifeq ($(ARCH),sparc)
 # -static is used to avoid g1/g3 usage by the dynamic linker
diff --git a/configure b/configure
index e9ed09d..09c8443 100755
--- a/configure
+++ b/configure
@@ -146,9 +146,12 @@ case "$cpu" in
   ppc64)
     cpu="ppc64"
   ;;
-  s390*)
+  s390)
     cpu="s390"
   ;;
+  s390x)
+    cpu="s390x"
+  ;;
   sparc|sun4[cdmuv])
     cpu="sparc"
   ;;
@@ -761,6 +764,7 @@ sh4eb-linux-user \
 sparc-linux-user \
 sparc64-linux-user \
 sparc32plus-linux-user \
+s390x-linux-user \
 "
     fi
 # the following are Darwin specific
@@ -825,6 +829,7 @@ hostlongbits="32"
 if test "$cpu" = "x86_64" \
      -o "$cpu" = "alpha" \
      -o "$cpu" = "ia64" \
+     -o "$cpu" = "s390x" \
      -o "$cpu" = "sparc64" \
      -o "$cpu" = "ppc64"; then
     hostlongbits="64"
@@ -1516,7 +1521,7 @@ echo "EXESUF=$EXESUF" >> $config_host_mak
 echo "PTHREADLIBS=$PTHREADLIBS" >> $config_host_mak
 echo "CLOCKLIBS=$CLOCKLIBS" >> $config_host_mak
 case "$cpu" in
-  i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|sparc|sparc64)
+  i386|x86_64|alpha|cris|hppa|ia64|m68k|microblaze|mips|mips64|ppc|ppc64|s390|s390x|sparc|sparc64)
     ARCH=$cpu
   ;;
   armv4b|armv4l)
@@ -1847,7 +1852,7 @@ config_h=$target_dir/config.h
 target_arch2=`echo $target | cut -d '-' -f 1`
 target_bigendian="no"
 case "$target_arch2" in
-  armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|sh4eb|sparc|sparc64|sparc32plus)
+  armeb|m68k|microblaze|mips|mipsn32|mips64|ppc|ppcemb|ppc64|ppc64abi32|s390x|sh4eb|sparc|sparc64|sparc32plus)
   target_bigendian=yes
   ;;
 esac
@@ -2006,6 +2011,13 @@ case "$target_arch2" in
     echo "TARGET_ABI32=y" >> $config_mak
     target_phys_bits=64
   ;;
+  s390x)
+    echo "TARGET_ARCH=s390x" >> $config_mak
+    echo "#define TARGET_ARCH \"s390x\"" >> $config_h
+    echo "#define TARGET_S390X 1" >> $config_h
+    target_nptl="yes"
+    target_phys_bits=64
+  ;;
   *)
     echo "Unsupported target CPU"
     exit 1
@@ -2075,7 +2087,7 @@ fi
 echo "TARGET_XML_FILES=$list" >> $config_mak
 
 case "$target_arch2" in
-  arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|sparc|sparc64|sparc32plus)
+  arm|armeb|m68k|microblaze|mips|mipsel|mipsn32|mipsn32el|mips64|mips64el|ppc|ppc64|ppc64abi32|ppcemb|s390x|sparc|sparc64|sparc32plus)
     echo "CONFIG_SOFTFLOAT=y" >> $config_mak
     ;;
 esac
-- 
1.6.2.1

  reply	other threads:[~2009-07-24 17:05 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-07-24 17:08 [Qemu-devel] [PATCH 0/4] S/390 host and target support Ulrich Hecht
2009-07-24 17:08 ` [Qemu-devel] [PATCH 1/4] S/390 CPU emulation Ulrich Hecht
2009-07-24 17:08   ` Ulrich Hecht [this message]
2009-07-24 17:08     ` [Qemu-devel] [PATCH 3/4] S/390 host support for TCG Ulrich Hecht
2009-07-24 17:08       ` [Qemu-devel] [PATCH 4/4] linux-user: S/390 64-bit (s390x) support Ulrich Hecht
2009-07-24 17:59       ` [Qemu-devel] [PATCH 3/4] S/390 host support for TCG malc
2009-11-02 17:17       ` Aurelien Jarno
2009-11-09 16:54         ` Ulrich Hecht
2009-11-10 17:01           ` Aurelien Jarno
     [not found]     ` <m3vdlirkqw.fsf@neno.mitica>
2009-07-27 10:20       ` [Qemu-devel] Re: [PATCH 2/4] S/390 host/target build system support Ulrich Hecht
2009-07-25 17:05   ` [Qemu-devel] [PATCH 1/4] S/390 CPU emulation Blue Swirl
2009-07-27 10:54     ` Ulrich Hecht
2009-07-27 11:09     ` Filip Navara
2009-10-06 23:22 ` [Qemu-devel] [PATCH 0/4] S/390 host and target support Alexander Graf

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1248455292-12808-3-git-send-email-uli@suse.de \
    --to=uli@suse.de \
    --cc=aliguori@us.ibm.com \
    --cc=qemu-devel@nongnu.org \
    --cc=riku.voipio@iki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.