The patch was submitted by Will Schmidt (will_schmidt@vnet.ibm.com).
remove unused capability checking scripts.
these have been replaced by the check_ppc64_auxv_cap script.
change tests/check_ppc64_auxv_cap to executable. Tried to make it
executable on the last commit but for some reason it didn't seem to suceed.
Bugzilla 34979
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@15422
dist_noinst_SCRIPTS = \
check_headers_and_includes \
- check_isa-2_06_cap \
- check_isa-2_07_cap \
check_makefile_consistency \
- check_dfp_cap \
- check_vmx_cap \
check_ppc64_auxv_cap \
filter_addresses \
filter_discards \
+++ /dev/null
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports Decimal Floating Point (DFP).
-
-LD_SHOW_AUXV=1 /bin/true | grep dfp > /dev/null 2>&1
-if [ "$?" -ne "0" ]; then
- exit 1
-else
- exit 0
-fi
+++ /dev/null
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports Power ISA 2.06 or later.
-DIR="$( cd "$( dirname "$0" )" && pwd )"
-LD_SHOW_AUXV=1 /bin/true | grep arch_2_06 > /dev/null 2>&1
-
-if [ "$?" -ne "0" ]; then
- exit 1
-else
- exit 0
-fi
-
+++ /dev/null
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports
-# Power ISA 2.07.
-DIR="$( cd "$( dirname "$0" )" && pwd )"
-LD_SHOW_AUXV=1 /bin/true | grep arch_2_07 > /dev/null 2>&1
-
-if [ "$?" -ne "0" ]; then
- exit 1
-else
- exit 0
-fi
+++ /dev/null
-#!/bin/sh
-
-# We use this script to check whether or not the processor supports VMX (aka "Altivec").
-
-LD_SHOW_AUXV=1 /bin/true | grep altivec > /dev/null 2>&1
-if [ "$?" -ne "0" ]; then
- exit 1
-else
- exit 0
-fi
-