summaryrefslogtreecommitdiff
path: root/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
diff options
context:
space:
mode:
authorMax Krummenacher <max.krummenacher@toradex.com>2012-06-12 14:20:25 +0200
committerMax Krummenacher <max.krummenacher@toradex.com>2012-06-12 14:20:25 +0200
commitb3f0841ade3dc1cbd1b7dd825439cb03a02629d2 (patch)
tree1b3204eabb54494b91d8579fbb7d2e556a2ec245 /recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
parent5f8b970f28d6ca6c2173b3deda0c0dafe5d9d466 (diff)
- mklibs is no longer downloadable in the 0.1.33 version, upgrade to next version
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, 26 insertions, 0 deletions
diff --git a/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch b/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
new file mode 100644
index 0000000..d27a489
--- /dev/null
+++ b/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch
@@ -0,0 +1,26 @@
+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"