mirror of
https://git.yoctoproject.org/poky
synced 2026-05-09 17:39:31 +00:00
valgrind: fix ptest compilation for PowerPC
(From OE-Core rev: cd1a123bd07016abcff218d4274161cd794a190b) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
6b490be5d1
commit
27e5534f13
@@ -0,0 +1,87 @@
|
||||
Backport a patch from upstream to fix test compilation for PPC where
|
||||
system headers don't get included.
|
||||
|
||||
Upstream-Status: Backport
|
||||
Signed-off-by: Ross Burton <ross.burton@intel.com>
|
||||
|
||||
r16450 | mjw | 2017-06-16 10:33:35 +0100 (Fri, 16 Jun 2017) | 7 lines
|
||||
|
||||
ppc64 doesn't compile test_isa_2_06_partx.c without VSX support
|
||||
|
||||
The #ifdef HAS_VSX guard is wrongly placed. It makes the standard
|
||||
include headers not be used. Causing a build failure. Fix by moving
|
||||
the #ifdef HAS_VSX after the standard includes.
|
||||
|
||||
Index: none/tests/ppc32/test_isa_2_06_part3.c
|
||||
===================================================================
|
||||
--- a/none/tests/ppc32/test_isa_2_06_part3.c (revision 16449)
|
||||
+++ b/none/tests/ppc32/test_isa_2_06_part3.c (revision 16450)
|
||||
@@ -20,17 +20,18 @@
|
||||
The GNU General Public License is contained in the file COPYING.
|
||||
*/
|
||||
|
||||
-#ifdef HAS_VSX
|
||||
-
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
-#include <altivec.h>
|
||||
#include <math.h>
|
||||
#include <unistd.h> // getopt
|
||||
|
||||
+#ifdef HAS_VSX
|
||||
+
|
||||
+#include <altivec.h>
|
||||
+
|
||||
#ifndef __powerpc64__
|
||||
typedef uint32_t HWord_t;
|
||||
#else
|
||||
Index: none/tests/ppc32/test_isa_2_06_part1.c
|
||||
===================================================================
|
||||
--- a/none/tests/ppc32/test_isa_2_06_part1.c (revision 16449)
|
||||
+++ b/none/tests/ppc32/test_isa_2_06_part1.c (revision 16450)
|
||||
@@ -20,13 +20,14 @@
|
||||
The GNU General Public License is contained in the file COPYING.
|
||||
*/
|
||||
|
||||
-#ifdef HAS_VSX
|
||||
-
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
+
|
||||
+#ifdef HAS_VSX
|
||||
+
|
||||
#include <altivec.h>
|
||||
|
||||
#ifndef __powerpc64__
|
||||
Index: none/tests/ppc32/test_isa_2_06_part2.c
|
||||
===================================================================
|
||||
--- a/none/tests/ppc32/test_isa_2_06_part2.c (revision 16449)
|
||||
+++ b/none/tests/ppc32/test_isa_2_06_part2.c (revision 16450)
|
||||
@@ -20,17 +20,18 @@
|
||||
The GNU General Public License is contained in the file COPYING.
|
||||
*/
|
||||
|
||||
-#ifdef HAS_VSX
|
||||
-
|
||||
#include <stdio.h>
|
||||
#include <stdint.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
-#include <altivec.h>
|
||||
#include <math.h>
|
||||
#include <unistd.h> // getopt
|
||||
|
||||
+#ifdef HAS_VSX
|
||||
+
|
||||
+#include <altivec.h>
|
||||
+
|
||||
#ifndef __powerpc64__
|
||||
typedef uint32_t HWord_t;
|
||||
#else
|
||||
@@ -36,6 +36,7 @@ SRC_URI = "ftp://sourceware.org/pub/valgrind/valgrind-${PV}.tar.bz2 \
|
||||
file://0002-memcheck-x86-Define-__THROW-if-not-defined.patch \
|
||||
file://0003-tests-seg_override-Replace-__modify_ldt-with-syscall.patch \
|
||||
file://link-gz-tests.patch \
|
||||
file://ppc-headers.patch \
|
||||
"
|
||||
SRC_URI[md5sum] = "817dd08f1e8a66336b9ff206400a5369"
|
||||
SRC_URI[sha256sum] = "d76680ef03f00cd5e970bbdcd4e57fb1f6df7d2e2c071635ef2be74790190c3b"
|
||||
|
||||
Reference in New Issue
Block a user