From 6c24189d27f1bdd6f2e0458ada99a8d7e5896689 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 8 Sep 2007 21:45:21 +0000 Subject: Figure out the version of ld (binutils) and display it on stdout, so that the distributed build system easier can catch it. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14643 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tools') diff --git a/tools/configure b/tools/configure index bdc1eb0dae..2f1511b19a 100755 --- a/tools/configure +++ b/tools/configure @@ -1537,6 +1537,10 @@ fi # Now, figure out version number of the (gcc) compiler we are about to use gccver=`$CC -dumpversion`; +# figure out the binutil version too and display it, mostly for the build +# system etc to be able to see it easier +ldver=`$LD --version | head -n 1 | cut "-d " -f4` + 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" @@ -1579,6 +1583,8 @@ else fi +echo "Using $LD $ldver" + # check the compiler for SH platforms if test "$CC" = "sh-elf-gcc"; then if test "$gccnum" -lt "400"; then -- cgit v1.2.3