Skip to content
This repository was archived by the owner on Aug 16, 2019. It is now read-only.

Commit ce0c3e9

Browse files
committed
suppress warning of 32-bit absolute address out of range
1 parent c75901b commit ce0c3e9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

build_libpython.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ CONFIGURE_PATCH="configure-ios-$PYTHONVER.patch"
1515
SETUP_PY_PATCH="setup.py-ios-$PYTHONVER.patch"
1616

1717
PYFEATURES="--enable-shared=no --enable-profiling=no --enable-ipv6=yes --with-threads"
18-
OPTIONAL="--with-signal-module --disable-toolbox-glue"
18+
# according to https://github.com/kivy/kivy-ios/commit/0062353c5812b893d6d4bcc97eb221cd782a298c
19+
# use --without-pymalloc to suppress "32-bit absolute address out of range " warning
20+
OPTIONAL="--with-signal-module --disable-toolbox-glue --without-pymalloc"
1921

2022
PYTHON_DISABLED_MODULE_LIST=("_ctypes")
2123

0 commit comments

Comments
 (0)