提交 322e5878 编写于 作者: J Juan Quintela 提交者: Anthony Liguori

refactor linker_script common part and change quoting

Signed-off-by: NJuan Quintela <quintela@redhat.com>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
Message-Id: 
上级 07dac55d
...@@ -2071,34 +2071,35 @@ fi ...@@ -2071,34 +2071,35 @@ fi
# generate LDFLAGS for targets # generate LDFLAGS for targets
ldflags="" ldflags=""
linker_script="-Wl,-T../config-host.ld -Wl,-T,\$(SRC_PATH)/\$(ARCH).ld"
if test "$target_linux_user" = "yes" -o "$target_linux_user" = "yes" ; then if test "$target_linux_user" = "yes" -o "$target_linux_user" = "yes" ; then
case "$ARCH" in case "$ARCH" in
i386) i386)
if test "$gprof" = "yes" -o "$static" = "yes" ; then if test "$gprof" = "yes" -o "$static" = "yes" ; then
ldflags='-Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld $ldflags' ldflags="$linker_script $ldflags"
else else
# WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object # WARNING: this LDFLAGS is _very_ tricky : qemu is an ELF shared object
# that the kernel ELF loader considers as an executable. I think this # that the kernel ELF loader considers as an executable. I think this
# is the simplest way to make it self virtualizable! # is the simplest way to make it self virtualizable!
ldflags='-Wl,-shared $ldflags' ldflags="-Wl,-shared $ldflags"
fi fi
;; ;;
sparc) sparc)
# -static is used to avoid g1/g3 usage by the dynamic linker # -static is used to avoid g1/g3 usage by the dynamic linker
ldflags='-Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld -static $ldflags' ldflags="$linker_script -static $ldflags"
;; ;;
ia64) ia64)
ldflags='-Wl,-G0 -Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld -static $ldflags' ldflags="-Wl,-G0 $linker_script -static $ldflags"
;; ;;
x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64) x86_64|ppc|ppc64|s390|sparc64|alpha|arm|m68k|mips|mips64)
ldflags='-Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld $ldflags' ldflags="$linker_script $ldflags"
;; ;;
esac esac
fi fi
if test "$target_softmmu" = "yes" ; then if test "$target_softmmu" = "yes" ; then
case "$ARCH" in case "$ARCH" in
ia64) ia64)
ldflags='-Wl,-G0 -Wl,-T../config-host.ld -Wl,-T,$(SRC_PATH)/$(ARCH).ld -static $ldflags' ldflags="-Wl,-G0 $linker_script -static $ldflags"
;; ;;
esac esac
fi fi
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册