Skip to content

Commit df058f3

Browse files
author
Lawrence Nahum
committed
enable ecmult-static-precomputation explicitly
1 parent 86f1d11 commit df058f3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def call(cmd):
9191
extra_build_options = os.getenv('ENABLE_ELEMENTS', '')
9292
call('./tools/cleanup.sh')
9393
call('./tools/autogen.sh')
94-
call('./configure --enable-swig-python {}'.format(extra_build_options))
94+
call('./configure --enable-swig-python --enable-ecmult-static-precomputation {}'.format(extra_build_options))
9595
call('make -j{}'.format(multiprocessing.cpu_count()))
9696

9797
# Copy the so that has just been built to the build_dir that distutils expects it to be in

tools/build_android_libraries.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ for arch in $ARCH_LIST; do
3838
fi
3939

4040
# What we want built
41-
useropts="--enable-swig-java $ENABLE_ELEMENTS"
41+
useropts="--enable-swig-java $ENABLE_ELEMENTS --enable-ecmult-static-precomputation"
4242

4343
# Configure and build with the above options
4444
android_build_wally $arch $toolsdir $api $useropts

tools/build_js_bindings.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ set -e
44

55
tools/cleanup.sh
66
tools/autogen.sh
7-
./configure --enable-js-wrappers --disable-swig-python --disable-swig-java $DEBUG_WALLY $ENABLE_ELEMENTS
7+
./configure --enable-js-wrappers --disable-swig-python --disable-swig-java --enable-ecmult-static-precomputation $DEBUG_WALLY $ENABLE_ELEMENTS
88
num_jobs=4
99
if [ -f /proc/cpuinfo ]; then
1010
num_jobs=$(grep ^processor /proc/cpuinfo | wc -l)

0 commit comments

Comments
 (0)