Strip the executables in order to reduce their size

This commit is contained in:
Guy Shimko 2024-12-24 21:35:11 +02:00
parent 1dfe3fa6ca
commit aa49ade8d4

View File

@ -52,6 +52,9 @@ function set_compliation_variables() {
export CFLAGS="-O2"
export CXXFLAGS="-O2"
# Strip the binary to reduce it's size.
export LDFLAGS="-s"
}
function set_ncurses_link_variables() {