diff options
author | bavery <brian.avery@intel.com> | 2016-05-19 15:04:39 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-05-20 10:20:55 +0100 |
commit | bf4616d43b29ad3640c9152fb1d2b56311ebef1b (patch) | |
tree | dd7766f23e56478a65945441e00b9d0429eb36f4 /meta/recipes-devtools/gdb/gdb-common.inc | |
parent | 070ea45b6cf99227c208edf58a0c79657a3702fc (diff) | |
download | poky-bf4616d43b29ad3640c9152fb1d2b56311ebef1b.tar.gz |
gdb: Backport patch to changes with AVX and MPX
The current MPX target descriptions assume that MPX is always combined
with AVX, however that's not correct. We can have machines with MPX
and without AVX; or machines with AVX and without MPX.
This patch adds new target descriptions for machines that support
both MPX and AVX, as duplicates of the existing MPX descriptions.
The following commit will remove AVX from the MPX-only descriptions.
This commit is backported from 7.12
(From OE-Core rev: dee987b6f157b0bc245086d3af914d411ae6d1ab)
Signed-off-by: bavery <brian.avery@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/gdb/gdb-common.inc')
-rw-r--r-- | meta/recipes-devtools/gdb/gdb-common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/gdb/gdb-common.inc b/meta/recipes-devtools/gdb/gdb-common.inc index 1d1cf8fed3..3e00a2e9ff 100644 --- a/meta/recipes-devtools/gdb/gdb-common.inc +++ b/meta/recipes-devtools/gdb/gdb-common.inc | |||
@@ -36,6 +36,7 @@ SRC_URI = "git://sourceware.org/git/binutils-gdb.git;branch=gdb-7.11-branch \ | |||
36 | file://0008-Use-exorted-definitions-of-SIGRTMIN.patch \ | 36 | file://0008-Use-exorted-definitions-of-SIGRTMIN.patch \ |
37 | file://0009-Change-order-of-CFLAGS.patch \ | 37 | file://0009-Change-order-of-CFLAGS.patch \ |
38 | file://0010-resolve-restrict-keyword-conflict.patch \ | 38 | file://0010-resolve-restrict-keyword-conflict.patch \ |
39 | file://0011-avx_mpx.patch \ | ||
39 | " | 40 | " |
40 | 41 | ||
41 | S = "${WORKDIR}/git" | 42 | S = "${WORKDIR}/git" |
@@ -84,4 +85,3 @@ RRECOMMENDS_gdb_append_linux = " glibc-thread-db " | |||
84 | RRECOMMENDS_gdb_append_linux-gnueabi = " glibc-thread-db " | 85 | RRECOMMENDS_gdb_append_linux-gnueabi = " glibc-thread-db " |
85 | RRECOMMENDS_gdbserver_append_linux = " glibc-thread-db " | 86 | RRECOMMENDS_gdbserver_append_linux = " glibc-thread-db " |
86 | RRECOMMENDS_gdbserver_append_linux-gnueabi = " glibc-thread-db " | 87 | RRECOMMENDS_gdbserver_append_linux-gnueabi = " glibc-thread-db " |
87 | |||