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-03 15:41:40 +0100 |
commit | a1b0fe98cebc62d6c35638a5d2576b5a032d7022 (patch) | |
tree | 78dbdcf7c294db21df36119d6fa5528c3433e1f7 | |
parent | f372ddb776265c7e8c6e134763f6d9fd81b5a756 (diff) | |
download | poky-a1b0fe98cebc62d6c35638a5d2576b5a032d7022.tar.gz |
musl: Remove spurious unused patch
(From OE-Core rev: 26eb22191fc5c31698aec7a6cdee1038e6a468d9)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 | |||