diff options
author | Huang Qiyu <huangqy.fnst@cn.fujitsu.com> | 2017-01-16 13:36:45 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-01-25 15:59:58 +0100 |
commit | 67aff6b520efe4881e47c244623b4ffbf5c86e94 (patch) | |
tree | 3cb37f8b11759008c1aec38addc632445acf32f6 /meta-python/recipes-devtools/python/python-greenlet | |
parent | 86ee2cdc49c63dc73b500001465708b4c008c1bd (diff) | |
download | meta-openembedded-67aff6b520efe4881e47c244623b4ffbf5c86e94.tar.gz |
python-greenlet: 0.4.9 -> 0.4.11
1) Upgrade python-greenlet from 0.4.9 to 0.4.11.
2) Delete 0001-Use-x-instead-of-r-for-aarch64-register-names.patch, since it is integrated upstream.
Signed-off-by: Huang Qiyu <huangqy.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python-greenlet')
-rw-r--r-- | meta-python/recipes-devtools/python/python-greenlet/0001-Use-x-instead-of-r-for-aarch64-register-names.patch | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/meta-python/recipes-devtools/python/python-greenlet/0001-Use-x-instead-of-r-for-aarch64-register-names.patch b/meta-python/recipes-devtools/python/python-greenlet/0001-Use-x-instead-of-r-for-aarch64-register-names.patch deleted file mode 100644 index 4868bf3bcb..0000000000 --- a/meta-python/recipes-devtools/python/python-greenlet/0001-Use-x-instead-of-r-for-aarch64-register-names.patch +++ /dev/null | |||
@@ -1,38 +0,0 @@ | |||
1 | From b53fb3bf861f895034452e984f2accb8bebbd3c9 Mon Sep 17 00:00:00 2001 | ||
2 | From: Fredrik Fornwall <fredrik@fornwall.net> | ||
3 | Date: Wed, 7 Sep 2016 09:25:54 +0200 | ||
4 | Subject: [PATCH] Use x instead of r for aarch64 register names | ||
5 | |||
6 | This fixes clang compatibility. | ||
7 | --- | ||
8 | Upstream-Status: Backport | ||
9 | |||
10 | platform/switch_aarch64_gcc.h | 5 +++-- | ||
11 | 1 file changed, 3 insertions(+), 2 deletions(-) | ||
12 | |||
13 | diff --git a/platform/switch_aarch64_gcc.h b/platform/switch_aarch64_gcc.h | ||
14 | index 2fbc569..0b9d556 100644 | ||
15 | --- a/platform/switch_aarch64_gcc.h | ||
16 | +++ b/platform/switch_aarch64_gcc.h | ||
17 | @@ -2,6 +2,7 @@ | ||
18 | * this is the internal transfer function. | ||
19 | * | ||
20 | * HISTORY | ||
21 | + * 07-Sep-16 Add clang support using x register naming. Fredrik Fornwall | ||
22 | * 13-Apr-13 Add support for strange GCC caller-save decisions | ||
23 | * 08-Apr-13 File creation. Michael Matz | ||
24 | * | ||
25 | @@ -15,8 +16,8 @@ | ||
26 | |||
27 | #ifdef SLP_EVAL | ||
28 | #define STACK_MAGIC 0 | ||
29 | -#define REGS_TO_SAVE "r19", "r20", "r21", "r22", "r23", "r24", "r25", "r26", \ | ||
30 | - "r27", "r28", "r30" /* aka lr */, \ | ||
31 | +#define REGS_TO_SAVE "x19", "x20", "x21", "x22", "x23", "x24", "x25", "x26", \ | ||
32 | + "x27", "x28", "x30" /* aka lr */, \ | ||
33 | "v8", "v9", "v10", "v11", \ | ||
34 | "v12", "v13", "v14", "v15" | ||
35 | |||
36 | -- | ||
37 | 1.9.1 | ||
38 | |||