From: Matt Corallo Date: Fri, 13 Jan 2023 03:34:59 +0000 (+0000) Subject: Stop timing C++ demo bindings run cause OSX is, as usual, garbage X-Git-Tag: v0.0.113.1~1^2 X-Git-Url: http://git.bitcoin.ninja/index.cgi?p=ldk-c-bindings;a=commitdiff_plain;h=baba8f6529df89877a414ff588f226f2820f4c9f Stop timing C++ demo bindings run cause OSX is, as usual, garbage --- 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