This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

PATCH: Skip "alpha*-*-*" for 64K section


Alpha linker complains about relocation overflow with this test. I
don't know how to fix it. This patch just skip the test for alpha.


H.J.
----
2006-04-25  H.J. Lu  <hongjiu.lu@intel.com>

	* ld-elf/sec64k.exp: Skip "alpha*-*-*".

--- ld/testsuite/ld-elf/sec64k.exp.alpha	2005-11-15 13:50:14.000000000 -0800
+++ ld/testsuite/ld-elf/sec64k.exp	2006-04-25 15:07:37.000000000 -0700
@@ -24,6 +24,11 @@ if ![is_elf_format] {
     return
 }
 
+# Why does Alpha get relocation error?
+if { [istarget "alpha*-*-*"] } {
+    return
+}
+
 # Test >64k sections, with and without -r.  First, create the assembly
 # files.  Have a relocation to another section and one within the local
 # section.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]