24c96b9259
Pythons find_library is broken with binutils 2.34, and numpy could not import libraries because of not properly aligned ELF's. This is the second time binutils 2.34 got reverted. Next time, we should have a dedicated Hydra job for it. This reverts commit629fa8a2d4
, reversing changes made to4ddd080d19
.
20 lines
511 B
Diff
20 lines
511 B
Diff
diff -ru binutils-2.27-orig/bfd/plugin.c binutils-2.27/bfd/plugin.c
|
|
--- binutils-2.27-orig/bfd/plugin.c 2016-10-14 17:46:30.791315555 +0200
|
|
+++ binutils-2.27/bfd/plugin.c 2016-10-14 17:46:38.583298765 +0200
|
|
@@ -333,6 +333,7 @@
|
|
if (plugin_program_name == NULL)
|
|
return found;
|
|
|
|
+#if 0
|
|
plugin_dir = concat (BINDIR, "/../lib/bfd-plugins", NULL);
|
|
p = make_relative_prefix (plugin_program_name,
|
|
BINDIR,
|
|
@@ -364,6 +365,7 @@
|
|
free (p);
|
|
if (d)
|
|
closedir (d);
|
|
+#endif
|
|
|
|
return found;
|
|
}
|