Merge pull request #23 from guyush1/reduce-static-python-size

reduce static gdb python size
This commit is contained in:
Guy Shimko
2024-12-25 23:46:36 +02:00
committed by GitHub
2 changed files with 4 additions and 1 deletions

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() {