From: Andrey Borzenkov <arvidjaar@gmail.com>
To: The development of GNU GRUB <grub-devel@gnu.org>
Cc: vasily.isaenko@oracle.com, stanislav.kholmanskikh@oracle.com
Subject: Re: [RFC PATCH] configure check for ld's --no-relax flag
Date: Fri, 1 Aug 2014 19:35:59 +0400 [thread overview]
Message-ID: <20140801193559.61fe4363@opensuse.site> (raw)
In-Reply-To: <1406895356-28090-1-git-send-email-stanislav.kholmanskikh@oracle.com>
В Fri, 1 Aug 2014 16:15:56 +0400
Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com> пишет:
> Early versions of binutils doesn't support --no-relax flag, so
> commit 063f2a04d158ec1b275a925dfbae74b124708cde prevents building
> with such versions.
>
> Signed-off-by: Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
> ---
> conf/Makefile.common | 8 ++++++++
> configure.ac | 10 ++++++++++
> 2 files changed, 18 insertions(+), 0 deletions(-)
>
> diff --git a/conf/Makefile.common b/conf/Makefile.common
> index e4c301f..5bda66f 100644
> --- a/conf/Makefile.common
> +++ b/conf/Makefile.common
> @@ -8,11 +8,19 @@ unexport LC_ALL
> # Platform specific options
> if COND_sparc64_ieee1275
> CFLAGS_PLATFORM += -mno-app-regs
> +if COND_LD_SUPPORTS_NO_RELAX
> LDFLAGS_PLATFORM = -Wl,-melf64_sparc -Wl,--no-relax
> +else
> + LDFLAGS_PLATFORM = -Wl,-melf64_sparc -mno-relax
> +endif
TBO I think commit should simply be reverted. "Uniformity" is rather
poor excuse for breaking existing systems.
> endif
> if COND_sparc64_emu
> CFLAGS_PLATFORM += -mno-app-regs
> +if COND_LD_SUPPORTS_NO_RELAX
> LDFLAGS_PLATFORM = -Wl,--no-relax
> +else
> + LDFLAGS_PLATFORM = -mno-relax
> +endif
> endif
> if COND_arm
> if !COND_emu
> diff --git a/configure.ac b/configure.ac
> index 8888c2f..282fded 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -516,6 +516,14 @@ fi
>
> TARGET_CC_VERSION="$(LC_ALL=C $TARGET_CC --version | head -n1)"
>
> +AC_CACHE_CHECK([if the target C compiler supports -Wl,--no-relax], [grub_cv_target_cc_wl_no_relax_flag], [
> + LDFLAGS="$TARGET_LDFLAGS -nostdlib -static"
> +
> + AC_LINK_IFELSE([AC_LANG_PROGRAM([[
> +int main(void) { return 0; }
> +]])], [grub_cv_target_cc_wl_no_relax_flag=yes], [grub_cv_target_cc_wl_no_relax_flag=no])
> +])
> +
> AC_CACHE_CHECK([which extra warnings work], [grub_cv_target_cc_w_extra_flags], [
> LDFLAGS="$TARGET_LDFLAGS -nostdlib -static"
>
> @@ -1708,6 +1716,8 @@ AM_CONDITIONAL([COND_ENABLE_BOOT_TIME_STATS], [test x$BOOT_TIME_STATS = x1])
>
> AM_CONDITIONAL([COND_HAVE_CXX], [test x$HAVE_CXX = xyes])
>
> +AM_CONDITIONAL([COND_LD_SUPPORTS_NO_RELAX], [test x$grub_cv_target_cc_wl_no_relax_flag = xyes])
> +
> AM_CONDITIONAL([COND_HAVE_ASM_USCORE], [test x$HAVE_ASM_USCORE = x1])
> AM_CONDITIONAL([COND_STARFIELD], [test "x$starfield_excuse" = x])
> AM_CONDITIONAL([COND_HAVE_EXEC], [test "x$have_exec" = xy])
next prev parent reply other threads:[~2014-08-01 15:36 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-01 12:15 [RFC PATCH] configure check for ld's --no-relax flag Stanislav Kholmanskikh
2014-08-01 15:35 ` Andrey Borzenkov [this message]
2014-08-01 15:40 ` Vladimir 'φ-coder/phcoder' Serbinenko
2014-08-04 6:45 ` Stanislav Kholmanskikh
2014-08-04 14:53 ` Andrey Borzenkov
2014-09-21 17:03 ` Vladimir 'φ-coder/phcoder' Serbinenko
2014-09-21 17:50 ` Andrei Borzenkov
2014-09-21 18:14 ` Vladimir 'φ-coder/phcoder' Serbinenko
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=20140801193559.61fe4363@opensuse.site \
--to=arvidjaar@gmail.com \
--cc=grub-devel@gnu.org \
--cc=stanislav.kholmanskikh@oracle.com \
--cc=vasily.isaenko@oracle.com \
/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.