diff options
Diffstat (limited to 'meta/recipes-devtools/mklibs/files')
-rw-r--r-- | meta/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch b/meta/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch new file mode 100644 index 0000000000..88baddedae --- /dev/null +++ b/meta/recipes-devtools/mklibs/files/fix_STT_GNU_IFUNC.patch | |||
@@ -0,0 +1,23 @@ | |||
1 | The libc6-dev in Ubuntu 9.04 is so old that the elf.h doesn't | ||
2 | define STT_GNU_IFUNC, so we have to define it ourselves. | ||
3 | -- Dexuan Cui (dexuan.cui@intel.com) Feb 16, 2011. | ||
4 | |||
5 | diff --git a/src/mklibs-readelf/main.cpp b/src/mklibs-readelf/main.cpp | ||
6 | index 2444c39..56d93f8 100644 | ||
7 | --- a/src/mklibs-readelf/main.cpp | ||
8 | +++ b/src/mklibs-readelf/main.cpp | ||
9 | @@ -6,6 +6,14 @@ | ||
10 | #include <vector> | ||
11 | |||
12 | #include <elf.h> | ||
13 | +/* | ||
14 | + * The /usr/include/elf.h in some distributions(like Ubuntu 9.04) doesn't | ||
15 | + * define the macro. We need to define it here. | ||
16 | + */ | ||
17 | +#ifndef STT_GNU_IFUNC | ||
18 | +#define STT_GNU_IFUNC 10 /* Symbol is indirect code object */ | ||
19 | +#endif | ||
20 | + | ||
21 | #include <getopt.h> | ||
22 | |||
23 | #include "elf.hpp" | ||