diff options
author | Alejandro Hernandez <alejandro.hernandez@linux.intel.com> | 2015-06-16 15:29:13 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-06-23 11:38:17 +0100 |
commit | c254807c9d1b515b17c4fc9ee92f6a86aaaac1f6 (patch) | |
tree | b76583467a3fd513d6270645fb4753082d2b25f8 /meta/recipes-devtools/python | |
parent | 6b81c89878236b2ef8d8b8217f2e33286b49dab6 (diff) | |
download | openembedded-core-contrib-c254807c9d1b515b17c4fc9ee92f6a86aaaac1f6.tar.gz |
python3-ctypes: Fix cross compilation for arm targets
When cross compiling for arm targets ctypes compilation fails because
it uses _sysconfigdata from the HOST, this patches makes it use the
one from TARGET fixing compilation of this module
[YOCTO #7873]
Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
Signed-off-by: Jonas Göransson <jonas.goransson@qmatic.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-devtools/python')
-rw-r--r-- | meta/recipes-devtools/python/python3_3.4.3.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3_3.4.3.bb b/meta/recipes-devtools/python/python3_3.4.3.bb index 8e0c2ba5f01..7eb99b1be79 100644 --- a/meta/recipes-devtools/python/python3_3.4.3.bb +++ b/meta/recipes-devtools/python/python3_3.4.3.bb @@ -69,6 +69,9 @@ export _PYTHON_PROJECT_BASE = "${B}" export _PYTHON_PROJECT_SRC = "${S}" export CCSHARED = "-fPIC" +# Fix ctypes cross compilation +export CROSSPYTHONPATH = "${B}/build/lib.linux-${TARGET_ARCH}-${PYTHON_MAJMIN}:${S}/Lib:${S}/Lib/plat-linux" + # No ctypes option for python 3 PYTHONLSBOPTS = "" |