diff options
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/strace/strace/use-asm-sgidefs.h.patch | 51 | ||||
-rw-r--r-- | meta/recipes-devtools/strace/strace_4.11.bb | 1 |
2 files changed, 52 insertions, 0 deletions
diff --git a/meta/recipes-devtools/strace/strace/use-asm-sgidefs.h.patch b/meta/recipes-devtools/strace/strace/use-asm-sgidefs.h.patch new file mode 100644 index 0000000000..db83d1130e --- /dev/null +++ b/meta/recipes-devtools/strace/strace/use-asm-sgidefs.h.patch | |||
@@ -0,0 +1,51 @@ | |||
1 | From 2995245d7e3f46e8b3995002995ebd28beca7d55 Mon Sep 17 00:00:00 2001 | ||
2 | From: Andre McCurdy <armccurdy@gmail.com> | ||
3 | Date: Fri, 5 Feb 2016 14:00:00 -0800 | ||
4 | Subject: [PATCH] use <asm/sgidefs.h> | ||
5 | |||
6 | Build fix for MIPS with musl libc. | ||
7 | |||
8 | The MIPS specific header <sgidefs.h> is provided by glibc and uclibc | ||
9 | but not by musl. Regardless of the libc, the kernel headers provide | ||
10 | <asm/sgidefs.h> which provides the same definitions, so use that | ||
11 | instead. | ||
12 | |||
13 | Upstream-Status: Pending | ||
14 | |||
15 | Signed-off-by: Andre McCurdy <armccurdy@gmail.com> | ||
16 | --- | ||
17 | configure.ac | 8 ++++---- | ||
18 | 1 file changed, 4 insertions(+), 4 deletions(-) | ||
19 | |||
20 | diff --git a/configure.ac b/configure.ac | ||
21 | index 1524b9b..287e03d 100644 | ||
22 | --- a/configure.ac | ||
23 | +++ b/configure.ac | ||
24 | @@ -196,20 +196,20 @@ AC_SUBST(arch_mx32) | ||
25 | if test "$arch" = mips; then | ||
26 | AC_CACHE_CHECK([for _MIPS_SIM], [st_cv__MIPS_SIM], | ||
27 | [AC_COMPUTE_INT([st_cv__MIPS_SIM], [_MIPS_SIM], | ||
28 | - [#include <sgidefs.h>], | ||
29 | + [#include <asm/sgidefs.h>], | ||
30 | [AC_MSG_ERROR([_MIPS_SIM cannot be determined])])]) | ||
31 | |||
32 | AC_CACHE_CHECK([for MIPS ABI], [st_cv_mips_abi], | ||
33 | [AC_COMPILE_IFELSE( | ||
34 | - [AC_LANG_PROGRAM([[#include <sgidefs.h>]], | ||
35 | + [AC_LANG_PROGRAM([[#include <asm/sgidefs.h>]], | ||
36 | [[int i[_MIPS_SIM == _MIPS_SIM_ABI32 ? 1 : - 1];]])], | ||
37 | [st_cv_mips_abi=o32], | ||
38 | [AC_COMPILE_IFELSE( | ||
39 | - [AC_LANG_PROGRAM([[#include <sgidefs.h>]], | ||
40 | + [AC_LANG_PROGRAM([[#include <asm/sgidefs.h>]], | ||
41 | [[int i[_MIPS_SIM == _MIPS_SIM_NABI32 ? 1 : - 1];]])], | ||
42 | [st_cv_mips_abi=n32], | ||
43 | [AC_COMPILE_IFELSE( | ||
44 | - [AC_LANG_PROGRAM([[#include <sgidefs.h>]], | ||
45 | + [AC_LANG_PROGRAM([[#include <asm/sgidefs.h>]], | ||
46 | [[int i[_MIPS_SIM == _MIPS_SIM_ABI64 ? 1 : - 1];]])], | ||
47 | [st_cv_mips_abi=n64], | ||
48 | [st_cv_mips_abi=unknown])])])]) | ||
49 | -- | ||
50 | 1.9.1 | ||
51 | |||
diff --git a/meta/recipes-devtools/strace/strace_4.11.bb b/meta/recipes-devtools/strace/strace_4.11.bb index a72a1f9c24..95d13e6bb9 100644 --- a/meta/recipes-devtools/strace/strace_4.11.bb +++ b/meta/recipes-devtools/strace/strace_4.11.bb | |||
@@ -8,6 +8,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/strace/strace-${PV}.tar.xz \ | |||
8 | file://disable-git-version-gen.patch \ | 8 | file://disable-git-version-gen.patch \ |
9 | file://more-robust-test-for-m32-mx32-compile-support.patch \ | 9 | file://more-robust-test-for-m32-mx32-compile-support.patch \ |
10 | file://update-gawk-paths.patch \ | 10 | file://update-gawk-paths.patch \ |
11 | file://use-asm-sgidefs.h.patch \ | ||
11 | file://Makefile-ptest.patch \ | 12 | file://Makefile-ptest.patch \ |
12 | file://run-ptest \ | 13 | file://run-ptest \ |
13 | " | 14 | " |