Maybe this is of no concern, but I did notice the binaries have increases in size using a failure basic compilation on Ubuntu 20.04.

~/redis$ make BUILD_TLS=yes CFLAGS="-static" EXEEXT="-static" LDFLAGS="-I/usr/local/include/" MALLOC=jemalloc

~/redis$ find ./src -type f -executable | xargs ls --sort=size -lh

-rwxr-xr-x 1 ubuntu ubuntu  15M Mar  1 18:58 ./src/redis-check-aof
-rwxr-xr-x 1 ubuntu ubuntu  15M Mar  1 18:58 ./src/redis-check-rdb
-rwxr-xr-x 1 ubuntu ubuntu  15M Mar  1 18:58 ./src/redis-sentinel
-rwxrwxr-x 1 ubuntu ubuntu  15M Mar  1 18:58 ./src/redis-server
-rwxrwxr-x 1 ubuntu ubuntu 7.8M Mar  1 18:58 ./src/redis-benchmark
-rwxrwxr-x 1 ubuntu ubuntu 7.8M Mar  1 18:58 ./src/redis-cli
-rwxrwxr-x 1 ubuntu ubuntu 3.6K Feb 28 13:35 ./src/redis-trib.rb
-rwxrwxr-x 1 ubuntu ubuntu  735 Feb 28 13:35 ./src/mkreleasehdr.sh

The last 6 release was about 2/3s the size for most. Should I/we worry?

Comment From: oranagra

there's no reason to worry, many improvements, the size grew a bit. what did you mean by failure? i suppose a typo?

i did some basic checks (default build, without TLS), * 6.0: 9.2mb * 6.2: 9.9mb * before #9656: 11mb * final 7.0 RC2: 12mb

Comment From: ronaldpetty

Thank you @oranagra for the response. It was a typo, meant to say fairly, not failure. Keep up the good work!