From 7d2f7bf34d3b423da1dcb5a47aac8f961c4e3261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B8=CC=86=20=D0=93?= =?UTF-8?q?=D0=B5=D1=80=D0=B0=D1=81=D0=B8=D0=BC=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Fri, 23 Oct 2020 09:28:41 +0300 Subject: [PATCH 1/4] bug with installing with cocoa pods was fixed --- setup/build_secp256k1.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup/build_secp256k1.sh b/setup/build_secp256k1.sh index 631dde0f..f19825a4 100644 --- a/setup/build_secp256k1.sh +++ b/setup/build_secp256k1.sh @@ -20,6 +20,8 @@ mkdir -p "$TARGETDIR_SIMULATOR" (cd src && ./autogen.sh) (cd src && ./configure --host=x86_64-apple-darwin CC=`xcrun -find clang` CFLAGS="-O3 -arch i386 -arch x86_64 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path` -fembed-bitcode-marker -mios-simulator-version-min=8.0" CXX=`xcrun -find clang++` CXXFLAGS="-O3 -arch i386 -arch x86_64 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path` -fembed-bitcode-marker -mios-simulator-version-min=8.0" --prefix="$TARGETDIR_IPHONEOS" && make install) +(cd src && make distclean > /dev/null) +(cd src && ./autogen.sh) (cd src && ./configure --host=arm-apple-darwin CC=`xcrun -find clang` CFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot `xcrun -sdk iphoneos --show-sdk-path` -fembed-bitcode -mios-version-min=8.0" CXX=`xcrun -find clang++` CXXFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot `xcrun -sdk iphoneos --show-sdk-path` -fembed-bitcode -mios-version-min=8.0" --prefix="$TARGETDIR_SIMULATOR" && make install) cd - From e9272d32c8996c2e22e5a4d2e55228f4f88f0d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B8=CC=86=20=D0=93?= =?UTF-8?q?=D0=B5=D1=80=D0=B0=D1=81=D0=B8=D0=BC=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Fri, 23 Oct 2020 10:07:19 +0300 Subject: [PATCH 2/4] update --- setup/build_secp256k1.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/setup/build_secp256k1.sh b/setup/build_secp256k1.sh index f19825a4..38bcfbfa 100644 --- a/setup/build_secp256k1.sh +++ b/setup/build_secp256k1.sh @@ -21,7 +21,6 @@ mkdir -p "$TARGETDIR_SIMULATOR" (cd src && ./autogen.sh) (cd src && ./configure --host=x86_64-apple-darwin CC=`xcrun -find clang` CFLAGS="-O3 -arch i386 -arch x86_64 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path` -fembed-bitcode-marker -mios-simulator-version-min=8.0" CXX=`xcrun -find clang++` CXXFLAGS="-O3 -arch i386 -arch x86_64 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path` -fembed-bitcode-marker -mios-simulator-version-min=8.0" --prefix="$TARGETDIR_IPHONEOS" && make install) (cd src && make distclean > /dev/null) -(cd src && ./autogen.sh) (cd src && ./configure --host=arm-apple-darwin CC=`xcrun -find clang` CFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot `xcrun -sdk iphoneos --show-sdk-path` -fembed-bitcode -mios-version-min=8.0" CXX=`xcrun -find clang++` CXXFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot `xcrun -sdk iphoneos --show-sdk-path` -fembed-bitcode -mios-version-min=8.0" --prefix="$TARGETDIR_SIMULATOR" && make install) cd - From 7b08096d66d2cd40af65ff955bf26b4d7683cd2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B8=CC=86=20=D0=93?= =?UTF-8?q?=D0=B5=D1=80=D0=B0=D1=81=D0=B8=D0=BC=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Fri, 23 Oct 2020 10:17:56 +0300 Subject: [PATCH 3/4] update --- setup/build_secp256k1.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/setup/build_secp256k1.sh b/setup/build_secp256k1.sh index 38bcfbfa..631dde0f 100644 --- a/setup/build_secp256k1.sh +++ b/setup/build_secp256k1.sh @@ -20,7 +20,6 @@ mkdir -p "$TARGETDIR_SIMULATOR" (cd src && ./autogen.sh) (cd src && ./configure --host=x86_64-apple-darwin CC=`xcrun -find clang` CFLAGS="-O3 -arch i386 -arch x86_64 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path` -fembed-bitcode-marker -mios-simulator-version-min=8.0" CXX=`xcrun -find clang++` CXXFLAGS="-O3 -arch i386 -arch x86_64 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path` -fembed-bitcode-marker -mios-simulator-version-min=8.0" --prefix="$TARGETDIR_IPHONEOS" && make install) -(cd src && make distclean > /dev/null) (cd src && ./configure --host=arm-apple-darwin CC=`xcrun -find clang` CFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot `xcrun -sdk iphoneos --show-sdk-path` -fembed-bitcode -mios-version-min=8.0" CXX=`xcrun -find clang++` CXXFLAGS="-O3 -arch armv7 -arch armv7s -arch arm64 -isysroot `xcrun -sdk iphoneos --show-sdk-path` -fembed-bitcode -mios-version-min=8.0" --prefix="$TARGETDIR_SIMULATOR" && make install) cd - From 98a1bd3e361604b05778db1d7bca68546c919d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=94=D0=BC=D0=B8=D1=82=D1=80=D0=B8=D0=B8=CC=86=20=D0=93?= =?UTF-8?q?=D0=B5=D1=80=D0=B0=D1=81=D0=B8=D0=BC=D0=B5=D0=BD=D0=BA=D0=BE?= Date: Mon, 26 Oct 2020 12:07:02 +0300 Subject: [PATCH 4/4] bug was fixed --- setup/build_crypto.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup/build_crypto.sh b/setup/build_crypto.sh index 8fcc1734..6feaaf85 100644 --- a/setup/build_crypto.sh +++ b/setup/build_crypto.sh @@ -9,7 +9,7 @@ trap "{ cd - ; rm -rf $TDIR; exit 255; }" SIGINT cd $TDIR -curl -O https://www.openssl.org/source/openssl-$OPENSSL_VERSION.tar.gz +curl -O https://www.openssl.org/source/old/1.0.2/openssl-$OPENSSL_VERSION.tar.gz tar zxf openssl-$OPENSSL_VERSION.tar.gz cd openssl-$OPENSSL_VERSION