[issue28046] Remove the concept of platform-specific directories

Xavier de Gaye report at bugs.python.org
Sat Sep 10 14:12:37 EDT 2016


Xavier de Gaye added the comment:

With the attached patch, the python test suite runs smoothly on android and without errors on linux. On android, there are two new failed test cases in test_sysconfig that I will look into later (in the frame of this issue, I guess ?), but otherwise about the same tests fail that were failing before.

Here are some details about the fix:

> Another problem is that the shared libraries names of the extension modules are now suffixed with the wrong triplet.

This is because _init_posix() in Lib/distutils/sysconfig.py still imports the native python sysconfigdata module instead of the newly built one for the target host.

After _init_posix() is fixed, another problem occurs: extension modules are now built by including /usr/include from the native system and this leads to some unresolved dlopen references at run time on android. The reason is that add_gcc_paths() in setup.py calls sysconfig.get_config_var('CC') and this returns the native compiler instead of the cross-compiler.

So a solution is to set the _SYSCONFIGDATA_NAME environment variable in PYTHON_FOR_BUILD.

----------
Added file: http://bugs.python.org/file44532/sysconfigdata_env_var.diff

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue28046>
_______________________________________


More information about the Python-bugs-list mailing list