Patrick Williams | d8c66bc | 2016-06-20 12:57:21 -0500 | [diff] [blame] | 1 | From 5d6509313198ec9b686cad50b002212e4344004b Mon Sep 17 00:00:00 2001 |
| 2 | From: Hongxu Jia <hongxu.jia@windriver.com> |
| 3 | Date: Fri, 11 Mar 2016 01:15:45 -0500 |
| 4 | Subject: [PATCH] configure.ac: tweak MULTIARCH for powerpc-linux-gnuspe |
| 5 | |
| 6 | For p1022ds bsp, the MULTIARCH is powerpc-linux-gnuspev1 and |
| 7 | python3 did not recognize the extra 'v1' which caused python3 |
| 8 | configure error for the platform triplet. |
| 9 | |
| 10 | Q:Why Python3 check platform triplet? |
| 11 | |
| 12 | A:Under Linux, GNU/KFreeBSD and the Hurd, C extensions now include |
| 13 | the architecture triplet in the extension name, to make it easy to |
| 14 | test builds for different ABIs in the same working tree. |
| 15 | |
| 16 | Here is the generated C extensions which take platform triplet into account. |
| 17 | ... |
| 18 | |image/usr/lib/python3.5/lib-dynload/_datetime.cpython-35m-powerpc-linux-gnuspe.so |
| 19 | ... |
| 20 | |
| 21 | https://bugs.python.org/issue22980 |
| 22 | https://www.python.org/dev/peps/pep-3149/ |
| 23 | https://bugs.python.org/review/22980/patch/14593/54808 |
| 24 | |
| 25 | Upstream-Status: Pending |
| 26 | |
| 27 | Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> |
| 28 | --- |
| 29 | configure.ac | 7 +++++++ |
| 30 | 1 file changed, 7 insertions(+) |
| 31 | |
| 32 | diff --git a/configure.ac b/configure.ac |
| 33 | index 9eb3d22..c34a9a0 100644 |
| 34 | --- a/configure.ac |
| 35 | +++ b/configure.ac |
| 36 | @@ -724,6 +724,13 @@ fi |
| 37 | |
| 38 | |
| 39 | MULTIARCH=$($CC --print-multiarch 2>/dev/null) |
| 40 | + |
| 41 | +# Tweak MULTIARCH |
| 42 | +if test x$MULTIARCH = xpowerpc-linux-gnuspev1 |
| 43 | +then |
| 44 | + MULTIARCH="powerpc-linux-gnuspe" |
| 45 | +fi |
| 46 | + |
| 47 | AC_SUBST(MULTIARCH) |
| 48 | |
| 49 | AC_MSG_CHECKING([for the platform triplet based on compiler characteristics]) |
| 50 | -- |
| 51 | 1.9.1 |
| 52 | |