experiment with Python optimisations
This commit is contained in:
parent
9c7a722cb9
commit
99c60c715e
1 changed files with 15 additions and 9 deletions
|
@ -276,6 +276,9 @@ build_python_for_abi ()
|
||||||
armeabi-v7a-hard)
|
armeabi-v7a-hard)
|
||||||
CFLAGS="-march=armv7-a -mfpu=vfpv3-d16 -mhard-float"
|
CFLAGS="-march=armv7-a -mfpu=vfpv3-d16 -mhard-float"
|
||||||
;;
|
;;
|
||||||
|
arm64-v8a)
|
||||||
|
CFLAGS="-march=armv8-a"
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
CFLAGS=""
|
CFLAGS=""
|
||||||
esac
|
esac
|
||||||
|
@ -285,7 +288,7 @@ build_python_for_abi ()
|
||||||
CFLAGS="$CFLAGS -mthumb"
|
CFLAGS="$CFLAGS -mthumb"
|
||||||
esac
|
esac
|
||||||
|
|
||||||
local CFLAGS="$CFLAGS --sysroot=$NDK_DIR/platforms/android-$APILEVEL/arch-$ARCH"
|
local CFLAGS="$CFLAGS -O3 -pipe --sysroot=$NDK_DIR/platforms/android-$APILEVEL/arch-$ARCH"
|
||||||
|
|
||||||
local LDFLAGS=""
|
local LDFLAGS=""
|
||||||
if [ "$ABI" = "armeabi-v7a-hard" ]; then
|
if [ "$ABI" = "armeabi-v7a-hard" ]; then
|
||||||
|
@ -306,11 +309,12 @@ build_python_for_abi ()
|
||||||
|
|
||||||
local CONFIG_SITE=$BUILDDIR_CONFIG/config.site
|
local CONFIG_SITE=$BUILDDIR_CONFIG/config.site
|
||||||
{
|
{
|
||||||
echo 'ac_cv_file__dev_ptmx=no'
|
echo 'ac_cv_file__dev_ptmx=yes'
|
||||||
echo 'ac_cv_file__dev_ptc=no'
|
echo 'ac_cv_file__dev_ptc=no'
|
||||||
echo 'ac_cv_func_gethostbyname_r=no'
|
echo 'ac_cv_func_gethostbyname_r=no'
|
||||||
if [ "$PYTHON_MAJOR_VERSION" == "3" ]; then
|
if [ "$PYTHON_MAJOR_VERSION" == "3" ]; then
|
||||||
echo 'ac_cv_func_faccessat=no'
|
echo 'ac_cv_func_faccessat=no'
|
||||||
|
echo 'ac_cv_little_endian_double=yes'
|
||||||
fi
|
fi
|
||||||
} >$CONFIG_SITE
|
} >$CONFIG_SITE
|
||||||
fail_panic "Can't create config.site wrapper"
|
fail_panic "Can't create config.site wrapper"
|
||||||
|
@ -346,15 +350,17 @@ build_python_for_abi ()
|
||||||
echo " --host=$HOST \\"
|
echo " --host=$HOST \\"
|
||||||
echo " --build=$BUILD_ON_PLATFORM \\"
|
echo " --build=$BUILD_ON_PLATFORM \\"
|
||||||
echo " --prefix=$BUILDDIR_CONFIG/install \\"
|
echo " --prefix=$BUILDDIR_CONFIG/install \\"
|
||||||
|
echo " --exec-prefix=/usr/local \\"
|
||||||
|
echo " --enable-loadable-sqlite-extensions \\"
|
||||||
echo " --enable-shared \\"
|
echo " --enable-shared \\"
|
||||||
echo " --with-threads \\"
|
|
||||||
echo " --enable-ipv6 \\"
|
echo " --enable-ipv6 \\"
|
||||||
|
echo " --enable-optimizations \\"
|
||||||
echo " --with-computed-gotos \\"
|
echo " --with-computed-gotos \\"
|
||||||
|
echo " --with-lto \\"
|
||||||
|
echo " --without-ensurepip \\"
|
||||||
echo " ac_cv_file__dev_ptmx=yes \\"
|
echo " ac_cv_file__dev_ptmx=yes \\"
|
||||||
echo " ac_cv_file__dev_ptc=no \\"
|
echo " ac_cv_file__dev_ptc=no \\"
|
||||||
echo " --without-ensurepip \\"
|
echo " ac_cv_little_endian_double=yes"
|
||||||
echo " ac_cv_little_endian_double=yes \\"
|
|
||||||
echo " --exec-prefix=/usr/local"
|
|
||||||
fi
|
fi
|
||||||
} >$CONFIGURE_WRAPPER
|
} >$CONFIGURE_WRAPPER
|
||||||
fail_panic "Can't create configure wrapper"
|
fail_panic "Can't create configure wrapper"
|
||||||
|
|
Loading…
Reference in a new issue