2018-10-07 16:59:03 +02:00
|
|
|
|
|
|
|
import os
|
|
|
|
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
|
2017-10-03 11:16:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
class CffiRecipe(CompiledComponentsPythonRecipe):
|
2018-10-07 16:59:03 +02:00
|
|
|
name = 'cffi'
|
2020-05-03 22:09:57 +02:00
|
|
|
version = '1.13.2'
|
2018-10-07 16:59:03 +02:00
|
|
|
url = 'https://pypi.python.org/packages/source/c/cffi/cffi-{version}.tar.gz'
|
|
|
|
|
|
|
|
depends = [('python2', 'python3crystax'), 'setuptools', 'pycparser', 'libffi']
|
|
|
|
|
|
|
|
patches = ['disable-pkg-config.patch']
|
|
|
|
|
|
|
|
# call_hostpython_via_targetpython = False
|
|
|
|
install_in_hostpython = True
|
|
|
|
|
|
|
|
def get_hostrecipe_env(self, arch=None):
|
|
|
|
# fixes missing ffi.h on some host systems (e.g. gentoo)
|
|
|
|
env = super(CffiRecipe, self).get_hostrecipe_env(arch)
|
|
|
|
libffi = self.get_recipe('libffi', self.ctx)
|
|
|
|
includes = libffi.get_include_dirs(arch)
|
|
|
|
env['FFI_INC'] = ",".join(includes)
|
|
|
|
return env
|
|
|
|
|
|
|
|
def get_recipe_env(self, arch=None):
|
|
|
|
env = super(CffiRecipe, self).get_recipe_env(arch)
|
|
|
|
# sets linker to use the correct gcc (cross compiler)
|
|
|
|
env['LDSHARED'] = env['CC'] + ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions'
|
|
|
|
libffi = self.get_recipe('libffi', self.ctx)
|
|
|
|
includes = libffi.get_include_dirs(arch)
|
|
|
|
env['CFLAGS'] = ' -I'.join([env.get('CFLAGS', '')] + includes)
|
|
|
|
env['LDFLAGS'] = (env.get('CFLAGS', '') + ' -L' +
|
|
|
|
self.ctx.get_libs_dir(arch.arch))
|
|
|
|
env['LDFLAGS'] += ' -L{}'.format(os.path.join(self.ctx.bootstrap.build_dir, 'libs', arch.arch))
|
|
|
|
|
2018-12-27 09:04:21 +01:00
|
|
|
# required for libc and libdl/include
|
2018-10-07 16:59:03 +02:00
|
|
|
ndk_dir = self.ctx.ndk_platform
|
|
|
|
ndk_lib_dir = os.path.join(ndk_dir, 'usr', 'lib')
|
|
|
|
env['LDFLAGS'] += ' -L{}'.format(ndk_lib_dir)
|
|
|
|
env['LDFLAGS'] += " --sysroot={}".format(self.ctx.ndk_platform)
|
|
|
|
env['PYTHONPATH'] = ':'.join([
|
|
|
|
self.ctx.get_site_packages_dir(),
|
|
|
|
env['BUILDLIB_PATH'],
|
|
|
|
])
|
|
|
|
if self.ctx.ndk == 'crystax':
|
|
|
|
# only keeps major.minor (discards patch)
|
|
|
|
python_version = self.ctx.python_recipe.version[0:3]
|
|
|
|
ndk_dir_python = os.path.join(self.ctx.ndk_dir, 'sources/python/', python_version)
|
|
|
|
env['LDFLAGS'] += ' -L{}'.format(os.path.join(ndk_dir_python, 'libs', arch.arch))
|
|
|
|
env['LDFLAGS'] += ' -lpython{}m'.format(python_version)
|
|
|
|
# until `pythonforandroid/archs.py` gets merged upstream:
|
|
|
|
# https://github.com/kivy/python-for-android/pull/1250/files#diff-569e13021e33ced8b54385f55b49cbe6
|
|
|
|
env['CFLAGS'] += ' -I{}/include/python/'.format(ndk_dir_python)
|
|
|
|
return env
|
|
|
|
|
|
|
|
|
|
|
|
recipe = CffiRecipe()
|