diff options
author | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-04-09 11:27:15 +1000 |
---|---|---|
committer | Nathan Rossi <nathan.rossi@xilinx.com> | 2015-04-09 11:27:15 +1000 |
commit | 85d8dc69a57f371f22844948dd5ffd15d2519814 (patch) | |
tree | 19687619164e71dd2daf16f7c2f922a752644ec8 | |
parent | 9d4c228da0634bdf4b5200c6b673c44496dc4a95 (diff) | |
download | meta-xilinx-85d8dc69a57f371f22844948dd5ffd15d2519814.tar.gz |
python: Add bbappend to fix issue with MicroBlaze
Python 2.7.9 introduces a change that causes issues with building the in
tree libffi for MicroBlaze. To resolve this issue rely on the libffi
built for the target instead of re-building an additional version just
for Python. This change is only applied to MicroBlaze specifically.
Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com>
-rw-r--r-- | recipes-microblaze/python/python_2.7.9.bbappend | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/recipes-microblaze/python/python_2.7.9.bbappend b/recipes-microblaze/python/python_2.7.9.bbappend new file mode 100644 index 00000000..b3a2a84c --- /dev/null +++ b/recipes-microblaze/python/python_2.7.9.bbappend | |||
@@ -0,0 +1,4 @@ | |||
1 | |||
2 | DEPENDS_append_microblaze += "libffi" | ||
3 | CONFIGUREOPTS_append_microblaze += "--with-system-ffi" | ||
4 | |||