File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -338,7 +338,7 @@ if [ "$2" = "true" ]; then
338
338
strip ./a.out
339
339
echo " C++ Bin size and runtime w/o optimization:"
340
340
ls -lha a.out
341
- time ./a.out > /dev/null
341
+ ./a.out > /dev/null
342
342
fi
343
343
344
344
# Then, check with memory sanitizer, if we're on Linux and have rustc nightly
492
492
strip ./a.out
493
493
echo " C++ Bin size and runtime with only RL (LTO) optimized:"
494
494
ls -lha a.out
495
- time ./a.out > /dev/null
495
+ ./a.out > /dev/null
496
496
497
497
if [ " $CLANGPP " != " " ]; then
498
498
# 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
564
564
strip ./a.out
565
565
echo " C++ Bin size and runtime with cross-language LTO:"
566
566
ls -lha a.out
567
- time ./a.out > /dev/null
567
+ ./a.out > /dev/null
568
568
fi
569
569
fi
570
570
else
You can’t perform that action at this time.
0 commit comments