Browse Source
wine build: libsecp deterministic on given machine
but not yet across machines
3.2.x
SomberNight
7 years ago
No known key found for this signature in database
GPG Key ID: B33B5F232C6271E9
1 changed files with
8 additions and
1 deletions
-
contrib/build-wine/build-secp256k1.sh
|
|
@ -7,7 +7,12 @@ build_dll() { |
|
|
|
#sudo apt-get install -y mingw-w64 |
|
|
|
./autogen.sh |
|
|
|
echo "LDFLAGS = -no-undefined" >> Makefile.am |
|
|
|
./configure --host=$1 --enable-module-recovery --enable-experimental --enable-module-ecdh --disable-jni |
|
|
|
LDFLAGS="-Wl,--no-insert-timestamp" ./configure \ |
|
|
|
--host=$1 \ |
|
|
|
--enable-module-recovery \ |
|
|
|
--enable-experimental \ |
|
|
|
--enable-module-ecdh \ |
|
|
|
--disable-jni |
|
|
|
make |
|
|
|
} |
|
|
|
|
|
|
@ -25,6 +30,8 @@ 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 |
|
|
|
|
|
|
|