From e7cc77e5b882be40122010b037401d3e9a4c519b Mon Sep 17 00:00:00 2001 From: Aidan MacDonald Date: Sun, 4 Dec 2022 15:44:20 +0000 Subject: configure: Detect linker's NO_CROSSREFS_TO() support NO_CROSSREFS_TO() was first introduced in binutils 2.27. It is used to have the linker report errors when symbols from a list of sections refer to a specified section, which is useful for verifying that normal code does not refer to INIT_ATTR code. Note this doesn't actually start using NO_CROSSREFS_TO() for builds -- that will have to wait until the toolchain upgrade when we'll have a new enough binutils -- it just detects support for the feature so it can be conditionally enabled in linker scripts. Change-Id: If1553eaa671fcbbdfe6af357a6331931e7c4f997 --- tools/configure | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/tools/configure b/tools/configure index 7f5b5c6f5b..651346ecd8 100755 --- a/tools/configure +++ b/tools/configure @@ -4363,6 +4363,17 @@ else ldver=`$LD --version | head -n 1 | sed -e 's/\ /\n/g' | tail -n 1` fi +# Convert LD version to a number major*100 + minor +ldnum1=`echo $ldver | cut -d . -f1` +ldnum2=`echo $ldver | cut -d . -f2` +ldnum=`(expr $ldnum1 "*" 100 + $ldnum2) 2>/dev/null` + +if test "$ldnum" -ge "227"; then + have_nocrossrefs_to="#define HAVE_NOCROSSREFS_TO" +else + have_nocrossrefs_to="#undef HAVE_NOCROSSREFS_TO" +fi + if [ -z "$gccver" ]; then echo "[WARNING] The compiler you must use ($CC) is not in your path!" echo "[WARNING] this may cause your build to fail since we cannot do the" @@ -4600,6 +4611,9 @@ ${app_lcd_height} #define ROCKBOX_BINARY_PATH "${bindir}" #define ROCKBOX_LIBRARY_PATH "${libdir}" +/* linker feature test macro for validating cross-section references */ +${have_nocrossrefs_to} + #endif /* __BUILD_AUTOCONF_H */ EOF -- cgit v1.2.3