From e60b73ff643117137ca42534f013784b61d0f0fc Mon Sep 17 00:00:00 2001 From: Martin Borg Date: Mon, 8 Feb 2016 15:24:30 +0100 Subject: valgrind: drop the bbappend These workarounds were needed because Power ISA 2.07 was not supported in GCC 4.8.2 (introduced in GCC 4.9). GCC 4.8 support has been dropped from poky master since commit d9aabf9639510fdb3e2ccc21ba5ae4aa9f6e4a57. Signed-off-by: Martin Borg Signed-off-by: Adrian Dudau --- .../files/disable-power-isa-2.07-check.patch | 48 ---------------------- recipes-devtools/valgrind/valgrind_3.9.0.bbappend | 30 -------------- 2 files changed, 78 deletions(-) delete mode 100644 recipes-devtools/valgrind/files/disable-power-isa-2.07-check.patch delete mode 100644 recipes-devtools/valgrind/valgrind_3.9.0.bbappend (limited to 'recipes-devtools') diff --git a/recipes-devtools/valgrind/files/disable-power-isa-2.07-check.patch b/recipes-devtools/valgrind/files/disable-power-isa-2.07-check.patch deleted file mode 100644 index 88a8a54..0000000 --- a/recipes-devtools/valgrind/files/disable-power-isa-2.07-check.patch +++ /dev/null @@ -1,48 +0,0 @@ -valgrind: Disable Power ISA 2.07 check - -The Power ISA 2.07 check fails when not supported by both machine -architecture and gcc. - -Upstream-Status: Inappropriate [disable feature] - -Signed-off-by: Gabriel Barbu - ---- a/configure.ac 2014-05-05 17:06:29.674630565 +0200 -+++ b/configure.ac 2014-05-06 13:16:47.525598513 +0200 -@@ -1316,18 +1316,25 @@ - AM_CONDITIONAL(BUILD_DFP_TESTS, test x$ac_gcc_have_dfp_type = xyes) - - # isa 2.07 checking --AC_MSG_CHECKING([that assembler knows ISA 2.07 ]) -+AC_ARG_ENABLE([isa_2_07_check], -+ [AS_HELP_STRING([--disable-isa_2_07_check], -+ [disable Power ISA 2.07 check])], -+ [], -+ [disable_isa_2_07_check=no]) - --AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ --]], [[ -- __asm__ __volatile__("mtvsrd 1,2 "); --]])], [ --ac_asm_have_isa_2_07=yes --AC_MSG_RESULT([yes]) --], [ --ac_asm_have_isa_2_07=no --AC_MSG_RESULT([no]) --]) -+AS_IF([test "x$disable_isa_2_07_check" = xno], -+ [AC_MSG_CHECKING([that assembler knows ISA 2.07 ]) -+ -+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ -+ ]], [[ -+ __asm__ __volatile__("mtvsrd 1,2 "); -+ ]])], [ -+ ac_asm_have_isa_2_07=yes -+ AC_MSG_RESULT([yes]) -+ ], [ -+ ac_asm_have_isa_2_07=no -+ AC_MSG_RESULT([no]) -+ ])]) - - AM_CONDITIONAL(HAS_ISA_2_07, test x$ac_asm_have_isa_2_07 = xyes) - diff --git a/recipes-devtools/valgrind/valgrind_3.9.0.bbappend b/recipes-devtools/valgrind/valgrind_3.9.0.bbappend deleted file mode 100644 index 4af368d..0000000 --- a/recipes-devtools/valgrind/valgrind_3.9.0.bbappend +++ /dev/null @@ -1,30 +0,0 @@ -EXTRA_OECONF_append_b4860qds-64b = " --disable-isa_2_07_check" - -FILESEXTRAPATHS_prepend := "${THISDIR}/files:" - -SRC_URI += "\ - file://disable-power-isa-2.07-check.patch \ - " - -do_compile_ptest_zc702-zynq7-prt() { - # This is to replace the ptest building part that fails due to - # internal compiler error on ARM targets (LXCR-3358) - echo "" -} - -do_compile_ptest_zc702-zynq7() { - # This is to replace the ptest building part that fails due to - # internal compiler error on ARM targets (LXCR-3358) - echo "" -} - -do_compile_ptest_k2hk-evm() { - # This is to replace the ptest building part that fails due to - # internal compiler error on ARM targets (LXCR-3358) - echo "" -} -do_compile_ptest_proliant-m800() { - # This is to replace the ptest building part that fails due to - # internal compiler error on ARM targets (LXCR-3358) - echo "" -} -- cgit v1.2.3-54-g00ecf