Browse Source

wine build: towards deterministic libsecp - strip debug symbols

smaller dll and no longer depends on build path
3.2.x
SomberNight 7 years ago
parent
commit
d293cc0d53
No known key found for this signature in database GPG Key ID: B33B5F232C6271E9
  1. 4
      contrib/build-wine/build-secp256k1.sh

4
contrib/build-wine/build-secp256k1.sh

@ -5,6 +5,7 @@ set -e
build_dll() {
#sudo apt-get install -y mingw-w64
export SOURCE_DATE_EPOCH=1530212462
./autogen.sh
echo "LDFLAGS = -no-undefined" >> Makefile.am
LDFLAGS="-Wl,--no-insert-timestamp" ./configure \
@ -14,6 +15,7 @@ build_dll() {
--enable-module-ecdh \
--disable-jni
make
${1}-strip .libs/libsecp256k1-0.dll
}
@ -30,8 +32,6 @@ fi
git reset --hard 452d8e4d2a2f9f1b5be6b02e18f1ba102e5ca0b4
git clean -f -x -q
export SOURCE_DATE_EPOCH=1530212462
build_dll i686-w64-mingw32 # 64-bit would be: x86_64-w64-mingw32
mv .libs/libsecp256k1-0.dll libsecp256k1.dll

Loading…
Cancel
Save