Skip to content

Commit e794cde

Browse files
committed
Explicitly opt out of building Elements
1 parent 9ce2a2a commit e794cde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-libwally.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ if [ $simulator == 1 ]; then
5353
export CFLAGS="-O3 -arch x86_64 -arch i386 -fembed-bitcode-marker -mios-simulator-version-min=10.0 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path`"
5454
export CXXFLAGS="-O3 -arch x86_64 -arch i386 -fembed-bitcode-marker -mios-simulator-version-min=10.0 -isysroot `xcrun -sdk iphonesimulator --show-sdk-path`"
5555
mkdir -p build
56-
./configure --disable-shared --host=x86_64-apple-darwin --enable-static
56+
./configure --disable-shared --host=x86_64-apple-darwin --enable-static --disable-elements
5757
if [ $clean == 1 ]; then
5858
set -v # display commands
5959
make clean
@@ -73,7 +73,7 @@ if [ $device == 1 ]; then
7373
export CFLAGS="-O3 -arch arm64 -arch arm64e -arch armv7 -arch armv7s -fembed-bitcode -mios-version-min=10.0 -isysroot `xcrun -sdk iphoneos --show-sdk-path`"
7474
export CXXFLAGS="-O3 -arch arm64 -arch arm64e -arch armv7 -arch armv7s -isysroot -fembed-bitcode -mios-version-min=10.0 -isysroot `xcrun -sdk iphoneos --show-sdk-path`"
7575
mkdir -p build
76-
./configure --disable-shared --host=aarch64-apple-darwin14 --enable-static
76+
./configure --disable-shared --host=aarch64-apple-darwin14 --enable-static --disable-elements
7777
if [ $clean == 1 ]; then
7878
make clean
7979
fi

0 commit comments

Comments
 (0)