* lib/ld-lib.exp (default_ld_link): Remove support for ldflags.
authorVidya Praveen <vidyapraveen@arm.com>
Tue, 14 Jan 2014 13:09:22 +0000 (13:09 +0000)
committerNick Clifton <nickc@redhat.com>
Tue, 14 Jan 2014 13:09:22 +0000 (13:09 +0000)
(default_ld_simple_link): Likewise.

ld/testsuite/ChangeLog
ld/testsuite/lib/ld-lib.exp

index 756e7aebaca484f22e3fa3e1feb0fbb2bc8d6381..cd97fd577facea7abb342f1e60773e3fd97ccb5f 100644 (file)
@@ -1,3 +1,8 @@
+2014-01-14  Vidya Praveen  <vidyapraveen@arm.com>
+
+       * lib/ld-lib.exp (default_ld_link): Remove support for ldflags.
+       (default_ld_simple_link): Likewise.
+
 2014-01-10  Alan Modra  <amodra@gmail.com>
 
        * ld-x86-64/pr14207.d: Adjust.
index 54b617f1ee60cb62ac5cccab7e0bdb1ef8f0d61d..46e7b5fa16312ca0d7c2fa17a0b9d5c646df2a90 100644 (file)
@@ -1,5 +1,5 @@
 # Support routines for LD testsuite.
-#   Copyright 1994-2013 Free Software Foundation, Inc.
+#   Copyright 1994-2014 Free Software Foundation, Inc.
 #
 # This file is part of the GNU Binutils.
 #
@@ -199,10 +199,6 @@ proc default_ld_link { ld target objects } {
        set flags ""
     }
 
-    if [board_info [target_info name] exists ldflags] {
-        append flags " [board_info [target_info name] ldflags]"
-    }
-
     remote_file host delete $target
 
     return [run_host_cmd_yesno "$ld" "$HOSTING_EMU $flags -o $target $objs $libs"]
@@ -221,10 +217,6 @@ proc default_ld_simple_link { ld target objects } {
        set flags ""
     }
 
-    if [board_info [target_info name] exists ldflags] {
-        append flags " [board_info [target_info name] ldflags]"
-    }
-
     # If we are compiling with gcc, we want to add gcc_ld_flag to
     # flags.  Rather than determine this in some complex way, we guess
     # based on the name of the compiler.