29 April 2026: Wouter
- tag for 1.25.0. The code repository continues with 1.25.1 in
development.
+ - Fix windows 64bit build for libssp dependency.
23 April 2026: Wouter
- Merge #1441: Fix buffer overrun in
|| error_cleanup "Could not configure"
set +x
else
+ # Add -l:libssp:a to statically link libssp if possible.
+ # Put it at the end of LIBS, to satisfy also linked in
+ # dependencies.
set -x
$configure --enable-debug --enable-static-exe --disable-flto --disable-gost $* $cross_flag \
|| error_cleanup "Could not configure"
+ sed -i Makefile -e 's/^\(LIBS=.*\)$/\1 -l:libssp.a/'
set +x
fi
info "Calling make"
|| error_cleanup "Could not configure"
set +x
else
+ # Do not add -l:libssp:a statically because it is a shared build.
set -x
$configure --enable-debug --disable-flto --disable-gost $* $shared_cross_flag \
|| error_cleanup "Could not configure"