diff options
author | Juan Quintela | 2009-07-27 16:12:41 +0200 |
---|---|---|
committer | Anthony Liguori | 2009-07-27 21:09:16 +0200 |
commit | b274051d58f7b6e48078a84427d24b79d3a56b73 (patch) | |
tree | 21c050cac2a19c672fb7d19b6f88f62856db7cfc /configure | |
parent | change HOST_SOLARIS to CONFIG_SOLARIS{_VERSION} (diff) | |
download | qemu-b274051d58f7b6e48078a84427d24b79d3a56b73.tar.gz qemu-b274051d58f7b6e48078a84427d24b79d3a56b73.tar.xz qemu-b274051d58f7b6e48078a84427d24b79d3a56b73.zip |
Remove SP_CFLAGS and SP_LDFLAGS
SP_CFLAGS and SP_LDFLAGS are only used as initial values for ARCH_CFLAGS/ARCH_LDFLAGS. Call it directly ARCH_*. Once there, use the same indentantion that the rest of the file
Signed-off-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 35 |
1 files changed, 22 insertions, 13 deletions
@@ -475,13 +475,28 @@ for opt do --sparc_cpu=*) sparc_cpu="$optarg" case $sparc_cpu in - v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" - target_arch2="sparc"; cpu="sparc" ;; - v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32" - target_arch2="sparc"; cpu="sparc" ;; - v9) SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64" - target_arch2="sparc64"; cpu="sparc64" ;; - *) echo "undefined SPARC architecture. Exiting";exit 1;; + v7|v8) + ARCH_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__" + ARCH_LDFLAGS="-m32" + target_arch2="sparc" + cpu="sparc" + ;; + v8plus|v8plusa) + ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__" + ARCH_LDFLAGS="-m32" + target_arch2="sparc" + cpu="sparc" + ;; + v9) + ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__" + ARCH_LDFLAGS="-m64" + target_arch2="sparc64" + cpu="sparc64" + ;; + *) + echo "undefined SPARC architecture. Exiting"; + exit 1 + ;; esac ;; --enable-werror) werror="yes" @@ -554,9 +569,6 @@ case "$cpu" in sparc) if test -z "$sparc_cpu" ; then ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__" ARCH_LDFLAGS="-m32" - else - ARCH_CFLAGS="${SP_CFLAGS}" - ARCH_LDFLAGS="${SP_LDFLAGS}" fi ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g2 -ffixed-g3" if test "$solaris" = "no" ; then @@ -566,9 +578,6 @@ case "$cpu" in sparc64) if test -z "$sparc_cpu" ; then ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__" ARCH_LDFLAGS="-m64" - else - ARCH_CFLAGS="${SP_CFLAGS}" - ARCH_LDFLAGS="${SP_LDFLAGS}" fi if test "$solaris" = "no" ; then ARCH_CFLAGS="$ARCH_CFLAGS -ffixed-g5 -ffixed-g6 -ffixed-g7" |