diff options
| author | Khem Raj <raj.khem@gmail.com> | 2020-05-02 13:56:28 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-05-14 16:45:42 +0100 |
| commit | cbff49a7005ed8a774cfa157753ff8718f23b26e (patch) | |
| tree | baefeb9f33c9302610122b99c720bce60882a5d9 /meta | |
| parent | c288352cee5ad7163800e3c74f2c2a50ee8ddb95 (diff) | |
| download | poky-cbff49a7005ed8a774cfa157753ff8718f23b26e.tar.gz | |
musl: Remove spurious unused patch
(From OE-Core rev: 2bd345826e23802ff3b9fcc77cdab88aee21d3ca)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
| -rw-r--r-- | meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch b/meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch deleted file mode 100644 index be79cb53f1..0000000000 --- a/meta/recipes-core/musl/0001-Remove-using-.end-directive-with-clang.patch +++ /dev/null | |||
| @@ -1,36 +0,0 @@ | |||
| 1 | From b6732f68848ecc8ff01054bf7aea70a241c37116 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Fri, 10 Apr 2020 11:23:39 -0700 | ||
| 4 | Subject: [PATCH] Remove using .end directive with clang | ||
| 5 | |||
| 6 | Clang does not support this asm directive | ||
| 7 | Fixes Issue #19 | ||
| 8 | |||
| 9 | Upstream-Status: Submitted [https://github.com/kaniini/libucontext/pull/20] | ||
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 11 | --- | ||
| 12 | arch/common/common-defs.h | 5 ++++- | ||
| 13 | 1 file changed, 4 insertions(+), 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/arch/common/common-defs.h b/arch/common/common-defs.h | ||
| 16 | index bf2fb8c..618116b 100644 | ||
| 17 | --- a/arch/common/common-defs.h | ||
| 18 | +++ b/arch/common/common-defs.h | ||
| 19 | @@ -28,10 +28,13 @@ | ||
| 20 | ENT(__proc) \ | ||
| 21 | __proc: \ | ||
| 22 | SETUP_FRAME(__proc) | ||
| 23 | - | ||
| 24 | +#ifdef __clang__ | ||
| 25 | +#define END(__proc) | ||
| 26 | +#else | ||
| 27 | #define END(__proc) \ | ||
| 28 | .end __proc; \ | ||
| 29 | .size __proc,.-__proc; | ||
| 30 | +#endif | ||
| 31 | |||
| 32 | #define ALIAS(__alias, __real) \ | ||
| 33 | .weak __alias; \ | ||
| 34 | -- | ||
| 35 | 2.26.0 | ||
| 36 | |||
