diff options
author | Khem Raj <raj.khem@gmail.com> | 2016-01-19 18:27:20 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-01-26 22:41:48 +0000 |
commit | b0742a41e80c48de98f82f7d1e963d462c941934 (patch) | |
tree | b0e6c4c5caa69fb9a3d34aafbc028a5b0e67c412 /meta | |
parent | 6340624949ee2e556e46381d7144c989f0945ae0 (diff) | |
download | openembedded-core-contrib-b0742a41e80c48de98f82f7d1e963d462c941934.tar.gz |
gdb: Fix build failures on musl
mode_t is needed by gdbserver headers so include sys/types.h to get them
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/gdb/gdb.inc | 1 | ||||
-rw-r--r-- | meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch | 30 |
2 files changed, 31 insertions, 0 deletions
diff --git a/meta/recipes-devtools/gdb/gdb.inc b/meta/recipes-devtools/gdb/gdb.inc index e970450fa3f..4ea14c19f8c 100644 --- a/meta/recipes-devtools/gdb/gdb.inc +++ b/meta/recipes-devtools/gdb/gdb.inc @@ -5,6 +5,7 @@ inherit gettext SRC_URI += "file://0002-Change-order-of-CFLAGS.patch \ file://0003-Add-support-for-Renesas-SH-sh4-architecture.patch \ file://0001-Use-exported-definitions-of-SIGRTMIN.patch \ + file://0001-include-sys-types.h-for-mode_t.patch \ " #LDFLAGS_append = " -s" #export CFLAGS_append=" -L${STAGING_LIBDIR}" diff --git a/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch b/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch new file mode 100644 index 00000000000..a0292e41666 --- /dev/null +++ b/meta/recipes-devtools/gdb/gdb/0001-include-sys-types.h-for-mode_t.patch @@ -0,0 +1,30 @@ +From acbee4edacb80b5eeaff2480712fe98e56443997 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Tue, 19 Jan 2016 18:18:52 -0800 +Subject: [PATCH] include sys/types.h for mode_t + +mode_t is used in target.h, so we need to include sys/types.h to get the +defintion + +Signed-off-by: Khem Raj <raj.khem@gmail.com> +--- +Upstream-Status: Pending + + gdb/gdbserver/target.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/gdb/gdbserver/target.h b/gdb/gdbserver/target.h +index 9a40867..aaecab9 100644 +--- a/gdb/gdbserver/target.h ++++ b/gdb/gdbserver/target.h +@@ -27,6 +27,7 @@ + #include "target/waitstatus.h" + #include "mem-break.h" + #include "btrace-common.h" ++#include <sys/types.h> + + struct emit_ops; + struct buffer; +-- +2.7.0 + |