From baba8f6529df89877a414ff588f226f2820f4c9f Mon Sep 17 00:00:00 2001 From: Matt Corallo Date: Fri, 13 Jan 2023 03:34:59 +0000 Subject: [PATCH] Stop timing C++ demo bindings run cause OSX is, as usual, garbage --- genbindings.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/genbindings.sh b/genbindings.sh index d1b6758..234af29 100755 --- a/genbindings.sh +++ b/genbindings.sh @@ -338,7 +338,7 @@ if [ "$2" = "true" ]; then strip ./a.out echo " C++ Bin size and runtime w/o optimization:" ls -lha a.out - time ./a.out > /dev/null + ./a.out > /dev/null fi # Then, check with memory sanitizer, if we're on Linux and have rustc nightly @@ -492,7 +492,7 @@ fi strip ./a.out echo "C++ Bin size and runtime with only RL (LTO) optimized:" ls -lha a.out -time ./a.out > /dev/null +./a.out > /dev/null if [ "$CLANGPP" != "" ]; then # If we can use cross-language LTO, use it for building C dependencies (i.e. libsecp256k1) as well @@ -564,7 +564,7 @@ if [ "$CLANGPP" != "" -a "$LLD" != "" ]; then strip ./a.out echo "C++ Bin size and runtime with cross-language LTO:" ls -lha a.out - time ./a.out > /dev/null + ./a.out > /dev/null fi fi else -- 2.30.2