You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
2.1 KiB
59 lines
2.1 KiB
#!/bin/bash
|
|
|
|
# This script was tested on Linux and MacOS hosts, where it can be used
|
|
# to build native libsecp256k1 binaries.
|
|
#
|
|
# It can also be used to cross-compile to Windows:
|
|
# $ sudo apt-get install mingw-w64
|
|
# For a Windows x86 (32-bit) target, run:
|
|
# $ GCC_TRIPLET_HOST="i686-w64-mingw32" ./contrib/make_libsecp256k1.sh
|
|
# Or for a Windows x86_64 (64-bit) target, run:
|
|
# $ GCC_TRIPLET_HOST="x86_64-w64-mingw32" ./contrib/make_libsecp256k1.sh
|
|
|
|
LIBSECP_VERSION="b408c6a8b287003d1ade5709e6f7bc3c7f1d5be7"
|
|
|
|
set -e
|
|
|
|
. $(dirname "$0")/build_tools_util.sh || (echo "Could not source build_tools_util.sh" && exit 1)
|
|
|
|
here=$(dirname $(realpath "$0" 2> /dev/null || grealpath "$0"))
|
|
CONTRIB="$here"
|
|
PROJECT_ROOT="$CONTRIB/.."
|
|
|
|
pkgname="secp256k1"
|
|
info "Building $pkgname..."
|
|
|
|
(
|
|
cd $CONTRIB
|
|
if [ ! -d secp256k1 ]; then
|
|
git clone https://github.com/bitcoin-core/secp256k1.git
|
|
fi
|
|
cd secp256k1
|
|
git reset --hard
|
|
git clean -f -x -q
|
|
git checkout $LIBSECP_VERSION
|
|
|
|
if ! [ -x configure ] ; then
|
|
echo "libsecp256k1_la_LDFLAGS = -no-undefined" >> Makefile.am
|
|
echo "LDFLAGS = -no-undefined" >> Makefile.am
|
|
./autogen.sh || fail "Could not run autogen for $pkgname. Please make sure you have automake and libtool installed, and try again."
|
|
fi
|
|
if ! [ -r config.status ] ; then
|
|
./configure \
|
|
$AUTOCONF_FLAGS \
|
|
--prefix="$here/$pkgname/dist" \
|
|
--enable-module-recovery \
|
|
--enable-experimental \
|
|
--enable-module-ecdh \
|
|
--disable-jni \
|
|
--disable-tests \
|
|
--disable-static \
|
|
--enable-shared || fail "Could not configure $pkgname. Please make sure you have a C compiler installed and try again."
|
|
fi
|
|
make -j4 || fail "Could not build $pkgname"
|
|
make install || fail "Could not install $pkgname"
|
|
. "$here/$pkgname/dist/lib/libsecp256k1.la"
|
|
host_strip "$here/$pkgname/dist/lib/$dlname"
|
|
cp -fpv "$here/$pkgname/dist/lib/$dlname" "$PROJECT_ROOT/electrum" || fail "Could not copy the $pkgname binary to its destination"
|
|
info "$dlname has been placed in the inner 'electrum' folder."
|
|
)
|
|
|