X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=genbindings.sh;h=234af2946fdc99630c78065464a8072dc02fe7ba;hb=baba8f6529df89877a414ff588f226f2820f4c9f;hp=d1b67580d1a4fcb850db9dcb5fbd5bbfb9ab8613;hpb=3c53ad28bb8dfc5495e21ad754fd8680e4eca4f8;p=ldk-c-bindings 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