summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-09-08 21:45:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-09-08 21:45:21 +0000
commit6c24189d27f1bdd6f2e0458ada99a8d7e5896689 (patch)
treeaa40339e79bdd8412aed436756bf1a0214ed39bc /tools
parent4bb2eeee3a7be781b419c6c3d62168b9840542f8 (diff)
downloadrockbox-6c24189d27f1bdd6f2e0458ada99a8d7e5896689.tar.gz
rockbox-6c24189d27f1bdd6f2e0458ada99a8d7e5896689.zip
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
Diffstat (limited to 'tools')
-rwxr-xr-xtools/configure6
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/configure b/tools/configure
index bdc1eb0dae..2f1511b19a 100755
--- a/tools/configure
+++ b/tools/configure
@@ -1537,6 +1537,10 @@ fi
1537# Now, figure out version number of the (gcc) compiler we are about to use 1537# Now, figure out version number of the (gcc) compiler we are about to use
1538gccver=`$CC -dumpversion`; 1538gccver=`$CC -dumpversion`;
1539 1539
1540# figure out the binutil version too and display it, mostly for the build
1541# system etc to be able to see it easier
1542ldver=`$LD --version | head -n 1 | cut "-d " -f4`
1543
1540if [ -z "$gccver" ]; then 1544if [ -z "$gccver" ]; then
1541 echo "WARNING: The compiler you must use ($CC) is not in your path!" 1545 echo "WARNING: The compiler you must use ($CC) is not in your path!"
1542 echo "WARNING: this may cause your build to fail since we cannot do the" 1546 echo "WARNING: this may cause your build to fail since we cannot do the"
@@ -1579,6 +1583,8 @@ else
1579 1583
1580fi 1584fi
1581 1585
1586echo "Using $LD $ldver"
1587
1582# check the compiler for SH platforms 1588# check the compiler for SH platforms
1583if test "$CC" = "sh-elf-gcc"; then 1589if test "$CC" = "sh-elf-gcc"; then
1584 if test "$gccnum" -lt "400"; then 1590 if test "$gccnum" -lt "400"; then