summaryrefslogtreecommitdiff
path: root/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2016-07-25 11:00:48 +0200
committerStefan Agner <stefan.agner@toradex.com>2016-09-28 13:23:39 -0700
commit973bc35b6a4828e7caa129f1a34b6828aa72e20c (patch)
treea865822798df5609e623f6913028305356e85dd7 /recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
parent654e86c3d5b8402c72e9308a75a059a392f63b2f (diff)
mklibs-native: drop in favour of newer oe-core one
Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com> Acked-by: Stefan Agner <stefan.agner@toradex.com>
Diffstat (limited to 'recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch')
-rw-r--r--recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch b/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
deleted file mode 100644
index d27a489..0000000
--- a/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-The libc6-dev in Ubuntu 9.04 is so old that the elf.h doesn't
-define STT_GNU_IFUNC, so we have to define it ourselves.
-
-Upstream-Status: Inappropriate [other] - old release specific, maybe removable
-
--- Dexuan Cui (dexuan.cui@intel.com) Feb 16, 2011.
-
-diff --git a/src/mklibs-readelf/main.cpp b/src/mklibs-readelf/main.cpp
-index 2444c39..56d93f8 100644
---- a/src/mklibs-readelf/main.cpp
-+++ b/src/mklibs-readelf/main.cpp
-@@ -6,6 +6,14 @@
- #include <vector>
-
- #include <elf.h>
-+/*
-+ * The /usr/include/elf.h in some distributions(like Ubuntu 9.04) doesn't
-+ * define the macro. We need to define it here.
-+ */
-+#ifndef STT_GNU_IFUNC
-+#define STT_GNU_IFUNC 10 /* Symbol is indirect code object */
-+#endif
-+
- #include <getopt.h>
-
- #include "elf.hpp"