Re: [PATCH] Add simd testsuite

2020-12-18 Thread Matthias Kretz
On Donnerstag, 17. Dezember 2020 14:10:51 CET Jonathan Wakely wrote: > On 16/12/20 12:58 +0100, Matthias Kretz wrote: > >+ $srcdir/testsuite/experimental/simd/generate_makefile.sh \ > >+--destination="$testdir/$subdir" $CXX $INCLUDES $CXXFLAGS -static > > Is the -static here to avoid needing

Re: [PATCH] Add simd testsuite

2020-12-17 Thread Jonathan Wakely via Gcc-patches
On 16/12/20 12:58 +0100, Matthias Kretz wrote: --- /dev/null +++ b/libstdc++-v3/scripts/check_simd @@ -0,0 +1,76 @@ +#!/bin/sh + +# check_simd +# Read config from $CHECK_SIMD_CONFIG file or $target_list + +scriptdir="$(cd "${0%/*}" && pwd)" The ${0%/*} substitution is required by POSIX sh si